@vinao if this happened after you have updated the Exim configuration using CustomBuild (
da build exim_conf
or via GUI), then this could mean one of the two things (or both of them):
- Your clients using Thunderbird or Outlook were passing passwords over plain-text connection (not using encryption).
- Your clients using Thunderbird or Outlook were using SMTP port 25 to send emails.
To fix the issue clients should update the email sending configuration by making sure they use encrypted connection when sending emails (use TCP port 587 or 465).
If there is a large number of clients that need to update their configuration you can allow using old insecure authentication policy with the commands listed in the
change log.
Code:
sed -i '/^AUTH_ENABLE_CONDITION /d' /etc/exim.variables.conf.custom
echo 'AUTH_ENABLE_CONDITION = yes' >> /etc/exim.variables.conf.custom
da build exim_conf
After all clients have updated their email applications to use encrypted connection you can switch to the default (secure) auth policy with commands:
Code:
sed -i '/^AUTH_ENABLE_CONDITION /d' /etc/exim.variables.conf.custom
da build exim_conf