Question: I’m using Exim mail server under CentOS Linux. How do I remove all messages from the Exim mail queue using a shell prompt?
Answer: Exim is a mail transfer agent (MTA) used on Unix-like operating systems. It aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.
To print a list of the messages in the queue, enter:
# exim -bp
To remove a message from the queue, enter:
# exim -Mrm {message-id}
To remove all messages from the queue, enter:
# exim -bp | awk '/^ *[0-9]+[mhd]/{print "exim -Mrm " $3}' | bash
Dallas Marlow, suggested following clean command:
# exim -bp | exiqgrep -i | xargs exim -Mrm
Further readings:
- man pages awk, exim
- Exim documentation
🐧 Please support my work on Patreon or with a donation.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 42 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Hello,
the most secure thing (and the most ugly one) you can do is delete all files from EXIM input folder (/var/spool/exim/input). The folder that uses exim to keep the mail queue .
EXIM creates 2 files for email – 1 for the headers part and another for the message body. Erasing everything from this folder must erase the queue.
EXIM names the files with the msg_id an put -H or -D part on the end of filename – H for headers an -D for body file
The solution of Vivek is good, but for less traffic, otherwise if you manage lots of emails I recommend you to rm the files.
One of my cases:
[root@mta1 ~]# exim -bpc
O/p:
… and i afraid i cannot use this solution.
Regards
Ol.
Bulgaria
Another solution is put this router in the EXIM configure and run some queue runners – exim -qff&
If you place the router in first place he will delete all messages older than X seconds. 1800 = 30 min.
router_mailxpire:
… you are welcome :)
Cheers
Oldzhay,
Thanks for sharing your solution!
this is a much cleaner/safer way to do the same thing (using the tools provided by all modern exim installations)
exim -bp | exiqgrep -i | xargs exim -Mrm
exim -bp # this prints the contents of the mail queue
exiqgrep # extracts the id from each mail
xargs exim -Mrm # removes the mail
exiqgrep is pretty flexible (for instance if you wanted to only extract the frozen email id’s used exiqgrep -iz ), exipick is an extension of exiqgrep that can help a bit too.
I think it is enought to use
exiqgrep -i | xargs exim -Mrm
As the manual says, “it invokes exim -bpu itself and does not need to be invoked in a pipe”
Your solution is a lot slower with large queues. I had a few hundreds of thousands of messages, and using exiqgrep very little happened, but exiqgrep had its memory go through the roof.
The prior solution (“exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash”) is much faster.
Dallas,
The faq has been updated with your command. Thanks for sharing with us!
The method very slow for > 100K emails, nothing happen after 60 seconds. The fastest way is using: exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash
Have you been remove about 1200821 queue ?
it wont work with “exim -bp | exiqgrep -i | xargs exim -Mrm” ( I tried to wait until 24hours, it get my swap until 0 free)
so it must use script to remove the queue, in my case:
-list all directory in ‘input’ folder:
cd /var/spool/exim/input ; ls >> /tmp/folder
-create a script name “removeall”
echo “for b in `ls` ; do rm -f $b ; done” >> /tmp/removeall ; chmod 700 /tmp/removeall
– go to input folder and exec command
for a in `cat /tmp/folder` ; do cd $a ; /tmp/removeall ; cd .. ; done
and it work great :)
fastest solution to remove all emails in exim queue (less than 5sec) :
do these commands :
cd /var/spool
mv exim exim.old
mkdir -p exim/input
mkdir -p exim/msglog
mkdir -p exim/db
chown -R mail:mail exim
/sbin/service exim restart
.
.
.
enjoy it !!
You just saved my life! thanks!
Kudos!
You saved my life 2.
You saved my life 3. 4. 5.
I didn’t have ANY space for even making new dir. I just removed the input and anything inside and made a new input.
THANK YOU SO MUCH
you are welcome…
If you have AV/AntiSpam:
cd /var/spool
mv exim exim.old
mkdir -p exim/db
mkdir -p exim/input
mkdir -p exim/msglog
mkdir -p exim/scan
chown -R mail:mail exim
/sbin/service exim restart
Thanks Oldzhay for you router to delete messages older than x seconds, I will definately test & apply in my setup.
Well, I remove all the messages in the queue but still am not able to send any mail :(
“Well, I remove all the messages in the queue but still am not able to send any mail”
…this is another problem. Can you post some log here pls, and we can look for a solution
akbar:
Your function can be simplified as:
for dir in /var/spool/exim/input/*; do cd $dir; ls | xargs rm -f; done
Of course, if your intention is to simply remove all files (not directories) underneath /var/spool/exim/input, that process can be simplified as follows:
find /var/spool/exim/input -type f -exec rm -f {} +
Of course, this assumes that there are no files below input that shouldn’t be deleted.
hahaha how bout leave the programming to the real men. Take your pathetic code somewhere else.
To check the no. of mails in the queue use the command
exim -bpc
To check the list of pending mails use
exim -bp
To deliver the mails use
exim -qf -d
If working on a Server then check the load on it (using the command w ) and if the load is not high (less than 1.o) then you could also set 1 or 2 mail runners (do not set more than 2 as the load on the server may increase) using the command
exim -qf &
Hello,
About the Dallas Marlow comment:
It’s possible to do it without the “exim -bp” command.
The command “exiqgrep -i | xargs exim -Mrm” does exactly the same, because exiqgrep looks up the queue by itself.
Regards,
J. Ruiz
i want to remove 4000 messages
I client of my have been hacked and they sent about 40 millions of mails.
I have all of them in the input folder, i cant ls, du or nothing, this is a sh*t.
Anyone have some script that do this really fast ? i dont want to wait 1 month for clean up.
here is a good solution:
exim -bpru|awk {‘print $3’}|xargs exim -Mrm
Another command which can be used for this is the following
exim -bp |awk {‘print $3’} |xargs exim -Mrm
Tyler,
Thanks for your post — I saw what Akbar was trying to accomplish, but was wondering if there was a simpler way to do, and then I read down further to your post.
I had a client who had over 300,000 messages in the Exim Queue after his server was compromised by a PHP script and using exiqgrep didn’t seem to work (since I imagine exiqgrep doesn’t expect to encounter that many messages in Exim’s queue in the first place).
I created a shell command out of your command there, and ran it, and voila — everything is back to normal.
In addition, I think it may be of note to mention that configserver.com makes two applications that are free for WHM called CMM (Mail Manager) and CMQ (Mail Queue Manager) which help with these kinds of issues, but of course if you have a massive queue (300,000 messages for example) they won’t really help much, since they also use Exim’s built-in toolset to run the commands.
Thanks again Tyler! =0)
Thanks Tyler. It works.!
Hi all,
Not working for me :(
I am new to linux
and while executing
and
It’s showing read only file system can not removed…
plz let me know what I am missing …
Thanks to all…. :)
This works as well which is much simplier:
exiqgrep -i | xargs exim -Mrm
Example:
# exim -bp
9h 2.2K 1SoYFB-00082u-Lk *** frozen ***
root@host
9h 2.2K 1SoYFB-00082z-OB *** frozen ***
root@host
9h 2.2K 1SoYFB-000834-Qv *** frozen ***
root@host
9h 53K 1SoYFB-000839-TW *** frozen ***
root@host
# exiqgrep -i | xargs exim -Mrm
Message 1SoYFB-000834-Qv has been removed
Message 1SoYFB-00082u-Lk has been removed
Message 1SoYFB-000839-TW has been removed
Message 1SoYFB-00082z-OB has been removed
Can any one help me to use this exim mail queue delete command in cronjob
exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash
exim -bp | exiqgrep -i | xargs exim -Mrm
either of these commands in cron job
I run a cpanel server.
Can you use just:
exiqgrep -i | xargs exim -Mrm
To remove all emails from the queue? Is exim -bp needed?
Hello
Can you guys guide me to how write a cronjob to remove any email in queue which was in the queue for more than 1 hour.
I’m not sure if I should to put the script in the crontab or rounter field in exim configuration ?
Hi I am a newbie here. I have got more than 400K emails in queue. Can anyone help me to delete them at once.
Thanks!
Amir
Login to your server as root from ssh and run the bellow command and wait for queue to get empty :
exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash
Thanks man, but this is the same mentioned in the article. However I tried but it is a huge queue.
More than 1600000 emails are in queue. Is there any other way to delete the folder or something similar.
Thanks! Worked for me… :-)
Hello,
I shared one of my best solutions about… 6 years ago. It still works very well.
If you only want to delete the entire queue, just put the following router at the beginning of exims routers section (after “begin routers”). You must cut all new input traffic because you will delete it as well.
router_FlushTheQueue:
driver = redirect
data = /dev/null
file_transport = address_file
no_more
After changing exim´s config, restart the daemon and fire “exim -qff&” several times. It will launch several parallel queue runners and will process all the queue in about 5 o 10 minutes.
Hope that helps
Simple snippet for remove all queue messages:
exim4 -Mrm *
Thanks ,
exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash
helped me to remove 10XXXX mails from queue.
Is there a way to just remove emails from the queue that are sent from one user i.e. john@example.com or remove emails that are sent from a single domain?
Thanks a lot! This saves the day!