Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2012-04-20 22:49:35 +0400
committerFrank Karlitschek <karlitschek@kde.org>2012-04-20 22:49:35 +0400
commit2fbc92bd4bfd69ef7f9c23a620f28daaef83086f (patch)
tree62557b132727308a1af4424118f5a8625b659961 /config
parent3aeea0c196a70e08a5cd04db2dee1e4bdd367412 (diff)
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')
-rwxr-xr-xconfig/config.sample.php5
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" => ""
);
?>