unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] mda: drop leading "From " lines again
@ 2016-06-26 23:31 Eric Wong
  2016-06-26 23:39 ` [PATCH 2/1] inbox: ensure we do not show leading "From " lines Eric Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Wong @ 2016-06-26 23:31 UTC (permalink / raw)
  To: meta

Oops...

While we're at it, drop blank lines before the "From ", too,
since it could happen.
---
 script/public-inbox-learn | 2 +-
 script/public-inbox-mda   | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/script/public-inbox-learn b/script/public-inbox-learn
index 7ef2a31..09fd7c8 100755
--- a/script/public-inbox-learn
+++ b/script/public-inbox-learn
@@ -26,7 +26,7 @@ my $err;
 my $mime = Email::MIME->new(eval {
 	local $/;
 	my $data = scalar <STDIN>;
-	$data =~ s/\AFrom [^\r\n]*\r?\n//s;
+	$data =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
 	eval {
 		if ($train eq 'ham') {
 			$spamc->hamlearn(\$data);
diff --git a/script/public-inbox-mda b/script/public-inbox-mda
index f739ad0..d76f33a 100755
--- a/script/public-inbox-mda
+++ b/script/public-inbox-mda
@@ -32,6 +32,7 @@ use PublicInbox::Spamcheck::Spamc;
 my $emergency = $ENV{PI_EMERGENCY} || "$ENV{HOME}/.public-inbox/emergency/";
 $ems = PublicInbox::Emergency->new($emergency);
 my $str = eval { local $/; <STDIN> };
+$str =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
 $ems->prepare(\$str);
 my $simple = Email::Simple->new(\$str);
 my $config = PublicInbox::Config->new;

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-26 23:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-26 23:31 [PATCH] mda: drop leading "From " lines again Eric Wong
2016-06-26 23:39 ` [PATCH 2/1] inbox: ensure we do not show leading "From " lines Eric Wong
2016-06-26 23:42   ` [PATCH 3/1] inbox: avoid trying s// on undef Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).