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!
|
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)
|
|
|
|
if rejection_message.present? && receiver && receiver.incoming_email
|
|
|
|
receiver.incoming_email.rejection_message = rejection_message.body.to_s
|
|
|
|
receiver.incoming_email.save
|
|
|
|
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)
|
2015-07-31 01:10:18 -04:00
|
|
|
Rails.logger.warn("Email can not be processed: #{e}\n\n#{mail_string}") if SiteSetting.log_mail_processing_failures
|
|
|
|
|
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
|
|
|
|
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-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
|
|
|
|
|
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
|
2016-03-07 10:56:17 -05:00
|
|
|
|
|
|
|
client_message
|
2014-08-01 14:03:55 -04:00
|
|
|
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
|
|
|
|
end
|
|
|
|
|
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
|
2014-04-09 13:26:19 -04:00
|
|
|
rescue Net::POPAuthenticationError => e
|
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, "Signing in to poll incoming email"))
|
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
|
|
|
|
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
end
|