diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-02 19:04:08 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-02 19:04:08 +0100 |
commit | 1727b2e84d9c6202f4777dff3c6b7433ec8783c7 (patch) | |
tree | 282ccbcac449ceed28e14096118e68c956c2ad66 /config | |
parent | 166da88b73df7720cd7d6a29924bd3beb45af375 (diff) | |
download | nextcloud-server-1727b2e84d9c6202f4777dff3c6b7433ec8783c7.tar.gz nextcloud-server-1727b2e84d9c6202f4777dff3c6b7433ec8783c7.zip |
add smtp port configuration option
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 78dfe17ea79..2eec7847f9c 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -78,6 +78,9 @@ $CONFIG = array( /* Host to use for sending mail, depends on mail_smtpmode if this is used */ "mail_smtphost" => "127.0.0.1", +/* Port to use for sending mail, depends on mail_smtpmode if this is used */ +"mail_smtpport" => 25, + /* authentication needed to send mail, depends on mail_smtpmode if this is used * (false = disable authentication) */ |