]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/action_mailer.rb
Cleanup trailing whitespace
[rails.git] / config / initializers / action_mailer.rb
index db6c1b9b7bcff789595643063f35ede3941521a3..6a42c6dfebd8fedc29cc8e6599de6d4fc5585264 100644 (file)
@@ -1,16 +1,7 @@
 # Configure ActionMailer SMTP settings
 ActionMailer::Base.smtp_settings = {
   :address => 'localhost',
-  :port => 25, 
+  :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