about summary refs log tree commit homepage
path: root/lib/PublicInbox/MDA.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-04-25 09:50:01 +0000
committerEric Wong <e@80x24.org>2016-04-25 09:50:32 +0000
commitfe3d2447badd595df784541556311137b920b0a2 (patch)
tree6e37ab61406654680fd6757593cf810370055ecb /lib/PublicInbox/MDA.pm
parent51c59323fffbfbb6ebc60f58da905e88ac323da5 (diff)
downloadpublic-inbox-fe3d2447badd595df784541556311137b920b0a2.tar.gz
By converting to using ourt git-fast-import-based Import
module.  This should allow us to be more easily installed.
Diffstat (limited to 'lib/PublicInbox/MDA.pm')
-rw-r--r--lib/PublicInbox/MDA.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/PublicInbox/MDA.pm b/lib/PublicInbox/MDA.pm
index 2d3b9bd8..b1471022 100644
--- a/lib/PublicInbox/MDA.pm
+++ b/lib/PublicInbox/MDA.pm
@@ -10,7 +10,6 @@ use Email::Address;
 use Date::Parse qw(strptime);
 use constant MAX_SIZE => 1024 * 500; # same as spamc default, should be tunable
 use constant MAX_MID_SIZE => 244; # max term size - 1 in Xapian
-use constant cmd => qw/ssoma-mda -1/;
 
 # drop plus addressing for matching
 sub __drop_plus {
@@ -84,15 +83,4 @@ sub set_list_headers {
         }
 }
 
-# returns a 3-element array: name, email, date
-sub author_info {
-        my ($class, $mime) = @_;
-
-        my $from = $mime->header('From');
-        my @from = Email::Address->parse($from);
-        my $name = $from[0]->name;
-        my $email = $from[0]->address;
-        ($name, $email, $mime->header('Date'));
-}
-
 1;