ah well my bad, tought it was odd too :P
either way, seems like it's not the problem. the box is clean of \r\n 's
----- Original Message -----
From: "Brian Candler" <B.Ca...@pobox.com>
To: "Daniel Higgins" <dhig...@netc.net>
Cc: <cour...@lists.sourceforge.net>
Sent: Friday, November 22, 2002 10:07 AM
Subject: Re: [courier-users] pop3 repeated messages
On Fri, Nov 22, 2002 at 09:46:20AM -0500, Daniel Higgins wrote:
ok i finally got around to doing some checks. with a stuck mailbox i did
a
grep '\r\n' * and found quite a few messages with that string, however
they
are mostly in headers... and seems to all come from hotmail and yahoo
groups.
Hmm, grep '\r\n' will search for the string "rn", for example:
$ grep '\r\n' /etc/passwd
toor:*:0:0:Bourne-again Superuser:/root:
^^
What I meant was, lines which end with a CR (ascii 13) LF (ascii 10)
sequence. They should normally only end with LF (ascii 10)
In hex look for 0D 0A
Or try this:
perl -ne 'print "$_" if /\r\n$/' *
Regards,