Project Redcap talk:Community portal
I don't believe I've ever had email working for this wiki. I've confirmed the account (no dash reply at redcap ) can send and receive email to my accounts at major providers (Google, Microsoft business, Protonmail). It must be a problem with the server settings. Here's what I've got.
#Outgoing email $wgEnableEmail = true; $wgPasswordSender = "no-reply@redcap.org"; $wgSMTP = [ 'host' => 'mail.redcap.org', // could also be an IP address. Where the SMTP server is located 'port' => 465, // Port to use when connecting to the SMTP server 'auth' => true, // Should we use SMTP authentication (true or false) 'username' => 'no-reply@redcap.org', // Username to use for SMTP authentication (if being used) 'password' => 'verified correct password' #Password to use for SMTP authentication (if being used) ];
I am surprised the $wgSMTP settings are that basic. I would expect STARTTLS options etc. User:Andrew Gronosky