Received: from localhost by CS.UTK.EDU with SMTP (cf v2.9s-UTK) id XAA29703; Tue, 19 Mar 1996 23:58:46 -0500 Received: by CS.UTK.EDU (bulk_mailer v1.4); Tue, 19 Mar 1996 23:57:15 -0500 Received: from leftbank.com by CS.UTK.EDU with SMTP (cf v2.9s-UTK) id XAA29641; Tue, 19 Mar 1996 23:57:13 -0500 Received: from elbereth.leftbank.com.leftbank by leftbank.com (4.1/Leftbank1.0) id AA05679; Tue, 19 Mar 96 23:58:08 EST From: cos@leftbank.com (Ofer Inbar) Message-Id: <9603200458.AA05679@leftbank.com> Subject: space between header name and colon To: drums@cs.utk.edu Date: Tue, 19 Mar 1996 23:58:42 -0500 (EST) Organization: The Left Bank Operation - http://www.leftbank.com/ Reply-To: cos@leftbank.com X-Mailer: ELM [version 2.4 PL24] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit I used the following perl script to search through my mail archive of about 6 years, looking for header lines with any spaces between the header name and the colon: ---------------------------------------------------------------------- #!/usr/bin/perl $inheaders = 0; while(<>) { $mesgcount++ if /^From .*\d+:\d+:\d+/; $inheaders = 1 if /^From .*\d+:\d+:\d+/; $inheaders = 0 if /^\s*$/; $inheaders && /^[A-Za-z\-]+\s+:/ && print; } print "$mesgcount messages\n"; ---------------------------------------------------------------------- The only output was: "73437 messages". That confirms my suspicion, since I don't remember ever seeing such a message. I also ran the script with some test data, where I purposely put in a space, and it seemed to give the right results. -- Cos (Ofer Inbar) -- cos@leftbank.com cos@cs.brandeis.edu -- The Left Bank Operation -- lbo@leftbank.com http://www.leftbank.com "This may seem a bit weird, but that's okay, because it is weird." -- Larry Wall in perlref(1) man page, Perl 5.001