« Configuration SMTP Mailo pour MediaWiki » : différence entre les versions

De Wiki de Mémoire Vive
Aller à la navigation Aller à la recherche
Page créée avec «  <pre> $wgEnableEmail = true; $wgEnableUserEmail = true; $wgEmergencyContact = "ton.adresse@mailo.com"; $wgPasswordSender = "ton.adresse@mailo.com"; $wgEnotifUserTalk = true; $wgEnotifWatchlist = true; $wgEmailAuthentication = true; $wgSMTP = [ 'host' => 'smtp.mailo.com', 'IDHost' => 'mailo.com', 'port' => 465, 'auth' => true, 'username' => 'ton.adresse@mailo.com', 'password' => 'ton_mot_de_passe_mailo', ]; </pre> »
 
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
Ajouter (ou adapter) les lignes suivantes à la fin de ton fichier LocalSettings.php :


<pre>
<pre>

Version du 20 octobre 2025 à 15:16

Ajouter (ou adapter) les lignes suivantes à la fin de ton fichier LocalSettings.php :

$wgEnableEmail = true;
$wgEnableUserEmail = true;

$wgEmergencyContact = "ton.adresse@mailo.com";
$wgPasswordSender = "ton.adresse@mailo.com";

$wgEnotifUserTalk = true;
$wgEnotifWatchlist = true;
$wgEmailAuthentication = true;

$wgSMTP = [
    'host'     => 'smtp.mailo.com',
    'IDHost'   => 'mailo.com',
    'port'     => 465,
    'auth'     => true,
    'username' => 'ton.adresse@mailo.com',
    'password' => 'ton_mot_de_passe_mailo',
];