module Roda::RodaPlugins::MailProcessor::ClassMethods

def freeze

Freeze the rcpt routes if they are present.
def freeze
  if string_routes = opts[:mail_processor_string_routes].freeze
    string_routes.freeze
    opts[:mail_processor_regexp_routes].freeze
  end
  super
end