Mailing List Archive

svn commit: r169343 - /spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm
Author: felicity
Date: Mon May 9 11:11:09 2005
New Revision: 169343

URL: http://svn.apache.org/viewcvs?rev=169343&view=rev
Log:
disable obsolete_folding_whitespace catch in Message.pm, but leave commented out in case we want to do something about it later on

Modified:
spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm?rev=169343&r1=169342&r2=169343&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Message.pm Mon May 9 11:11:09 2005
@@ -175,9 +175,11 @@

# NB: Really need to figure out special folding rules here!
if ( $current =~ /^[ \t]/ ) {
- unless ($current =~ /\S/) {
- $self->{'obsolete_folding_whitespace'} = 1;
- }
+ # This wasn't useful in terms of a rule, but we may want to treat it
+ # specially at some point. Perhaps ignore it?
+ #unless ($current =~ /\S/) {
+ # $self->{'obsolete_folding_whitespace'} = 1;
+ #}

# append continuations if there's a header in process
if ($header) {