After install with the bitnami-redmine-2.0.3-1-windows-installer.exe happyly, i had a big trouble with sending email notification. When sending test email in admin console,it returned the following error message: 发送邮件时发生错误 (501 command argument is not acceptable )
Then try to Google for answer, find config at D:\redmine\service\apps\redmine\htdocs\config\configuration.yml then add add enable_starttls_auto: true at the end, change authentication from plain to login. The complete config like below:
default configuration options for all environments
default:
# Outgoing emails configuration (see examples above)
email_delivery:
delivery_method: :smtp
smtp_settings:
# arguments: "-i"
address: "10.191.17.80"
port: 25
domain: "cpic.com.cn"
authentication: :login
user_name: "groupjira"
password: "Cpic1234"
enable_starttls_auto: true
And the 501 error message(501 command argument is not acceptable) disappear,
but i there is no email in admin's mail box!