diff options
author | Jens-Christian Fischer <jens-christian.fischer@switch.ch> | 2014-01-24 16:24:52 +0100 |
---|---|---|
committer | Jens-Christian Fischer <jens-christian.fischer@switch.ch> | 2014-01-24 16:24:52 +0100 |
commit | 3ca85cd841bae985082318cba1d88bae9fdac65a (patch) | |
tree | 116f45306ad9c3fd8cb183cfdef03b66d8ef76e7 /config/config.sample.php | |
parent | 0f6c60717140c885ebb33dfc38d94081a894dd6d (diff) | |
download | nextcloud-server-3ca85cd841bae985082318cba1d88bae9fdac65a.tar.gz nextcloud-server-3ca85cd841bae985082318cba1d88bae9fdac65a.zip |
updated config.sample.php with mail_from_address parameter
Diffstat (limited to 'config/config.sample.php')
-rwxr-xr-x | config/config.sample.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 1070ef72eda..01abc583688 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -80,6 +80,12 @@ $CONFIG = array( /* Domain name used by ownCloud for the sender mail address, e.g. no-reply@example.com */ "mail_domain" => "example.com", +/* FROM address used by ownCloud for the sender mail address, e.g. owncloud@example.com + This setting overwrites the built in 'sharing-noreply' and 'lostpassword-noreply' + FROM addresses, that ownCloud uses +*/ +"mail_from_address" => "owncloud", + /* Enable SMTP class debugging */ "mail_smtpdebug" => false, |