diff options
author | cranix <cranix@hackerspace.pl> | 2017-03-02 16:08:48 +0100 |
---|---|---|
committer | cranix <cranix@hackerspace.pl> | 2017-03-02 16:08:48 +0100 |
commit | 24f8ca354f20b010fca73b1c83656d27c6d85407 (patch) | |
tree | 2f7784cef1b4f920aef5b49d8e0116b943285d47 | |
parent | b24f7569df1b6d74031153b7cc8160d444703c72 (diff) | |
download | kuvert-24f8ca354f20b010fca73b1c83656d27c6d85407.tar.gz kuvert-24f8ca354f20b010fca73b1c83656d27c6d85407.tar.bz2 kuvert-24f8ca354f20b010fca73b1c83656d27c6d85407.tar.xz kuvert-24f8ca354f20b010fca73b1c83656d27c6d85407.zip |
Removed printing a few unnesesary debug information.
-rwxr-xr-x | kuvert | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"; } |