diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-02-18 05:20:52 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-02-18 05:20:52 +0000 |
commit | 899fb1079fb5507936b7408dc46aa79d913d394e (patch) | |
tree | 6d071b635b5be7170afdfb16349a16d1a72302b1 /config | |
parent | 28e9bc5d823e4b5ed7585feaa8afdd11446ac754 (diff) | |
download | redmine-899fb1079fb5507936b7408dc46aa79d913d394e.tar.gz redmine-899fb1079fb5507936b7408dc46aa79d913d394e.zip |
Added some common example email configs to email.yml.example (#3120)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3448 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/email.yml.example | 68 |
1 files changed, 67 insertions, 1 deletions
diff --git a/config/email.yml.example b/config/email.yml.example index 2b6150688..884a5f298 100644 --- a/config/email.yml.example +++ b/config/email.yml.example @@ -1,4 +1,70 @@ -# Outgoing email settings +# = Outgoing email settings +# +# Each environment has it's own configuration options. If you are only +# running in production, only the production block needs to be configured. +# +# == Common configurations +# +# === Sendmail command +# +# production: +# delivery_method: :sendmail +# +# === Simple SMTP server at localhost +# +# production: +# delivery_method: :smtp +# smtp_settings: +# address: "localhost" +# port: 25 +# +# === SMTP server at example.com using LOGIN authentication and checking HELO for foo.com +# +# production: +# delivery_method: :smtp +# smtp_settings: +# address: "example.com" +# port: 25 +# authentication: :login +# domain: 'foo.com' +# user_name: 'myaccount' +# password: 'password' +# +# === SMTP server at example.com using PLAIN authentication +# +# production: +# delivery_method: :smtp +# smtp_settings: +# address: "example.com" +# port: 25 +# authentication: :plain +# domain: 'example.com' +# user_name: 'myaccount' +# password: 'password' +# +# === SMTP server at using TLS (GMail) +# +# This requires some additional configuration. See the article at: +# http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/ +# +# production: +# delivery_method: :smtp +# smtp_settings: +# tls: true +# address: "smtp.gmail.com" +# port: 587 +# domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps +# authentication: :plain +# user_name: "your_email@gmail.com" +# password: "your_password" +# +# +# == More configuration options +# +# See the "Configuration options" at the following website for a list of the +# full options allowed: +# +# http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer production: delivery_method: :smtp |