X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f9291ba5764fe104264ae7e3b6a361e11212e8b..69b952ae78b0e7d7ded7d121070c24093e0dd322:/app/mailers/notifier.rb?ds=sidebyside diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb index 4b53c66f6..e705efb00 100644 --- a/app/mailers/notifier.rb +++ b/app/mailers/notifier.rb @@ -1,6 +1,6 @@ class Notifier < ActionMailer::Base - default :from => EMAIL_FROM, - :return_path => EMAIL_RETURN_PATH, + default :from => Settings.email_from, + :return_path => Settings.email_return_path, :auto_submitted => "auto-generated" helper :application before_action :set_shared_template_vars @@ -196,14 +196,14 @@ class Notifier < ActionMailer::Base end def from_address(name, type, id, digest, user_id = nil) - if Object.const_defined?(:MESSAGES_DOMAIN) && domain = MESSAGES_DOMAIN + if Settings.key?(:messages_domain) && domain = Settings.messages_domain if user_id "#{name} <#{type}-#{id}-#{user_id}-#{digest[0, 6]}@#{domain}>" else "#{name} <#{type}-#{id}-#{digest[0, 6]}@#{domain}>" end else - EMAIL_FROM + Settings.email_from end end end