Postfix: Difference between revisions
From DWIKI
mNo edit summary |
mNo edit summary |
||
Line 11: | Line 11: | ||
*postconf | *postconf | ||
*postsuper | *postsuper | ||
==FAQ== | |||
===Clean the postfix queue=== | |||
mailq | grep ^[0-9]| awk '{ print $1 }'| while read i;do postsuper -d ${i};done |
Revision as of 12:44, 1 August 2007
- Homepage
- Postfix and Amavis
- Postfix and SpamAssassin
- postfix+spamd
- FAQ
- Postfix with clamav-milter
- Postfix wiki
- LDAP Support in Postfix
Notes
- postconf
- postsuper
FAQ
Clean the postfix queue
mailq | grep ^[0-9]| awk '{ print $1 }'| while read i;do postsuper -d ${i};done