From 24f8ca354f20b010fca73b1c83656d27c6d85407 Mon Sep 17 00:00:00 2001 From: cranix Date: Thu, 2 Mar 2017 16:08:48 +0100 Subject: [PATCH] Removed printing a few unnesesary debug information. --- kuvert | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kuvert b/kuvert index e475029..7ffcc7d 100755 --- a/kuvert +++ b/kuvert @@ -395,7 +395,6 @@ sub crypt_send # returns nothing if ok or @error msgs sub process_file { - dlogit("In processfile"); my ($fh,$file)=@_; my $in_ent; @@ -503,7 +502,6 @@ sub process_file } @recips=@reallyr; } - # figure out what to do for specific recipients my %actions=findaction($override,\@recips,\@recip_bcc); @@ -657,6 +655,8 @@ sub findaction #Encrypt or drop everything if ($actions{$addr}=~/^encrypt/) { + my $thisaction=$1; + $actions{$addr}=$thisaction; $actions{$addr}=$specialkeys{$addr}||$email2key{$addr}||"drop"; }