Topic on Project:Support desk

PSIDWiki (talkcontribs)

Hello,

I had a huge requirement change so I had to start my site all over with the following software versions:

-Python 3.4 64-bit

-MySql 5.7.21 64-bit

-PHP 7.0.21

-MediaWiki 1.30

I create 2 accounts with the option to send the user the temporary password, but neither email account has received anything. In LocalSettings.php I have the following:

$wgEnableEmail = True;

$wgEnableUserEmail = True; # UPO

$wgEmailAuthentication = True;

$wgSMTP = array(

'host'     => "smtp.com", // could also be an IP address. Where the SMTP server is located

'IDHost'   => "tempsite.com",      // Generally this will be the domain name of your website (aka mywiki.org)

'port'     => 25,                 // Port to use when connecting to the SMTP server

'auth'     => True,               // Should we use SMTP authentication (true or false)

'username' => "SMTPUser",     // Username to use for SMTP authentication (if being used)

'password' => "SMTPPassword"       // Password to use for SMTP authentication (if being used)

);

I'm not sure how to test it other then to create more accounts.

Ciencia Al Poder (talkcontribs)

Once an account is created, if it has a configured mail, you can request a new password by email

141.211.32.5 (talkcontribs)

How is it possible to request a new password?

MarkAHershberger (talkcontribs)
PSIDWiki (talkcontribs)

Thanks again Mark for your help