]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/action_mailer.rb
Increase expiry for Active Storage URLs
[rails.git] / config / initializers / action_mailer.rb
index 27030d541150e14534520c15f537997bd19e4c6b..32dfa79bbfea05f7de1396385727e8debec7baf8 100644 (file)
@@ -1,6 +1,13 @@
-# Configure ActionMailer
+# Configure ActionMailer SMTP settings
 ActionMailer::Base.smtp_settings = {
-  :address  => "localhost",
-  :port  => 25, 
-  :domain  => 'localhost',
+  :address => "localhost",
+  :port => 25,
+  :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
 }