diff options
Diffstat (limited to 'config/email.yml.example')
-rw-r--r-- | config/email.yml.example | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/email.yml.example b/config/email.yml.example new file mode 100644 index 000000000..a67c12279 --- /dev/null +++ b/config/email.yml.example @@ -0,0 +1,21 @@ +# Outgoing email settings + +production: + delivery_method: :smtp + smtp_settings: + address: smtp.somenet.foo + port: 25 + domain: somenet.foo + authentication: :login + user_name: redmine@somenet.foo + password: redmine + +development: + delivery_method: :smtp + smtp_settings: + address: 127.0.0.1 + port: 25 + domain: somenet.foo + authentication: :login + user_name: redmine@somenet.foo + password: redmine |