2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
require 'mail'
|
2013-04-15 08:20:33 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
module Email
|
2020-08-12 08:16:26 +08:00
|
|
|
# cute little guy ain't he?
|
|
|
|
MESSAGE_ID_REGEX = /<(.*@.*)+>/
|
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
|
2018-03-14 14:36:23 +08:00
|
|
|
!!(EmailValidator.email_regex =~ email)
|
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)
|
2017-03-08 06:37:21 +08:00
|
|
|
name ? name.gsub(/[:<>,"]/, '') : name
|
2014-08-09 01:35:25 +08:00
|
|
|
end
|
|
|
|
|
2017-03-09 06:15:42 +08:00
|
|
|
def self.extract_parts(raw)
|
|
|
|
mail = Mail.new(raw)
|
|
|
|
text = nil
|
|
|
|
html = nil
|
|
|
|
|
|
|
|
if mail.multipart?
|
|
|
|
text = mail.text_part
|
|
|
|
html = mail.html_part
|
|
|
|
elsif mail.content_type.to_s["text/html"]
|
|
|
|
html = mail
|
|
|
|
else
|
|
|
|
text = mail
|
|
|
|
end
|
|
|
|
|
|
|
|
[text&.decoded, html&.decoded]
|
|
|
|
end
|
|
|
|
|
2019-01-04 23:06:21 +08:00
|
|
|
def self.site_title
|
|
|
|
SiteSetting.email_site_title.presence || SiteSetting.title
|
|
|
|
end
|
|
|
|
|
2020-08-12 08:16:26 +08:00
|
|
|
# https://tools.ietf.org/html/rfc850#section-2.1.7
|
|
|
|
def self.message_id_rfc_format(message_id)
|
|
|
|
return message_id if message_id =~ MESSAGE_ID_REGEX
|
|
|
|
"<#{message_id}>"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.message_id_clean(message_id)
|
|
|
|
return message_id if !(message_id =~ MESSAGE_ID_REGEX)
|
|
|
|
message_id.tr("<>", "")
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|