2013-02-06 03:16:51 +08:00
|
|
|
require 'mail'
|
2013-06-11 04:46:08 +08:00
|
|
|
require_dependency 'email/message_builder'
|
2013-06-11 03:33:37 +08:00
|
|
|
require_dependency 'email/renderer'
|
|
|
|
require_dependency 'email/sender'
|
|
|
|
require_dependency 'email/styles'
|
2013-04-15 08:20:33 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
module Email
|
2013-02-26 00:42:20 +08:00
|
|
|
|
|
|
|
def self.is_valid?(email)
|
2015-05-27 12:12:10 +08:00
|
|
|
|
|
|
|
return false unless String === email
|
|
|
|
|
2015-09-23 13:24:30 +08:00
|
|
|
parsed = Mail::Address.new(email)
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Don't allow for a TLD by itself list (sam@localhost)
|
|
|
|
# The Grammar is: (local_part "@" domain) / local_part ... need to discard latter
|
2015-09-23 13:24:30 +08:00
|
|
|
parsed.address == email && parsed.local != parsed.address && parsed.domain && parsed.domain.split(".").length > 1
|
|
|
|
rescue Mail::Field::ParseError
|
|
|
|
false
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-04-15 08:20:33 +08:00
|
|
|
def self.downcase(email)
|
|
|
|
return email unless Email.is_valid?(email)
|
2014-07-14 22:16:24 +08:00
|
|
|
email.downcase
|
2013-04-15 08:20:33 +08:00
|
|
|
end
|
|
|
|
|
2014-08-09 01:35:25 +08:00
|
|
|
def self.cleanup_alias(name)
|
|
|
|
# TODO: I'm sure there are more, but I can't find a list
|
2014-11-24 22:16:15 +08:00
|
|
|
name ? name.gsub(/[:<>,]/, '') : name
|
2014-08-09 01:35:25 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|