Tag: zoho

保存设计用户时Rails EOFError(到达文件末尾)

我在尝试创建用户时遇到了这个错误(我正在使用设计gem)。 EOFError (end of file reached): 我之前遇到过这个问题,这是由于我使用zoho邮件的smtp设置。 我相信我的配置是解决问题的原因: ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => “smtp.zoho.com”, :port => 465, :domain => ‘example.com’, :user_name => ‘user@example.com’, :password => ‘password’, :authentication => :login, :ssl => true, :tls => true, :enable_starttls_auto => true } 现在我们已经向网站添加了SSL,我相信这就是导致此错误发生的原因。 有没有人对SSL的错误或zoho邮件smtp设置有任何了解?