<<< Date Index >>>     <<< Thread Index >>>

Re: Script to find list email at gmane.org



On Sat, Nov 25, 2006 at 01:36:30PM +0000, Michael Williams wrote:
> MESSAGEID=`grep "^Message-ID:" - | head -1`

This should be 

  MESSAGEID=`grep -i "^Message-ID:" - | head -1`

to catch the Message-ID set by Apple Mail, which is "Message-Id".

-- Mike