Re: Questions about queue cli commands

2011-06-27 Thread Wietse Venema
Nicolas Michel: > OK. So if I understand well, "postsuper -r ALL" puts mails into the > starting point of the postfix delivery process (as like the mail were > just arrived on the server) but "postqueue -f" only try to deliver them? > (without reprocessing all the headers of each mail?) > > If

Re: Questions about queue cli commands

2011-06-27 Thread Nicolas Michel
On 06/27/2011 11:24 AM, Patrick Proniewski wrote: Salut, On 27 juin 2011, at 11:09, Nicolas Michel wrote: I have mails in the queue (I can see them with mailq). A) I want to delete them - postqueue -f nope, it will just flush the queue (force a new delivery attempt) - postsuper -d ALL - m

Re: Questions about queue cli commands

2011-06-27 Thread Patrick Proniewski
Salut, On 27 juin 2011, at 11:09, Nicolas Michel wrote: > I have mails in the queue (I can see them with mailq). > > A) I want to delete them > - postqueue -f nope, it will just flush the queue (force a new delivery attempt) > - postsuper -d ALL > - mailq | awk '{if (NF == 7) print $1'} | post

Questions about queue cli commands

2011-06-27 Thread Nicolas Michel
Hello, I have a few simple questions to be sure using the right commands to do what I want : Situation - I have mails in the queue (I can see them with mailq). A) I want to delete them - postqueue -f - postsuper -d ALL - mailq | awk '{if (NF == 7) print $1'} | postsuper -d - Are thes