From: John Jetmore Date: Thu, 15 Dec 2005 17:58:23 +0000 (+0000) Subject: exipick 20051215.3 - fix --show-vars/-b interaction bug and handle new -aclc and... X-Git-Tag: exim-4_61~93 X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=commitdiff_plain;h=b3f69ca8497ed3cea40ff4a98ffcde476219ceaa;hp=1921d2ea1648c90d45da23f26cf8855465521426;ds=sidebyside exipick 20051215.3 - fix --show-vars/-b interaction bug and handle new -aclc and -aclm spool keywords from 4.61-PH/06 --- diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 7ac300ce2..3d504e0de 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.277 2005/12/15 15:44:46 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.278 2005/12/15 17:58:23 jetmore Exp $ Change log file for Exim from version 4.21 ------------------------------------------- @@ -46,6 +46,12 @@ PH/08 Changed debug output of dbfn_open() flags from numbers to names, so as to PH/09 Moved a debug statement in filter processing to avoid a race problem when testing. +JJ/01 exipick: fixed bug where -b (brief) output option showed "Vars:" + whether --show-vars was specified or not + +JJ/02 exipick: Added support for new ACL variable spool format introduced + in 4.61-PH/06 + Exim version 4.60 ----------------- diff --git a/src/src/exipick.src b/src/src/exipick.src index 5c818db7e..52207e93b 100644 --- a/src/src/exipick.src +++ b/src/src/exipick.src @@ -1,5 +1,5 @@ #!PERL_COMMAND -# $Cambridge: exim/src/src/exipick.src,v 1.7 2005/08/03 15:21:28 jetmore Exp $ +# $Cambridge: exim/src/src/exipick.src,v 1.8 2005/12/15 17:58:23 jetmore Exp $ # This variable should be set by the building process to Exim's spool directory. my $spool = 'SPOOL_DIRECTORY'; @@ -8,7 +8,7 @@ use strict; use Getopt::Long; my($p_name) = $0 =~ m|/?([^/]+)$|; -my $p_version = "20050802.0"; +my $p_version = "20051215.3"; my $p_usage = "Usage: $p_name [--help|--version] (see --help for details)"; my $p_cp = < @@ -71,17 +71,17 @@ push(@ARGV, "\$deliver_freeze") if ($G::qgrep_z); push(@ARGV, "!\$deliver_freeze") if ($G::qgrep_x); $G::mailq_bp = $G::mailq_bp; # shut up -w $G::and = $G::and; # shut up -w -$G::msg_ids = {}; +$G::msg_ids = {}; # short circuit when crit is only MID $G::caseless = $G::caseful ? 0 : 1; # nocase by default, case if both -@G::recipients_crit = (); +@G::recipients_crit = (); # holds per-recip criteria $spool = $G::spool if ($G::spool); my $count_only = 1 if ($G::mailq_bpc || $G::qgrep_c); my $unsorted = 1 if ($G::mailq_bpr || $G::mailq_bpra || $G::mailq_bpru); my $msg = get_all_msgs($spool, $unsorted); my $crit = process_criteria(\@ARGV); my $e = Exim::SpoolFile->new(); -my $tcount = 0 if ($count_only); -my $mcount = 0 if ($count_only); +my $tcount = 0 if ($count_only); # holds count of all messages +my $mcount = 0 if ($count_only); # holds count of matching messages $e->set_undelivered_only(1) if ($G::mailq_bpru || $G::mailq_bpu); $e->set_show_generated(1) if ($G::mailq_bpra || $G::mailq_bpa); $e->output_long() if ($G::qgrep_l); @@ -129,7 +129,9 @@ foreach my $m (@$msg) { else { next(MSG); } } } - next(MSG) if (scalar(@$crit, @local_crit) > 0 && !$match); + + # skip this message if any criteria were supplied and it didn't match + next(MSG) if ((scalar(@$crit) || scalar(@local_crit)) && !$match); if ($count_only) { $mcount++; @@ -235,8 +237,10 @@ BEGIN { package Exim::SpoolFile; -$Exim::SpoolFile::ACL_C_MAX = 10; -#$Exim::SpoolFile::ACL_M_MAX = 10; +# versions 4.61 and higher will not need these variables anymore, but they +# are left for handling legacy installs +$Exim::SpoolFile::ACL_C_MAX_LEGACY = 10; +#$Exim::SpoolFile::ACL_M_MAX _LEGACY= 10; sub new { my $class = shift; @@ -378,7 +382,7 @@ sub set_spool { # accepts a variable with or without leading '$' or trailing ':' sub get_var { my $self = shift; - my $var = shift; + my $var = lc(shift); $var =~ s/^\$//; $var =~ s/:$//; @@ -445,13 +449,23 @@ sub _parse_header { if ($tag eq '-acl') { my $t; return(0) if ($arg !~ /^(\d+)\s(\d+)$/); - if ($1 < $Exim::SpoolFile::ACL_C_MAX) { + if ($1 < $Exim::SpoolFile::ACL_C_MAX_LEGACY) { $t = "acl_c$1"; } else { - $t = "acl_m" . ($1 - $Exim::SpoolFile::ACL_C_MAX); + $t = "acl_m" . ($1 - $Exim::SpoolFile::ACL_C_MAX_LEGACY); } read(I, $self->{_vars}{$t}, $2+1) || return(0); chomp($self->{_vars}{$t}); + } elsif ($tag eq '-aclc') { + return(0) if ($arg !~ /^(\d+)\s(\d+)$/); + my $t = "acl_c$1"; + read(I, $self->{_vars}{$t}, $2+1) || return(0); + chomp($self->{_vars}{$t}); + } elsif ($tag eq '-aclm') { + return(0) if ($arg !~ /^(\d+)\s(\d+)$/); + my $t = "acl_m$1"; + read(I, $self->{_vars}{$t}, $2+1) || return(0); + chomp($self->{_vars}{$t}); } elsif ($tag eq '-local') { $self->{_vars}{sender_local} = 1; } elsif ($tag eq '-localerror') { @@ -725,7 +739,7 @@ sub print_message { push(@r, $r); } print $fh " To: ", join(';', @r); - if ($self->{_show_vars}) { + if ($self->{_show_vars} && scalar(@{$self->{_show_vars}})) { print $fh " Vars: ", join(';', map { "$_='".$self->get_var($_)."'" } (@{$self->{_show_vars}})