summaryrefslogtreecommitdiffstats
path: root/17.0/apache/config/smtp.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-10-30 18:12:26 +0100
committerGitHub <noreply@github.com>2020-10-30 18:12:26 +0100
commit4efaf225b469aaa0f9349c91faa28c70423274a3 (patch)
tree51673c784eabb08913c5b7e4d9d5708ebd6e7223 /17.0/apache/config/smtp.config.php
parente95023790cc36274053af7930831a9aecbf32efd (diff)
parent83503a43c95f49be6ea5f461ef1e06e9a6e93733 (diff)
Merge pull request #1294 from J0WI/rm17
Remove 17.0
Diffstat (limited to '17.0/apache/config/smtp.config.php')
-rw-r--r--17.0/apache/config/smtp.config.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/17.0/apache/config/smtp.config.php b/17.0/apache/config/smtp.config.php
deleted file mode 100644
index 59f1eaa1..00000000
--- a/17.0/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'),
- );
-}