mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
13 lines
383 B
PHP
13 lines
383 B
PHP
<?php
|
|
$CONFIG = array (
|
|
'mail_smtpmode' => 'smtp',
|
|
'mail_smtpauthtype' => 'PLAIN',
|
|
'mail_smtpsecure' => 'ssl',
|
|
'mail_smtpauth' => 1,
|
|
'mail_from_address' => 'noreply',
|
|
'mail_domain' => 'banditlair.com',
|
|
'mail_smtphost' => 'mail.banditlair.com',
|
|
'mail_smtpport' => '465',
|
|
'mail_smtpname' => 'noreply@banditlair.com',
|
|
'mail_smtppassword' => '{{email_password}}',
|
|
);
|