]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/MDA.pm
remove ssoma dependency
[public-inbox.git] / lib / PublicInbox / MDA.pm
index 2d3b9bd8daa3bba761a1980c55e38d9063c4a243..b1471022121d2743d4bcca120f9254a90be4c4fa 100644 (file)
@@ -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;