Add nextcloud email config

This commit is contained in:
Jake Howard
2022-10-26 14:23:08 +01:00
parent 0d24bd7e0c
commit 8dd1f6cddf
2 changed files with 41 additions and 0 deletions

View File

@ -42,4 +42,15 @@ $CONFIG = array (
'has_rebuilt_cache' => true,
'logfile' => '/config/log/nextcloud.log',
'default_phone_region' => 'GB',
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => '{{ nextcloud.email_from_user }}',
'mail_domain' => '{{ nextcloud.email_from_domain }}',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => 1,
'mail_smtphost' => 'smtp.eu.mailgun.org',
'mail_smtpname' => '{{ nextcloud.email_username }}',
'mail_smtppassword' => '{{ nextcloud.email_password }}',
'mail_smtpport' => '465',
);