Re: Where can I find the mail log in Plesk?
The mail logs in Plesk qmail are stored here:
/usr/local/psa/var/log/maillog
You can view the entire maillog like this:
# cat /usr/local/psa/var/log/maillog
Or you can look at the last 150 lines like this:
# tail -150 /usr/local/psa/var/log/maillog
You can watch the maillog devlop in real time like this:
# tail -f /usr/local/psa/var/log/maillog
You can search for specific entries like this:
# tail -500 /usr/local/psa/var/log/maillog | grep test@domain.co.uk
The Plesk maillog is your friend when it comes to finding spammers and email problems on your server.