discourse/lib/email.rb

33 lines
836 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'mail'
require_dependency 'email/message_builder'
2013-06-10 15:33:37 -04:00
require_dependency 'email/renderer'
require_dependency 'email/sender'
require_dependency 'email/styles'
2013-02-05 14:16:51 -05:00
module Email
2013-02-25 11:42:20 -05:00
def self.is_valid?(email)
2015-05-27 00:12:10 -04:00
return false unless String === email
2013-02-05 14:16:51 -05:00
parser = Mail::RFC2822Parser.new
parser.root = :addr_spec
result = parser.parse(email)
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
# Don't allow for a TLD by itself list (sam@localhost)
# The Grammar is: (local_part "@" domain) / local_part ... need to discard latter
result && result.respond_to?(:domain) && result.domain.dot_atom_text.elements.size > 1
end
def self.downcase(email)
return email unless Email.is_valid?(email)
2014-07-14 10:16:24 -04:00
email.downcase
end
def self.cleanup_alias(name)
# TODO: I'm sure there are more, but I can't find a list
name ? name.gsub(/[:<>,]/, '') : name
end
2013-02-05 14:16:51 -05:00
end