Introduction
Sometimes users send messages to mailing lists, and the message gets "lost." This article discusses how to find out what happened to the message.
Procedure
- Access the server's command line as the 'root' user via SSH or "Terminal" in WHM.
- Find the message in the Exim log.
grep for.*list@mydomain.tld /var/log/exim_mainlog | grep sender@somedomain.tld | tail
Please note that "list@mydomain.tld" and "sender@somedomain.tld" must be replaced with the mailing list's address and the message sender's address. - Locate the message's
idvalue from the output.id=1598252431.j70vPATnUD9yOPtF@mailserver.test
- Find the message in the mailman logs.
grep 1598252431.j70vPATnUD9yOPtF\@mailserver.test /usr/local/cpanel/3rdparty/mailman/logs/*
Please note that message IDs can contain special characters you may need to escape with a backslash (\) character to search the logs for them. - Check the returned log(s) for more information.
Comments
0 comments
Article is closed for comments.