Redmine中实现邮件通知功能

  Redmine与xplanner、trac等开源的项目管理工具相比,它的使用与安装真的是非常简单!但它功能确一点不弱。今天试着将RedMine中的邮件通知功能给配置成功,过程:

1.打开redmine-0.7.3\config\environment.rb;

2.找到以下内容,将其修改中你所要进行邮件发送的服务器,如下所示:  

 # SMTP server configuration
 config.action_mailer.smtp_settings = {
  :address => "smtp.126.com",
  :port => 25,
  :domain => "126.com",
  :authentication => :login,
  :user_name => "*****@126.com",
  :password => "******",

3.保存后重启Redmine的Ruby服务器;

4.试着在Redmine中发一份邮件,是不是已经OK 了!!

 

 

 

 

你可能感兴趣的:(redmine)