Show mails in queue
1
|
/usr/local/atmail/mailserver/bin/exim –bp
|
Show a table overview of the mails in the queue
1
|
/usr/local/atmail/mailserver/bin/exim –bp | /usr/local/atmail/mailserver/bin/exiqsumm
|
Show the number of mails in the queue
1
|
/usr/local/atmail/mailserver/bin/exim –bpc
|
Deliver local mails
1
|
/usr/local/atmail/mailserver/bin/exim –v –M {MAIL ID}
|
Deliver all mails in queue as far as possible
1
|
/usr/local/atmail/mailserver/bin/exim –q
|
Deliver all mails in queue as far as possible (verbose mode)
1
|
/usr/local/atmail/mailserver/bin/exim –qff –v
|
Deliver frozen mail
1
|
/usr/local/atmail/mailserver/bin/exim –Mt {MAIL ID}
|
Delete all frozen mails
1
|
/usr/local/atmail/mailserver/bin/exim –bp | awk ‘/frozen/{print « /usr/local/atmail/mailserver/bin/exim -Mrm « $3}’ | /bin/sh
|
Unfreeze all frozen mails
1
|
/usr/local/atmail/mailserver/bin/exim –bp | awk ‘/frozen/{print « /usr/local/atmail/mailserver/bin/exim -Mt « $3}’ | /bin/sh
|
Delete specific mail from queue
1
|
/usr/local/atmail/mailserver/bin/exim –Mrm {MAIL ID}
|
Delete mails older than 10 days
1
|
/usr/local/atmail/mailserver/bin/exim –bp | grep ‘[0–9][0–9]d ‘ | awk ‘{print $3}’ | xargs /usr/local/atmail/mailserver/bin/exim –Mrm
|