If the e-mail has the line "Subject:" (no characters
after colon) in the header, POPFile moves this line to
the last line of the header.
For example,
....
From: foo@bar
Subject:
this is a subject.
....
this header is changed to:
....
From: foo@bar
this is a subject.
....
Subject:
--
This problem can be solved by changing two lines in
Bayes.pm, like:
my $msg_subject = ''; # The message subject
to
my $msg_subject ; # The message subject
and
if ( $msg_subject eq '' ) {
to
if ( !defined($msg_subject) ) {
Logged In: YES
user_id=640073
I think this is related to two other bugs. Assigning to me.
Regards,
Sam
Logged In: YES
user_id=372164
Bayes.pm patch (for 0.20.1)
Bayes.pm patch for 0.20.1