读书人

ROR31 体会-3 mail server

发布时间: 2012-06-27 14:20:08 作者: rapoo

ROR31 体验-3 mail server
install mail server

sudo apt-get install postfix

sudo apt-get install heirloom-mailx

http://wiki.ubuntu.org.cn/PostfixBasicSetupHowto

* Action Mailer Configuration

As Action Mailer now uses the Mail gem, this becomes as simple as adding to your config/environments/env.rb file:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'baci.lindsaar.net',
:user_name => '<username>',
:password => '<password>',
:authentication => 'plain',
:enable_starttls_auto => true }

读书人网 >网络基础

热点推荐