Hi,
I had the same problem and this fix works. Except that it comes back sometimes for unknown reason. I remove the unix... on both lines and it works again.
Why does it come back?
I had the same problem and this fix works. Except that it comes back sometimes for unknown reason. I remove the unix... on both lines and it works again.
Why does it come back?
By default /etc/postfix/main.cf should consist following strings:
smtpd_milters = inet:localhost:12768
non_smtpd_milters = inet:localhost:12768
But looks like that your main.cf is modified:
smtpd_milters = inet:localhost:12768 unix var/spool/postfix/ctmilter/ctmilter.sock
non_smtpd_milters = inet:localhost:12768 unix var/spool/postfix/ctmilter/ctmilter.sock
To fix the issue you can try to remove unix var/spool/postfix/ctmilter/ctmilter.sock from /etc/postfix/main.cf and restart postfix. After that all should work fine.