Feature summary (what you would like to be able to do and where): Since Outlook changed his acces to outlook. com the integrated email function will be refused.
Setup:
$wgSMTP = [ 'host' => 'smtp-mail.outlook.com', // could also be an IP address. Where the SMTP server is located 'IDHost' => 'Sokradia von CC-Zeitlos', // Generally this will be the domain name of your website (aka mywiki.org) 'port' => 587, // Port to use when connecting to the SMTP server 'auth' => true, // Should we use SMTP authentication (true or false) 'username' => 'sokradia@hotmail.com', // Username to use for SMTP authentication (if being used) 'password' => 'XXX' // Password to use for SMTP authentication (if being used) ];
Use case(s) (list the steps that you performed to discover that problem, and describe the actual underlying problem which you want to solve. Do not describe only a solution):
https://cc-zeitlos.synology.me/mediawiki/index.php/Spezial:E-Mail_senden this is working fine... by sending the message out this error coming back:
authentication failure [SMTP: Invalid response code received from server (code: 535, response: 5.7.139 Authentication unsuccessful, basic authentication is disabled. [PR1P264CA0051.FRAP264.PROD.OUTLOOK.COM 2024-10-07T06:52:27.797Z 08DCE67009716E2B])]
Benefits (why should this be implemented?):
The used function will be below:
## E-Mail adress valididation $wgEmailConfirmToEdit = true; # Konfiguration der Gruppe, sodass E-Mail-bestätigte Benutzer in dieser Gruppe sind. $wgAutopromote['emailconfirmed'] = APCOND_EMAILCONFIRMED; # Abschließend das Bearbeiten für diese Benutzergruppe erlauben. $wgGroupPermissions['emailconfirmed']['edit'] = true;