diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2012-04-20 20:49:35 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2012-04-20 20:49:35 +0200 |
commit | 2fbc92bd4bfd69ef7f9c23a620f28daaef83086f (patch) | |
tree | 62557b132727308a1af4424118f5a8625b659961 /config/config.sample.php | |
parent | 3aeea0c196a70e08a5cd04db2dee1e4bdd367412 (diff) | |
download | nextcloud-server-2fbc92bd4bfd69ef7f9c23a620f28daaef83086f.tar.gz nextcloud-server-2fbc92bd4bfd69ef7f9c23a620f28daaef83086f.zip |
new OC_Mail class to handle all mail sending. The benefit is that is way mor flexible than the standard mail command. can be configured to use a remote smtp relay for example. also port the lostpassword code
Diffstat (limited to 'config/config.sample.php')
-rwxr-xr-x | config/config.sample.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 199c9248c51..9f6d674fc0e 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -19,6 +19,11 @@ $CONFIG = array( "knowledgebaseurl" => "", "appstoreenabled" => true, "appstoreurl" => "", +"mail_smtpmode" => "sendmail", +"mail_smtphost" => "127.0.0.1", +"mail_smtpauth" => "false", +"mail_smtpname" => "", +"mail_smtppassword" => "", // "datadirectory" => "" ); ?> |