summaryrefslogtreecommitdiffstats
path: root/17.0-rc/apache/config/smtp.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-07-16 10:05:54 +0200
committerGitHub <noreply@github.com>2020-07-16 10:05:54 +0200
commit476e60305b5f51aba863f0552cbaf7c2d4e0dbf9 (patch)
treeccc5c55805dd898b3807e7faf7415db2e3c9f83d /17.0-rc/apache/config/smtp.config.php
parent8c623fd1562666a7a35ed8ce8b06a7882d1b0459 (diff)
parent45f3995ab7c46fff7d7e779a00b69443f9a90fa6 (diff)
Merge pull request #1177 from tilosp/bot/update
Update nextcloud to 17.0.8, 18.0.7 and 19.0.1
Diffstat (limited to '17.0-rc/apache/config/smtp.config.php')
-rw-r--r--17.0-rc/apache/config/smtp.config.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/17.0-rc/apache/config/smtp.config.php b/17.0-rc/apache/config/smtp.config.php
deleted file mode 100644
index 59f1eaa1..00000000
--- a/17.0-rc/apache/config/smtp.config.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-if (getenv('SMTP_HOST') && getenv('MAIL_FROM_ADDRESS') && getenv('MAIL_DOMAIN')) {
- $CONFIG = array (
- 'mail_smtpmode' => 'smtp',
- 'mail_smtphost' => getenv('SMTP_HOST'),
- 'mail_smtpport' => getenv('SMTP_PORT') ?: (getenv('SMTP_SECURE') ? 465 : 25),
- 'mail_smtpsecure' => getenv('SMTP_SECURE') ?: '',
- 'mail_smtpauth' => getenv('SMTP_NAME') && getenv('SMTP_PASSWORD'),
- 'mail_smtpauthtype' => getenv('SMTP_AUTHTYPE') ?: 'LOGIN',
- 'mail_smtpname' => getenv('SMTP_NAME') ?: '',
- 'mail_smtppassword' => getenv('SMTP_PASSWORD') ?: '',
- 'mail_from_address' => getenv('MAIL_FROM_ADDRESS'),
- 'mail_domain' => getenv('MAIL_DOMAIN'),
- );
-}