X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=maps%2Flib%2FMAPS.pm;h=96276123c0a69031cf71cc8ac9477f464cd4b9e2;hb=88c9cb9f6ed80dd31981b083593b1746695083b9;hp=73c0d4d5ba13c6c95c2a77e2aa7a79be58ac0e7b;hpb=3cf78733a693c64eff64d3e72485194b07484e12;p=clearscm.git diff --git a/maps/lib/MAPS.pm b/maps/lib/MAPS.pm index 73c0d4d..9627612 100644 --- a/maps/lib/MAPS.pm +++ b/maps/lib/MAPS.pm @@ -1,5 +1,4 @@ -#!/usr/bin/perl -################################################################################# +################################################################################ # # File: $RCSfile: MAPS.pm,v $ # Revision: $Revision: 1.1 $ @@ -39,6 +38,7 @@ our $VERSION = '2.0'; # Globals my $userid = $ENV{MAPS_USERNAME} ? $ENV{MAPS_USERNAME} : $ENV{USER}; my %useropts; +my $mailLoopMax = 5; our @EXPORT = qw( Add2Blacklist @@ -363,7 +363,7 @@ sub Blacklist(%) { # Check to see if this sender has already emailed us. my $msg_count = $db->count('email', "userid='$rec{userid}' and sender like '%$rec{sender}%'"); - if ($msg_count < 5) { + if ($msg_count < $mailLoopMax) { # Bounce email my @spammsg = split "\n", $rec{data}; @@ -966,67 +966,67 @@ sub OptimizeDB() { } # OptimizeDB sub ReadMsg($) { - # Reads an email message file from $input. Returns sender, subject, - # date and data, which is a copy of the entire message. my ($input) = @_; - my $sender = ''; - my $sender_long = ''; - my $envelope_sender = ''; - my $reply_to = ''; - my $subject = ''; - my $data = ''; - my @data; + my (%msgInfo, @data, $envelope_sender); - # Find first message's "From " line indicating start of message + # Reads an email message file from $input. Returns sender, subject, date and + # data, which is a copy of the entire message. Find first message's "From " + # line indicating start of message. while (<$input>) { chomp; last if /^From /; } # while # If we hit eof here then the message was garbled. Return indication of this - if (eof($input)) { - $data = "Garbled message - unable to find From line"; - return $sender, $sender_long, $reply_to, $subject, $data; - } # if + return if eof($input); if (/From (\S*)/) { - $envelope_sender = $1; - $sender_long = $envelope_sender; + $msgInfo{sender_long} = $envelope_sender = $1; } # if push @data, $_ if /^From /; while (<$input>) { - chomp; + chomp; chop if /\r$/; + push @data, $_; # Blank line indicates start of message body - last if ($_ eq "" || $_ eq "\r"); + last if ($_ eq '' || $_ eq "\r"); # Extract sender's address - if (/^from: .*/i) { - $_ = substr ($_, 6); - - $sender_long = $_; - - if (/<(\S*)@(\S*)>/) { - $sender = lc ("$1\@$2"); - } elsif (/(\S*)@(\S*)\ /) { - $sender = lc ("$1\@$2"); - } elsif (/(\S*)@(\S*)/) { - $sender = lc ("$1\@$2"); + if (/^from: (.*)/i) { + $msgInfo{sender_long} = $msgInfo{sender} = $1; + + if ($msgInfo{sender} =~ /<(\S*)@(\S*)>/) { + $msgInfo{sender} = lc ("$1\@$2"); + } elsif ($msgInfo{sender} =~ /(\S*)@(\S*)\ /) { + $msgInfo{sender} = lc ("$1\@$2"); + } elsif ($msgInfo{sender} =~ /(\S*)@(\S*)/) { + $msgInfo{sender} = lc ("$1\@$2"); } # if - } elsif (/^subject: .*/i) { - $subject = substr ($_, 9); - } elsif (/^reply-to: .*/i) { - $_ = substr ($_, 10); - if (/<(\S*)@(\S*)>/) { - $reply_to = lc ("$1\@$2"); - } elsif (/(\S*)@(\S*)\ /) { - $reply_to = lc ("$1\@$2"); - } elsif (/(\S*)@(\S*)/) { - $reply_to = lc ("$1\@$2"); + } elsif (/^subject: (.*)/i) { + $msgInfo{subject} = $1; + } elsif (/^reply-to: (.*)/i) { + $msgInfo{reply_to} = $1; + + if ($msgInfo{reply_to} =~ /<(\S*)@(\S*)>/) { + $msgInfo{reply_to} = lc ("$1\@$2"); + } elsif ($msgInfo{reply_to} =~ /(\S*)@(\S*)\ /) { + $msgInfo{reply_to} = lc ("$1\@$2"); + } elsif ($msgInfo{reply_to} =~ /(\S*)@(\S*)/) { + $msgInfo{reply_to} = lc ("$1\@$2"); + } # if + } elsif (/^to: (.*)/i) { + $msgInfo{to} = $1; + + if ($msgInfo{to} =~ /<(\S*)@(\S*)>/) { + $msgInfo{to} = lc ("$1\@$2"); + } elsif ($msgInfo{to} =~ /(\S*)@(\S*)\ /) { + $msgInfo{to} = lc ("$1\@$2"); + } elsif ($msgInfo{to} =~ /(\S*)@(\S*)/) { + $msgInfo{to} = lc ("$1\@$2"); } # if } # if } # while @@ -1036,48 +1036,57 @@ sub ReadMsg($) { chomp; last if (/^From /); + push @data, $_; } # while # Set file pointer back by length of the line just read - seek ($input, -length () - 1, 1) if !eof $input; + seek ($input, -length() - 1, 1) if !eof $input; # Sanitize email addresses - $envelope_sender =~ s/\//g; - $envelope_sender =~ s/\"//g; - $envelope_sender =~ s/\'//g; - $sender =~ s/\//g; - $sender =~ s/\"//g; - $sender =~ s/\'//g; - $reply_to =~ s/\//g; - $reply_to =~ s/\"//g; - $reply_to =~ s/\'//g; + $envelope_sender =~ s/\//g; + $envelope_sender =~ s/\"//g; + $envelope_sender =~ s/\'//g; + + $msgInfo{sender} =~ s/\//g; + $msgInfo{sender} =~ s/\"//g; + $msgInfo{sender} =~ s/\'//g; + + if ($msgInfo{reply_to}) { + $msgInfo{reply_to} =~ s/\//g; + $msgInfo{reply_to} =~ s/\"//g; + $msgInfo{reply_to} =~ s/\'//g; + } # if # Determine best addresses - $sender = $envelope_sender if $sender eq ""; - $reply_to = $sender if $reply_to eq ""; + $msgInfo{sender} = $envelope_sender unless $msgInfo{sender}; + $msgInfo{reply_to} = $msgInfo{sender} unless $msgInfo{reply_to}; - return $sender, $sender_long, $reply_to, $subject, join "\n", @data; + $msgInfo{data} = join "\n", @data; + + return %msgInfo; } # ReadMsg sub RecordHit(%) { my (%rec) = @_; - CheckParms(['userid', 'type', 'sequence', ], \%rec); - - my $current_date = UnixDatetime2SQLDatetime(scalar(localtime)); + CheckParms(['userid', 'type', 'sequence'], \%rec); my $table = 'list'; - my $condition = "userid='rec{userid} and type=$rec{type} and sequence='$rec{sequence}"; + my $condition = "userid='$rec{userid}' and type='$rec{type}' and sequence='$rec{sequence}'"; - return $db->modify( - table => $table, - condition => $condition, - %rec, - ); + # We don't need these fields in %rec as we are not updating them + delete $rec{sequence}; + delete $rec{type}; + delete $rec{userid}; + + # We are, however, updating last_hit + $rec{last_hit} = UnixDatetime2SQLDatetime(scalar(localtime)); + + return $db->modify($table, $condition, %rec); } # RecordHit sub ResequenceList(%) { @@ -1150,7 +1159,7 @@ sub ReturnMsg(%) { # Check to see if this sender has already emailed us. my $msg_count = $db->count('email', "userid='$userid' and sender like '%$params{sender}%'"); - if ($msg_count < 5) { + if ($msg_count < $mailLoopMax) { # Return register message SendMsg( userid => $params{userid}, @@ -1465,14 +1474,29 @@ sub Whitelist ($$;$$) { # Dump message into a file open my $message, '>', "/tmp/MAPSMessage.$$" - or Error("Unable to open message file (/tmp/MAPSMessage.$$): $!\n"), return -1; + or error("Unable to open message file (/tmp/MAPSMessage.$$): $!\n"), return -1; print $message $data; close $message; # Now call MAPSDeliver - my $status = system "$FindBin::Bin/MAPSDeliver $userid /tmp/MAPSMessage.$$"; + my ($status, @output) = Execute "$FindBin::Bin/MAPSDeliver $userid /tmp/MAPSMessage.$$"; + #my $status = system "$FindBin::Bin/MAPSDeliver $userid /tmp/MAPSMessage.$$"; + + if ($status != 0) { + my $msg = "Unable to deliver message (message left at /tmp/MAPSMessage.%%\n\n"; + $msg .= join "\n", @output; + + Logmsg( + userid => $userid, + type => 'whitelist', + sender => $sender, + message => $msg, + ); + + Error ($msg, 1); + } # if unlink "/tmp/MAPSMessage.$$"; @@ -1483,8 +1507,8 @@ sub Whitelist ($$;$$) { sender => $sender, message => 'Delivered message', ); - } else { - Error("Unable to deliver message - is MAPSDeliver setgid? - $!"); + } else { + error("Unable to deliver message - is MAPSDeliver setgid? - $!", $status); } # if $hit_count++ if $sequence;