X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=maps%2Fbin%2Fmaps;h=223cda6daab39ac1d2a688e0187ae5bddc281992;hb=2911826fd83a57b69c528e4daaf8df30c00b6d2b;hp=854316bce4da4f619b2fe9c640ed07551c415c21;hpb=4f37839bc9faacb57d9bce9196d916595f14b114;p=clearscm.git diff --git a/maps/bin/maps b/maps/bin/maps index 854316b..223cda6 100755 --- a/maps/bin/maps +++ b/maps/bin/maps @@ -120,8 +120,8 @@ sub ProcessMsgs ($$$) { return unless $execute; - while (!eof *$msgfile) { - my ($sender, $sender_long, $reply_to, $subject, $data) = ReadMsg (*$msgfile); + while (!eof $msgfile) { + my ($sender, $sender_long, $reply_to, $subject, $data) = ReadMsg ($msgfile); my ($onlist, $rule, $sequence, $hit_count); @@ -232,6 +232,6 @@ verbose "Starting MAPS...."; my %userOptions = SetContext $userid or die "$userid is not a registered MAPS user\n"; -ProcessMsgs $msgfile, $userOptions{name}, $userOptions{email}; +ProcessMsgs $msgfile, $userOptions{name}, lc $userOptions{email}; exit 0;