2013-06-13 18:11:10 -04:00
|
|
|
require 'net/pop'
|
|
|
|
require_dependency 'email/receiver'
|
2014-02-24 01:01:37 -05:00
|
|
|
require_dependency 'email/sender'
|
|
|
|
require_dependency 'email/message_builder'
|
2013-06-13 18:11:10 -04:00
|
|
|
|
|
|
|
module Jobs
|
2013-08-07 13:25:05 -04:00
|
|
|
class PollMailbox < Jobs::Scheduled
|
2014-08-26 19:52:35 -04:00
|
|
|
every SiteSetting.pop3_polling_period_mins.minutes
|
2013-06-13 18:11:10 -04:00
|
|
|
sidekiq_options retry: false
|
2016-01-18 18:57:55 -05:00
|
|
|
|
2014-02-24 01:01:37 -05:00
|
|
|
include Email::BuildEmailHelper
|
2013-06-13 18:11:10 -04:00
|
|
|
|
|
|
|
def execute(args)
|
2014-07-17 16:22:46 -04:00
|
|
|
@args = args
|
2016-02-01 10:56:32 -05:00
|
|
|
poll_pop3 if should_poll?
|
|
|
|
end
|
|
|
|
|
|
|
|
def should_poll?
|
|
|
|
return false if Rails.env.development? && ENV["POLL_MAILBOX"].nil?
|
|
|
|
SiteSetting.pop3_polling_enabled?
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
|
2016-01-18 18:57:55 -05:00
|
|
|
def process_popmail(popmail)
|
2014-02-28 07:05:09 -05:00
|
|
|
begin
|
2016-01-18 18:57:55 -05:00
|
|
|
mail_string = popmail.pop
|
2016-03-07 10:56:17 -05:00
|
|
|
receiver = Email::Receiver.new(mail_string)
|
|
|
|
receiver.process!
|
2016-04-07 10:21:17 -04:00
|
|
|
rescue Email::Receiver::BouncedEmailError => e
|
|
|
|
log_email_process_failure(mail_string, e)
|
|
|
|
|
|
|
|
set_incoming_email_rejection_message(
|
2016-05-02 17:15:32 -04:00
|
|
|
receiver.incoming_email,
|
2016-05-16 02:42:30 -04:00
|
|
|
I18n.t("emails.incoming.errors.bounced_email_error")
|
2016-04-07 10:21:17 -04:00
|
|
|
)
|
|
|
|
rescue Email::Receiver::AutoGeneratedEmailReplyError => e
|
|
|
|
log_email_process_failure(mail_string, e)
|
|
|
|
|
|
|
|
set_incoming_email_rejection_message(
|
|
|
|
receiver.incoming_email,
|
2016-05-16 02:42:30 -04:00
|
|
|
I18n.t("emails.incoming.errors.auto_generated_email_reply")
|
2016-04-07 10:21:17 -04:00
|
|
|
)
|
2014-06-23 20:16:56 -04:00
|
|
|
rescue => e
|
2016-03-07 10:56:17 -05:00
|
|
|
rejection_message = handle_failure(mail_string, e)
|
2016-04-07 10:21:17 -04:00
|
|
|
if rejection_message.present? && receiver && (incoming_email = receiver.incoming_email)
|
2016-05-02 17:15:32 -04:00
|
|
|
set_incoming_email_rejection_message(incoming_email, rejection_message.body.to_s)
|
2016-03-07 10:56:17 -05:00
|
|
|
end
|
2014-08-01 14:03:55 -04:00
|
|
|
end
|
|
|
|
end
|
2014-08-01 12:56:15 -04:00
|
|
|
|
2014-08-01 14:03:55 -04:00
|
|
|
def handle_failure(mail_string, e)
|
2016-04-07 10:21:17 -04:00
|
|
|
log_email_process_failure(mail_string, e)
|
2015-07-31 01:10:18 -04:00
|
|
|
|
2016-01-18 18:57:55 -05:00
|
|
|
message_template = case e
|
|
|
|
when Email::Receiver::EmptyEmailError then :email_reject_empty
|
|
|
|
when Email::Receiver::NoBodyDetectedError then :email_reject_empty
|
2016-03-23 13:56:03 -04:00
|
|
|
when Email::Receiver::UserNotFoundError then :email_reject_user_not_found
|
2016-04-18 16:58:30 -04:00
|
|
|
when Email::Receiver::ScreenedEmailError then :email_reject_screened_email
|
2016-01-18 18:57:55 -05:00
|
|
|
when Email::Receiver::AutoGeneratedEmailError then :email_reject_auto_generated
|
|
|
|
when Email::Receiver::InactiveUserError then :email_reject_inactive_user
|
2016-02-11 04:39:57 -05:00
|
|
|
when Email::Receiver::BlockedUserError then :email_reject_blocked_user
|
2016-01-18 18:57:55 -05:00
|
|
|
when Email::Receiver::BadDestinationAddress then :email_reject_bad_destination_address
|
|
|
|
when Email::Receiver::StrangersNotAllowedError then :email_reject_strangers_not_allowed
|
|
|
|
when Email::Receiver::InsufficientTrustLevelError then :email_reject_insufficient_trust_level
|
|
|
|
when Email::Receiver::ReplyUserNotMatchingError then :email_reject_reply_user_not_matching
|
|
|
|
when Email::Receiver::TopicNotFoundError then :email_reject_topic_not_found
|
|
|
|
when Email::Receiver::TopicClosedError then :email_reject_topic_closed
|
|
|
|
when Email::Receiver::InvalidPost then :email_reject_invalid_post
|
|
|
|
when ActiveRecord::Rollback then :email_reject_invalid_post
|
|
|
|
when Email::Receiver::InvalidPostAction then :email_reject_invalid_post_action
|
|
|
|
when Discourse::InvalidAccess then :email_reject_invalid_access
|
2016-03-07 10:56:17 -05:00
|
|
|
when RateLimiter::LimitExceeded then :email_reject_rate_limit_specified
|
2016-01-18 18:57:55 -05:00
|
|
|
end
|
|
|
|
|
2014-08-01 14:03:55 -04:00
|
|
|
template_args = {}
|
2016-03-21 13:49:01 -04:00
|
|
|
client_message = nil
|
2016-01-18 18:57:55 -05:00
|
|
|
|
|
|
|
# there might be more information available in the exception
|
|
|
|
if message_template == :email_reject_invalid_post && e.message.size > 6
|
|
|
|
message_template = :email_reject_invalid_post_specified
|
|
|
|
template_args[:post_error] = e.message
|
2014-08-01 14:03:55 -04:00
|
|
|
end
|
|
|
|
|
2016-03-07 10:56:17 -05:00
|
|
|
if message_template == :email_reject_rate_limit_specified
|
|
|
|
template_args[:rate_limit_description] = e.description
|
|
|
|
end
|
|
|
|
|
2016-04-07 10:21:17 -04:00
|
|
|
if message_template == :email_reject_auto_generated
|
|
|
|
template_args[:mark_as_reply_to_auto_generated] = true
|
|
|
|
end
|
|
|
|
|
2014-08-01 14:03:55 -04:00
|
|
|
if message_template
|
|
|
|
# inform the user about the rejection
|
|
|
|
message = Mail::Message.new(mail_string)
|
|
|
|
template_args[:former_title] = message.subject
|
|
|
|
template_args[:destination] = message.to
|
2015-04-01 01:50:02 -04:00
|
|
|
template_args[:site_name] = SiteSetting.title
|
2014-08-01 14:03:55 -04:00
|
|
|
|
|
|
|
client_message = RejectionMailer.send_rejection(message_template, message.from, template_args)
|
|
|
|
Email::Sender.new(client_message, message_template).send
|
|
|
|
else
|
2016-03-16 16:17:48 -04:00
|
|
|
mark_as_errored!
|
2015-02-09 15:47:46 -05:00
|
|
|
Discourse.handle_job_exception(e, error_context(@args, "Unrecognized error type when processing incoming email", mail: mail_string))
|
2014-02-28 07:05:09 -05:00
|
|
|
end
|
2016-03-21 13:49:01 -04:00
|
|
|
|
|
|
|
client_message
|
2014-02-28 07:05:09 -05:00
|
|
|
end
|
|
|
|
|
2016-04-06 02:59:48 -04:00
|
|
|
POLL_MAILBOX_TIMEOUT_ERROR_KEY = "poll_mailbox_timeout_error_key".freeze
|
|
|
|
|
2014-08-26 19:52:35 -04:00
|
|
|
def poll_pop3
|
2016-01-18 18:57:55 -05:00
|
|
|
pop3 = Net::POP3.new(SiteSetting.pop3_polling_host, SiteSetting.pop3_polling_port)
|
|
|
|
pop3.enable_ssl if SiteSetting.pop3_polling_ssl
|
2014-08-26 20:00:27 -04:00
|
|
|
|
2016-01-18 18:57:55 -05:00
|
|
|
pop3.start(SiteSetting.pop3_polling_username, SiteSetting.pop3_polling_password) do |pop|
|
|
|
|
pop.delete_all do |p|
|
|
|
|
process_popmail(p)
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
end
|
2016-03-25 11:44:08 -04:00
|
|
|
rescue Net::OpenTimeout => e
|
2016-04-06 02:59:48 -04:00
|
|
|
count = $redis.incr(POLL_MAILBOX_TIMEOUT_ERROR_KEY).to_i
|
2016-04-21 03:04:03 -04:00
|
|
|
|
|
|
|
$redis.expire(
|
|
|
|
POLL_MAILBOX_TIMEOUT_ERROR_KEY,
|
|
|
|
SiteSetting.pop3_polling_period_mins.minutes * 3
|
|
|
|
) if count == 1
|
2016-04-06 02:59:48 -04:00
|
|
|
|
|
|
|
if count > 3
|
|
|
|
$redis.del(POLL_MAILBOX_TIMEOUT_ERROR_KEY)
|
|
|
|
mark_as_errored!
|
|
|
|
add_admin_dashboard_problem_message('dashboard.poll_pop3_timeout')
|
|
|
|
Discourse.handle_job_exception(e, error_context(@args, "Connecting to '#{SiteSetting.pop3_polling_host}' for polling emails."))
|
|
|
|
end
|
2014-04-09 13:26:19 -04:00
|
|
|
rescue Net::POPAuthenticationError => e
|
2016-03-16 16:17:48 -04:00
|
|
|
mark_as_errored!
|
2016-04-06 02:59:48 -04:00
|
|
|
add_admin_dashboard_problem_message('dashboard.poll_pop3_auth_error')
|
2016-03-25 11:44:08 -04:00
|
|
|
Discourse.handle_job_exception(e, error_context(@args, "Signing in to poll incoming emails."))
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
|
2016-03-16 16:17:48 -04:00
|
|
|
POLL_MAILBOX_ERRORS_KEY ||= "poll_mailbox_errors".freeze
|
|
|
|
|
|
|
|
def self.errors_in_past_24_hours
|
|
|
|
$redis.zremrangebyscore(POLL_MAILBOX_ERRORS_KEY, 0, 24.hours.ago.to_i)
|
|
|
|
$redis.zcard(POLL_MAILBOX_ERRORS_KEY).to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
def mark_as_errored!
|
|
|
|
now = Time.now.to_i
|
|
|
|
$redis.zadd(POLL_MAILBOX_ERRORS_KEY, now, now.to_s)
|
|
|
|
end
|
|
|
|
|
2016-04-07 10:21:17 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_incoming_email_rejection_message(incoming_email, message)
|
|
|
|
incoming_email.update_attributes!(rejection_message: message)
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_email_process_failure(mail_string, exception)
|
|
|
|
if SiteSetting.log_mail_processing_failures
|
|
|
|
Rails.logger.warn("Email can not be processed: #{exception}\n\n#{mail_string}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-06 02:59:48 -04:00
|
|
|
def add_admin_dashboard_problem_message(i18n_key)
|
|
|
|
AdminDashboardData.add_problem_message(
|
|
|
|
i18n_key,
|
|
|
|
SiteSetting.pop3_polling_period_mins.minutes + 5.minutes
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
end
|