首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

ROR31 体会-3 mail server

2012-06-27 
ROR31 体验-3 mail serverinstall mail serversudo apt-get install postfixsudo apt-get install heirloo

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  }

热点排行