From 398c73af74539345d816a3227624438763e9cc2c Mon Sep 17 00:00:00 2001 From: unteem <timothee@unteem.org> Date: Tue, 16 Jan 2018 15:25:48 +0100 Subject: [PATCH] add mail.config.php --- config/mail.config.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config/mail.config.php diff --git a/config/mail.config.php b/config/mail.config.php new file mode 100644 index 0000000..1e8a764 --- /dev/null +++ b/config/mail.config.php @@ -0,0 +1,14 @@ +<?php +$CONFIG = array ( + 'mail_domain' => getenv('MAIL_DOMAIN'), + 'mail_from_address' => getenv('MAIL_DOMAIN'), + 'mail_smtpmode' => 'smtp', + 'mail_smtphost' => getenv('MAIL_HOST'), + 'mail_smtpport' => getenv('MAIL_PORT'), + 'mail_smtpauth' => 1, + 'mail_smtpauthtype' => 'LOGIN', + 'mail_smtpname' => getenv('MAIL_DOMAIN'), + 'mail_smtppassword' => getenv('MAIL_PASS'), + 'mail_smtpsecure' => 'tls', +); + -- GitLab