]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2002-01-06 12:06:19 by ajt]
authorajt <>
Sun, 6 Jan 2002 20:06:19 +0000 (12:06 -0800)
committerajt <>
Sun, 6 Jan 2002 20:06:19 +0000 (12:06 -0800)
don't complain about missing Subject: headers, which *isn't* an rfc822
violation...

scripts/process.in

index df16323912d6a05d936278ff3532b403914d8df3..af5b68d0321da359103a344a9c2b223f43e1a769 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: process.in,v 1.42 2002/01/06 10:46:24 ajt Exp $
+# $Id: process.in,v 1.43 2002/01/06 12:06:19 ajt Exp $
 #
 # Usage: process nn
 # Temps:  incoming/Pnn
@@ -126,14 +126,19 @@ $replytocompare= $_;
 print DEBUG "replytocompare >$replytocompare<\n";
     
 if (!defined($header{'subject'})) 
-{      $brokenness.= <<END;
+{
+#      $brokenness.= <<END;
+
+#
+#Your message did not contain a Subject field.  This is broken, I am
+#afraid - the Subject: line is a Required Header according to RFC822.
+#Please remember to include a Subject field in your messages in future.
+#If you did so the fact that it got lost probably indicates a poorly
+#configured mail system at your site or an intervening one.
+#END
+#
+# RFC822 actually lists it as an `optional-field'.
 
-Your message did not contain a Subject field.  This is broken, I am
-afraid - the Subject: line is a Required Header according to RFC822.
-Please remember to include a Subject field in your messages in future.
-If you did so the fact that it got lost probably indicates a poorly
-configured mail system at your site or an intervening one.
-END
     $subject= '(no subject)';
 } else { $subject= $header{'subject'}; }