]> git.openstreetmap.org Git - rails.git/commitdiff
Don't allow STARTTLS to be used when sending mail
authorTom Hughes <tom@compton.nu>
Fri, 3 Sep 2010 15:52:31 +0000 (16:52 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 14 Nov 2011 09:42:42 +0000 (09:42 +0000)
Ruby's mail library seems to be very picky about the certificate
validity if STARTTLS is used, so disable it.

config/initializers/action_mailer.rb

index 5221ab22a6fb4e2c08c8cd87a2954dbcf38addbe..e6181072bcb46e12390997d1767907c106fb8c1b 100644 (file)
@@ -3,6 +3,7 @@ ActionMailer::Base.smtp_settings = {
   :address => 'localhost',
   :port => 25, 
   :domain => 'localhost',
+  :enable_starttls_auto => false
 }
 
 # Monkey patch to allow sending of messages in specific locales