diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-07 13:41:24 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-07 13:41:24 +0000 |
commit | 04abeda1d739257813ad71bcdff1217ce15ceefc (patch) | |
tree | cfe9839774d1b3078f41356123a6c4ee7ea3cf9a /config | |
parent | 7bd4590cd61445cc106bf7d4b6b77ae56ae73896 (diff) | |
download | redmine-04abeda1d739257813ad71bcdff1217ce15ceefc.tar.gz redmine-04abeda1d739257813ad71bcdff1217ce15ceefc.zip |
Add doube quotes to user_name and password in email.yml.example (#2927).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2564 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/email.yml.example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/email.yml.example b/config/email.yml.example index 685096da4..2b6150688 100644 --- a/config/email.yml.example +++ b/config/email.yml.example @@ -7,8 +7,8 @@ production: port: 25 domain: example.net authentication: :login - user_name: redmine@example.net - password: redmine + user_name: "redmine@example.net" + password: "redmine" development: delivery_method: :smtp @@ -17,5 +17,5 @@ development: port: 25 domain: example.net authentication: :login - user_name: redmine@example.net - password: redmine + user_name: "redmine@example.net" + password: "redmine" |