diff --git a/Troubleshooting-Mail.md b/Troubleshooting-Mail.md index 257525b..cf3f5a7 100644 --- a/Troubleshooting-Mail.md +++ b/Troubleshooting-Mail.md @@ -1,3 +1,12 @@ +## Newest Wekan + +In [Wekan v5.02](https://github.com/wekan/wekan/blob/master/CHANGELOG.md#v502-2021-03-02-wekan-release) is fix for STMP settings [that works with very happy feedback](https://github.com/wekan/wekan/issues/3529#issuecomment-789085999). It requires: +- **There is no email settings at Admin Panel anymore** +- Email settings are made only with snap commands like `sudo snap set wekan mail-url....` or similar in Docker/Source etc `MAIL_URL=...`, more details below. +- For any errors like SSLv3 and STARTTLS, check [newest AWS SES info](#example-aws-ses) and use similar settings, other SSLv3/STARTTLS info could be outdated. + +## Debugging your SMTP mail server + If you can't get your email server working with smtp/stmps or MAIL_SERVICE, look is there more config options for your email server at https://nodemailer.com docs, and add new issue about your email server to https://github.com/wekan/wekan/issues or [pull request](https://github.com/wekan/wekan/wiki/Emoji#how-you-could-add-another-plugin). For example, for https://nodemailer.com/smtp/ @@ -32,7 +41,7 @@ let info = transporter.sendMail({ If with some code example sending email works, xet7 can add it to wekan, like in [Wekan v5.52](https://github.com/wekan/wekan/blob/master/CHANGELOG.md#v552-2021-08-26-wekan-release) xet7 added direct nodemailer usage for MAIL_SERVICE. -## MAIL_SERVICE +## MAIL_SERVICE (not currently in use) a) If you use smtps or smtp, please do not add any MAIL_SERVICE settings. For example, AWS SES and Postfix works with only MAIL_URL and MAIL_FROM. @@ -71,13 +80,6 @@ export MAIL_SERVICE_USER=firstname.lastname@hotmail.com export MAIL_SERVICE_PASSWORD=SecretPassword ``` -## Newest Wekan - -In [Wekan v5.02](https://github.com/wekan/wekan/blob/master/CHANGELOG.md#v502-2021-03-02-wekan-release) is fix for STMP settings [that works with very happy feedback](https://github.com/wekan/wekan/issues/3529#issuecomment-789085999). It requires: -- There is no email settings at Admin Panel anymore. -- Email settings are made only with snap commands like `sudo snap set wekan mail-url....` or similar in Docker/Source etc `MAIL_URL=...`, more details below. -- For any errors like SSLv3 and STARTTLS, check [newest AWS SES info](#example-aws-ses) and use similar settings, other SSLv3/STARTTLS info could be outdated. - ## Special Characters **If you have special characters in username or password**, sometimes you need to urlencode them. Not for AWS SES.