added SMTP settings for mail
This commit is contained in:
parent
4fc61f0bf2
commit
7533d12a77
1 changed files with 9 additions and 0 deletions
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue