How to find emails sent,deferred, bounced with logs on exim mail server?

15,160

Solution 1

Exim comes with a tool called eximstats that will generates such statistics for you instead of grepping

Just run it from the command line with the log file to be examined as a parameter like:

eximstats /var/log/exim4/mainlog

Solution 2

Exim provides a log grepping perl script which will find and group all related log lines for whatever you search for. This tool is called exigrep and it can look for many different things, and can use regular expressions to do the matching. Examples:

# to find all emails to or from an email address
exigrep [email protected] /var/log/exim/main.log

# to find all delivered emails to an email address
exigrep '=>.*[email protected]' /var/log/exim/main.log

# if you know the specific mail queue id
exigrep 1UF3vP-0003M7-TY /var/log/exim/main.log

# to find a specific virus matches
exigrep Heuristics.Phishing.Email.SpoofedDomain /var/log/exim/main.log

It is a very powerful tool, but one caveat is that it searches the entire file from beginning to end. This will be slow or cause high load if you have very large mail logfiles or a very busy machine.

Share:
15,160

Related videos on Youtube

karthick
Author by

karthick

I am Karthick. I'm working as a Linux Server Engineer.

Updated on September 18, 2022

Comments

  • karthick
    karthick almost 2 years

    I am new to exim mail server. Now i need to findout the number of sent, deferred , bounced emails through logs. Since in postfix I will do things through grepping. Is there any way to find in exim through grep command.

    Your help is greatly appreciated. Thanks in advance.

    Best Regards, Karthick