Last active
August 29, 2015 14:18
-
-
Save josefglatz/5ccb188ce6b2c12ce276 to your computer and use it in GitHub Desktop.
Redmine working Sending Email with Gmail Apps E-Mail (Redmine 2.4.2 / Ruby 1.9.3)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/redmine/default/configuration.yml | |
production: | |
email_delivery: | |
delivery_method: :smtp | |
smtp_settings: | |
address: 'smtp.gmail.com' | |
port: 587 | |
domain: 'yourGoogleAppDomain.at' | |
authentication: 'plain' | |
user_name: '[email protected]' | |
password: 'SomeNicePassword' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment