If the mail cannot be delivered after eight days (timeout_frozen_after) the mail will be marked as frozen.
To check frozen emails in the queue you can use this command:
# exim -bp | grep frozen | wc -l
To remove frozen emails from the queue you can use this command:
# bash# exim -bpru | grep frozen | awk ‘{print $3}’ |xargs exim -Mrm
Confirm frozen mail is gone by using this command to get the number of emails in the mail queue:
# exim -bpc
The number should be lower than the start value.
No comments:
Post a Comment