discourse/lib/email.rb

16 lines
405 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'mail'
module Email
2013-02-25 11:42:20 -05:00
def self.is_valid?(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
end