added SMTP settings for mail

This commit is contained in:
Conrad Schulz 2021-01-09 17:18:37 +01:00
parent 4fc61f0bf2
commit 7533d12a77

View file

@ -43,6 +43,15 @@ $wgLogos = [ '1x' => "$wgResourceBasePath/resources/assets/Wiki_Logo.png" ];
$wgEnableEmail = true; $wgEnableEmail = true;
$wgEnableUserEmail = true; # UPO $wgEnableUserEmail = true; # UPO
$wgSMTP = [
'host' => 'ssl://smtp.gmail.com', // outbox server of the email account
'IDHost' => 'gmail.com',
'port' => 465,
'username' => 'rd13soft@gmail.com', // user of the email account
'password' => 'podkvrdmlvyutlps', // app password of the email account
'auth' => true
];
$wgEmergencyContact = "RD13Soft@gmail.com"; $wgEmergencyContact = "RD13Soft@gmail.com";
$wgPasswordSender = "RD13Soft@gmail.com"; $wgPasswordSender = "RD13Soft@gmail.com";