Wer hat Glück, ActionMailer so zu konfigurieren, dass er E-Mails über ein Zoho-Konto sendet?Rails ActionMailer-Konfiguration für Zoho
Das sind meine Einstellungen:
ActionMailer::Base.smtp_settings = {
:address => "smtp.zoho.com",
:port => 465,
:domain => 'example.com',
:user_name => '[email protected]',
:password => 'n0tmypa$$w0rd',
:authentication => :login
}
jedoch mal Aufruf .deliver aus:
irb(main):001:0> AdminMailer.signup_notification('asfd').deliver
Timeout::Error: Timeout::Error
from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:146:in `rescue in rbuf_fill'
from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:140:in `rbuf_fill'
from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:122:in `readuntil'
from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:132:in `readline'
from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:929:in `recv_response'
from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:552:in `block in do_start'
from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:939:in `critical'
from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:552:in `do_start'
from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:519:in `start'
from C:/Ruby193/lib/ruby/gems/1.9.1/gems/mail-2.4.4/lib/mail/network/delivery_methods/smtp.rb:144:in `deliver!'
Die help docs sagen Port 465 und SSL-Authentifizierung zu verwenden. Ich habe es mit und ohne :enable_starttls_auto => true
versucht aber es kommt immernoch mal raus.
Insbesondere die docs die folgenden Einstellungen an:
> Email Address: [email protected]
> User Name format: [email protected]
> Secure Connection (SSL) Yes
> Outgoing Mail Server Name: smtp.zoho.com
> Outgoing Port No.: 465
> Outgoing Mail Server requires authentication: Yes
Irgendwelche Ideen?
p.s. Ich habe Outlook konfiguriert, um die Einstellungen in der help docs verwenden und ausgehende E-Mail funktioniert gut. telnet zu smtp.zoho.com 465 verbindet auch.
werden Sie von Ihrem lokalen Host versuchen ??? – Jean
Ich bin, obwohl der SMTP-Server natürlich remote ist (zoho.com). Wäre das wichtig? E-Mail-Client (Outlook) mit den gleichen Einstellungen ist auch auf dem gleichen localhost. – lambinator
Nicht sicher, ob Sie Outlook verwenden möchten, scheint Microsoft ausgehende Mail von Anwendungen nicht geduldet - auch für notwendige Dinge wie E-Mail-Bestätigungen. – Noz