module Roda::RodaPlugins::MailProcessor::RequestMethods

def address_match?(a1, a2)

Whether the addresses are the same (case insensitive match).
def address_match?(a1, a2)
  a1.casecmp?(a2)
end