Q. I’m using Fedora 7 server with exim pre installed by someone else. How do I delete email for a particular user from exim queue (like user@dom.com)?
A. Exim is a mail transfer agent (MTA) used on Unix-like operating systems. It is freely available under the GNU GPL and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.
Task: Delete Mail Linux Exim Server
To delete email for a particular user use shell pipes. By default the exim mail queue is located at /var/spool/exim/input directory. To delete email for a particular user called vivek@nixcraft.co.in, enter:
# exiqgrep -ir email@domain.com | xargs exim -Mrm
# exiqgrep -ir vivek@nixcraft.co.in | xargs exim -Mrm
Updated for accuracy.
🐧 7 comments so far... 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 |
wow, manually deleting the files from the spool can lead to issues…
exim has tools for these kind of tasks (exiqgrep for instance).
here’s what i would use to remove all messages addressed to an email address:
#exiqgrep -ir email@domain.com | xargs exim -Mrm
Thanks, the faq has been updated.
hi Good morning sir
i have one doubt sir,
we are using ubuntu mail server sir
please help me ,my problem is how to delete perticular mail in all users account from server,
what is the command,
one spam mail coming from other side so that mail iwant to delete from all users account
please reply sir
great article from nixcraft [as usual]…
Thanks for this, very useful after a user opted to get an email for a cron running every minute, which caused their Yahoo mail account to reject the messages and pile up in the queue!
I want to delete mails in the queue related to particular domain how do we do that.
for removel all mails SENT from
exiqgrep -if usar@domain.com | xargs exim -Mrm