8 messages in net.sourceforge.lists.courier-usersRe: [courier-users] pop3 repeated mes...
FromSent OnAttachments
Ricardo ZuastiNov 19, 2002 2:46 am 
Daniel HigginsNov 19, 2002 9:03 am 
Brian CandlerNov 19, 2002 11:02 am 
Daniel HigginsNov 22, 2002 6:50 am 
Brian CandlerNov 22, 2002 7:07 am 
Daniel HigginsNov 22, 2002 7:54 am 
Ricardo ZuastiNov 22, 2002 9:02 am 
Daniel HigginsNov 22, 2002 11:24 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] pop3 repeated messagesActions...
From:Daniel Higgins (dhig@netc.net)
Date:Nov 22, 2002 7:54:44 am
List:net.sourceforge.lists.courier-users

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,