Re: [Exim] (how does one ) view all the mail headers in the …

Top Page
Delete this message
Reply to this message
Author: Pat Lashley
Date:  
To: Segree, Gareth, exim-users
Subject: Re: [Exim] (how does one ) view all the mail headers in the queue.
--On Friday, September 05, 2003 15:46:18 -0500 "Segree, Gareth"
<Gareth.Segree@???> wrote:

> I tried to view the header by doing the following
>
> exiqgrep -f "<>" -i | xargs exim -Mvh
>
> But get the following *** Only one message can be listed at once
> I guess that's because all msg id are thrown at the command.


A quick scan of the xargs(1) man page would suggest:

    exiqgrep -f "<>" -i | xargs -n 1 exim -Mvh




-Pat