hold emails

Postfix Hold All Email Messages Using Linux Command

HOLD ALL EMAIL MESSAGES

This is the Linux command to put all Email messages on hold in Postfix. [code]postsuper -h ALL[/code] Use this command to put on hold messages from user@example.com: [code]postqueue -p | awk ‘BEGIN { RS = “” } { if (7 == “user@domain.com” ) print 1 }’ | tr -d ‘!*’ | postsuper -h[/code] CLICK HERE Read More