# File lib/jpmobile/email.rb, line 10
    def self.detect(email)
      Mobile.carriers.each do |const|
        c = Mobile.const_get(const)
        return c if c::MAIL_ADDRESS_REGEXP && email =~ c::MAIL_ADDRESS_REGEXP
      end
      nil
    end