]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/action_mailer.rb
Merge remote-tracking branch 'upstream/pull/2038'
[rails.git] / config / initializers / action_mailer.rb
index db6c1b9b7bcff789595643063f35ede3941521a3..54da2813912d51396cdea479f6d0a219823eab78 100644 (file)
@@ -1,16 +1,13 @@
 # Configure ActionMailer SMTP settings
 ActionMailer::Base.smtp_settings = {
-  :address => 'localhost',
-  :port => 25, 
-  :domain => 'localhost',
+  :address => "localhost",
+  :port => 25,
+  :domain => "localhost",
+  :enable_starttls_auto => false
 }
 
-# Monkey patch to fix return-path bug in ActionMailer 2.2.2
-# Can be removed once we go to 2.3
-module Net
-  class SMTP
-    def sendmail(msgstr, from_addr, *to_addrs)
-      send_message(msgstr, from_addr.to_s.sub(/^<(.*)>$/, "\\1"), *to_addrs)
-    end
-  end
-end
+# Set the host and protocol for all ActionMailer URLs
+ActionMailer::Base.default_url_options = {
+  :host => SERVER_URL,
+  :protocol => SERVER_PROTOCOL
+}