module Roda::RodaPlugins::MailProcessor::RequestMethods

def handle_header(key, value=nil)

Same as +header+, but also mark the message as being handled.
def handle_header(key, value=nil)
  header(key, value) do |*args|
    handle do
      yield(*args)
    end
  end
end