PLEASE READ THIS BEFORE POSTING: Read before posting / reporting bugs
Describe the problem you’re having:
…
I havd installed SMTP plugin, Enable in config.php, Still can not send mail.
Error sending email: Unable to send mail: check local configuration.
https://git.tt-rss.org/fox/ttrss-mailer-smtp
If possible include steps to reproduce the problem:
…
tt-rss version (including git commit id):
… v18.12
Platform (i.e. Linux distro, PHP, PostgreSQL, etc) versions:
…
Please provide any additional information below:
…
define(‘SMTP_SERVER’, ‘friday.domain.com:465’);
// Hostname:port combination to send outgoing mail (i.e. localhost:25).
// Blank - use system MTA.
define('SMTP_LOGIN', 'rss@domain.com');
define('SMTP_PASSWORD', 'mypassword');
// These two options enable SMTP authentication when sending
// outgoing mail. Only used with SMTP_SERVER.
define('SMTP_SECURE', 'ssl');
// Used to select a secure SMTP connection. Allowed values: ssl, tls,
// or empty.
define('SMTP_SKIP_CERT_CHECKS', true);
// Accept all SSL certificates, use with caution.
images:
Tiny Tiny rss can send mail, but the Chinese mail sent is garbled.Can you help me?
https://i.loli.net/2018/12/17/5c175c148da6f.png
fox
4
are you using smtp plugin or built-in mail function?
fox
6
looks like phpmailer defaults to iso-8859-1, yet another idiotic choice, as usual with this library
https://git.tt-rss.org/fox/ttrss-mailer-smtp/commit/fa77cfa9332d4a85ad0d63704d793e9b969ede16
this should probably help
The problem is solved, thank you very much.