Re: update on postsuper manual page

2016-10-09 Thread Wietse Venema
Geert Stappers: > On Sat, Sep 17, 2016 at 07:55:17PM -0400, Wietse Venema wrote: > > Geert Stappers: > > > > > } wanted > > > > > > mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } > > > # $7=sender, $8=recipient1, $9=recipient2 > > >

Re: update on postsuper manual page

2016-10-09 Thread Geert Stappers
On Sat, Sep 17, 2016 at 07:55:17PM -0400, Wietse Venema wrote: > Geert Stappers: > > > } wanted > > > > mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } > > # $7=sender, $8=recipient1, $9=recipient2 > > { if ($8 == "u...@example.com"

Re: update on postsuper manual page

2016-09-17 Thread Wietse Venema
Geert Stappers: > > Hi, > > My goal is to have > > mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } > # $7=sender, $8=recipient1, $9=recipient2 > { if ($8 == "u...@example.com" && $9 == "") > print $1 } >