]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/action_mailer.rb
Merge remote-tracking branch 'upstream/pull/2182'
[rails.git] / config / initializers / action_mailer.rb
index 6a42c6dfebd8fedc29cc8e6599de6d4fc5585264..32dfa79bbfea05f7de1396385727e8debec7baf8 100644 (file)
@@ -1,7 +1,13 @@
 # Configure ActionMailer SMTP settings
 ActionMailer::Base.smtp_settings = {
-  :address => 'localhost',
+  :address => "localhost",
   :port => 25,
-  :domain => 'localhost',
+  :domain => "localhost",
   :enable_starttls_auto => false
 }
+
+# Set the host and protocol for all ActionMailer URLs
+ActionMailer::Base.default_url_options = {
+  :host => Settings.server_url,
+  :protocol => Settings.server_protocol
+}