Examples (6)
Match the sender address using a case-insensitive search
exiqgrep -f '<[email protected]>'Match the sender address and display message IDs only
exiqgrep -i -f '<[email protected]>'Match the [r]ecipient address
Remove all messages matching the sender address from the queue
exiqgrep -i -f '<[email protected]>' | xargs exim -MrmTest for bounced messages
exiqgrep -f '^<>$'Display the [c]ount of bounced messages
exiqgrep -c -f '^<>$'made by @shridhargupta | data from tldr-pages