Chris@0: # = Outgoing email settings Chris@0: # Chris@0: # Each environment has it's own configuration options. If you are only Chris@0: # running in production, only the production block needs to be configured. Chris@0: # Chris@0: # == Common configurations Chris@0: # Chris@0: # === Sendmail command Chris@0: # Chris@0: # production: Chris@0: # delivery_method: :sendmail Chris@0: # Chris@0: # === Simple SMTP server at localhost Chris@0: # Chris@0: # production: Chris@0: # delivery_method: :smtp Chris@0: # smtp_settings: Chris@0: # address: "localhost" Chris@0: # port: 25 Chris@0: # Chris@0: # === SMTP server at example.com using LOGIN authentication and checking HELO for foo.com Chris@0: # Chris@0: # production: Chris@0: # delivery_method: :smtp Chris@0: # smtp_settings: Chris@0: # address: "example.com" Chris@0: # port: 25 Chris@0: # authentication: :login Chris@0: # domain: 'foo.com' Chris@0: # user_name: 'myaccount' Chris@0: # password: 'password' Chris@0: # Chris@0: # === SMTP server at example.com using PLAIN authentication Chris@0: # Chris@0: # production: Chris@0: # delivery_method: :smtp Chris@0: # smtp_settings: Chris@0: # address: "example.com" Chris@0: # port: 25 Chris@0: # authentication: :plain Chris@0: # domain: 'example.com' Chris@0: # user_name: 'myaccount' Chris@0: # password: 'password' Chris@0: # Chris@0: # === SMTP server at using TLS (GMail) Chris@0: # Chris@0: # This requires some additional configuration. See the article at: Chris@0: # http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/ Chris@0: # Chris@0: # production: Chris@0: # delivery_method: :smtp Chris@0: # smtp_settings: Chris@0: # tls: true Chris@0: # address: "smtp.gmail.com" Chris@0: # port: 587 Chris@0: # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps Chris@0: # authentication: :plain Chris@0: # user_name: "your_email@gmail.com" Chris@0: # password: "your_password" Chris@0: # Chris@0: # Chris@0: # == More configuration options Chris@0: # Chris@0: # See the "Configuration options" at the following website for a list of the Chris@0: # full options allowed: Chris@0: # Chris@0: # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer Chris@0: Chris@0: production: Chris@0: delivery_method: :smtp Chris@0: smtp_settings: Chris@0: address: smtp.example.net Chris@0: port: 25 Chris@0: domain: example.net Chris@0: authentication: :login Chris@0: user_name: "redmine@example.net" Chris@0: password: "redmine" Chris@0: Chris@0: development: Chris@0: delivery_method: :smtp Chris@0: smtp_settings: Chris@0: address: 127.0.0.1 Chris@0: port: 25 Chris@0: domain: example.net Chris@0: authentication: :login Chris@0: user_name: "redmine@example.net" Chris@0: password: "redmine"