Timothy C. Klein wrote:
[...]
> Is there a way to tell Exim to just give up on the notification step,
> and delete the messages?
As the mail user:
exim -Mrm $(exim -bp | awk '{print $3}')
For many messages you might need:
exim -bp | awk '{print $3}' | xargs exim -Mrm
Dave