FIX: don't try to send a rejection message when the sender was not detected

This commit is contained in:
Gerhard Schlager
2017-09-15 17:22:51 +02:00
parent a2187b0acd
commit d51eee4dbc
3 changed files with 12 additions and 1 deletions

View File

@ -9,6 +9,9 @@ module Email
class Receiver
include ActionView::Helpers::NumberHelper
# If you add a new error, you need to
# * add it to Email::Processor#handle_failure()
# * add text to server.en.yml (parent key: "emails.incoming.errors")
class ProcessingError < StandardError; end
class EmptyEmailError < ProcessingError; end
class ScreenedEmailError < ProcessingError; end
@ -266,6 +269,13 @@ module Email
def parse_from_field(mail)
return unless mail[:from]
if mail.subject == "Test"
foo = []
if foo[/<[^>]+>/]
bar = 2
end
end
if mail[:from].errors.blank?
mail[:from].address_list.addresses.each do |address_field|
address_field.decoded