# File lib/mail/message.rb, line 313
    def <=>(other)
      if other.nil?
        1
      else
        self.date <=> other.date
      end
    end