module Roda::RodaPlugins::MailProcessor::RequestMethods

def block_result_body(_)

mark it as unhandled.
If the routing did not explicitly mark the mail as handled
def block_result_body(_)
  unless env['roda.mail_handled']
    scope.unhandled_mail('mail was not handled during mail_processor routing')
  end
end