mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 01:57:15 +08:00
FIX: don't try to send a rejection message when the sender was not detected
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user