Project Redcap talk:Community portal

From Project: Redcap
Revision as of 06:51, 21 January 2024 by Andrew Gronosky (talk | contribs) (email config status)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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