Commit | Line | Data |
---|---|---|
059ec3d9 | 1 | #!PERL_COMMAND |
11121d3d | 2 | # $Cambridge: exim/src/src/exipick.src,v 1.9 2006/02/16 17:03:16 jetmore Exp $ |
059ec3d9 PH |
3 | |
4 | # This variable should be set by the building process to Exim's spool directory. | |
5 | my $spool = 'SPOOL_DIRECTORY'; | |
6 | ||
7 | use strict; | |
8 | use Getopt::Long; | |
9 | ||
10 | my($p_name) = $0 =~ m|/?([^/]+)$|; | |
11121d3d | 11 | my $p_version = "20060216.1"; |
059ec3d9 PH |
12 | my $p_usage = "Usage: $p_name [--help|--version] (see --help for details)"; |
13 | my $p_cp = <<EOM; | |
11121d3d | 14 | Copyright (c) 2003-2006 John Jetmore <jj33\@pobox.com> |
059ec3d9 PH |
15 | |
16 | This program is free software; you can redistribute it and/or modify | |
17 | it under the terms of the GNU General Public License as published by | |
18 | the Free Software Foundation; either version 2 of the License, or | |
19 | (at your option) any later version. | |
20 | ||
21 | This program is distributed in the hope that it will be useful, | |
22 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 | GNU General Public License for more details. | |
25 | ||
26 | You should have received a copy of the GNU General Public License | |
27 | along with this program; if not, write to the Free Software | |
28 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
29 | EOM | |
30 | ext_usage(); # before we do anything else, check for --help | |
31 | ||
bf759a8b PH |
32 | $| = 1; # unbuffer STDOUT |
33 | ||
059ec3d9 PH |
34 | Getopt::Long::Configure("bundling_override"); |
35 | GetOptions( | |
bf759a8b PH |
36 | 'spool:s' => \$G::spool, # exim spool dir |
37 | 'bp' => \$G::mailq_bp, # List the queue (noop - default) | |
38 | 'bpa' => \$G::mailq_bpa, # ... with generated address as well | |
39 | 'bpc' => \$G::mailq_bpc, # ... but just show a count of messages | |
40 | 'bpr' => \$G::mailq_bpr, # ... do not sort | |
41 | 'bpra' => \$G::mailq_bpra, # ... with generated addresses, unsorted | |
42 | 'bpru' => \$G::mailq_bpru, # ... only undelivered addresses, unsorted | |
43 | 'bpu' => \$G::mailq_bpu, # ... only undelivered addresses | |
44 | 'and' => \$G::and, # 'and' the criteria (default) | |
45 | 'or' => \$G::or, # 'or' the criteria | |
46 | 'f:s' => \$G::qgrep_f, # from regexp | |
47 | 'r:s' => \$G::qgrep_r, # recipient regexp | |
5f970846 | 48 | 's:s' => \$G::qgrep_s, # match against size field |
bf759a8b PH |
49 | 'y:s' => \$G::qgrep_y, # message younger than (secs) |
50 | 'o:s' => \$G::qgrep_o, # message older than (secs) | |
51 | 'z' => \$G::qgrep_z, # frozen only | |
52 | 'x' => \$G::qgrep_x, # non-frozen only | |
53 | 'c' => \$G::qgrep_c, # display match count | |
54 | 'l' => \$G::qgrep_l, # long format (default) | |
55 | 'i' => \$G::qgrep_i, # message ids only | |
56 | 'b' => \$G::qgrep_b, # brief format | |
57 | 'flatq' => \$G::flatq, # brief format | |
58 | 'caseful' => \$G::caseful, # in '=' criteria, respect case | |
59 | 'caseless' => \$G::caseless, # ...ignore case (default) | |
60 | 'show-vars:s' => \$G::show_vars, # display the contents of these vars | |
61 | 'show-rules' => \$G::show_rules, # display compiled match rules | |
62 | 'show-tests' => \$G::show_tests # display tests as applied to each message | |
059ec3d9 PH |
63 | ) || exit(1); |
64 | ||
5f970846 PH |
65 | push(@ARGV, "\$sender_address =~ /$G::qgrep_f/") if ($G::qgrep_f); |
66 | push(@ARGV, "\$recipients =~ /$G::qgrep_r/") if ($G::qgrep_r); | |
67 | push(@ARGV, "\$shown_message_size eq $G::qgrep_s") if ($G::qgrep_s); | |
68 | push(@ARGV, "\$message_age < $G::qgrep_y") if ($G::qgrep_y); | |
69 | push(@ARGV, "\$message_age > $G::qgrep_o") if ($G::qgrep_o); | |
70 | push(@ARGV, "\$deliver_freeze") if ($G::qgrep_z); | |
71 | push(@ARGV, "!\$deliver_freeze") if ($G::qgrep_x); | |
bf759a8b PH |
72 | $G::mailq_bp = $G::mailq_bp; # shut up -w |
73 | $G::and = $G::and; # shut up -w | |
b3f69ca8 | 74 | $G::msg_ids = {}; # short circuit when crit is only MID |
bf759a8b | 75 | $G::caseless = $G::caseful ? 0 : 1; # nocase by default, case if both |
b3f69ca8 | 76 | @G::recipients_crit = (); # holds per-recip criteria |
bf759a8b PH |
77 | $spool = $G::spool if ($G::spool); |
78 | my $count_only = 1 if ($G::mailq_bpc || $G::qgrep_c); | |
79 | my $unsorted = 1 if ($G::mailq_bpr || $G::mailq_bpra || $G::mailq_bpru); | |
80 | my $msg = get_all_msgs($spool, $unsorted); | |
81 | my $crit = process_criteria(\@ARGV); | |
82 | my $e = Exim::SpoolFile->new(); | |
b3f69ca8 JJ |
83 | my $tcount = 0 if ($count_only); # holds count of all messages |
84 | my $mcount = 0 if ($count_only); # holds count of matching messages | |
bf759a8b PH |
85 | $e->set_undelivered_only(1) if ($G::mailq_bpru || $G::mailq_bpu); |
86 | $e->set_show_generated(1) if ($G::mailq_bpra || $G::mailq_bpa); | |
87 | $e->output_long() if ($G::qgrep_l); | |
88 | $e->output_idonly() if ($G::qgrep_i); | |
89 | $e->output_brief() if ($G::qgrep_b); | |
90 | $e->output_flatq() if ($G::flatq); | |
059ec3d9 | 91 | $e->set_show_vars($G::show_vars) if ($G::show_vars); |
bf759a8b | 92 | $e->set_spool($spool); |
059ec3d9 PH |
93 | |
94 | MSG: | |
95 | foreach my $m (@$msg) { | |
af66f652 PH |
96 | next if (scalar(keys(%$G::msg_ids)) && !$G::or |
97 | && !$G::msg_ids->{$m->{message}}); | |
059ec3d9 PH |
98 | if (!$e->parse_message($m->{message})) { |
99 | warn "Couldn't parse $m->{message}: ".$e->error()."\n"; | |
11121d3d | 100 | next MSG; |
059ec3d9 PH |
101 | } |
102 | $tcount++; | |
103 | my $match = 0; | |
bf759a8b PH |
104 | my @local_crit = (); |
105 | foreach my $c (@G::recipients_crit) { # handle each_recip* vars | |
106 | foreach my $addr (split(/, /, $e->get_var($c->{var}))) { | |
107 | my %t = ( 'cmp' => $c->{cmp}, 'var' => $c->{var} ); | |
108 | $t{cmp} =~ s/"?\$var"?/'$addr'/; | |
109 | push(@local_crit, \%t); | |
110 | } | |
111 | } | |
ee744174 | 112 | if ($G::show_tests) { print $e->get_var('message_exim_id'), "\n"; } |
059ec3d9 | 113 | CRITERIA: |
bf759a8b | 114 | foreach my $c (@$crit, @local_crit) { |
059ec3d9 PH |
115 | my $var = $e->get_var($c->{var}); |
116 | my $ret = eval($c->{cmp}); | |
bf759a8b PH |
117 | if ($G::show_tests) { |
118 | printf " %25s = '%s'\n %25s => $ret\n",$c->{var},$var,$c->{cmp},$ret; | |
119 | } | |
059ec3d9 PH |
120 | if ($@) { |
121 | print STDERR "Error in eval '$c->{cmp}': $@\n"; | |
11121d3d | 122 | next MSG; |
059ec3d9 PH |
123 | } elsif ($ret) { |
124 | $match = 1; | |
11121d3d JJ |
125 | if ($G::or) { last CRITERIA; } |
126 | else { next CRITERIA; } | |
059ec3d9 | 127 | } else { # no match |
11121d3d JJ |
128 | if ($G::or) { next CRITERIA; } |
129 | else { next MSG; } | |
059ec3d9 PH |
130 | } |
131 | } | |
b3f69ca8 JJ |
132 | |
133 | # skip this message if any criteria were supplied and it didn't match | |
11121d3d | 134 | next MSG if ((scalar(@$crit) || scalar(@local_crit)) && !$match); |
059ec3d9 PH |
135 | |
136 | if ($count_only) { | |
137 | $mcount++; | |
138 | } else { | |
139 | $e->print_message(\*STDOUT); | |
140 | } | |
141 | } | |
142 | ||
143 | if ($G::mailq_bpc) { | |
11121d3d | 144 | print "$mcount\n"; |
059ec3d9 PH |
145 | } elsif ($G::qgrep_c) { |
146 | print "$mcount matches out of $tcount messages\n"; | |
147 | } | |
148 | ||
149 | exit; | |
150 | ||
151 | sub process_criteria { | |
152 | my $a = shift; | |
153 | my @c = (); | |
154 | my $e = 0; | |
155 | ||
156 | foreach (@$a) { | |
157 | foreach my $t ('@') { s/$t/\\$t/g; } # '$' | |
158 | if (/^(.*?)\s+(<=|>=|==|!=|<|>)\s+(.*)$/) { | |
159 | #print STDERR "found as integer\n"; | |
160 | my $v = $1; my $o = $2; my $n = $3; | |
161 | if ($n =~ /^([\d\.]+)M$/) { $n = $1 * 1024 * 1024; } | |
162 | elsif ($n =~ /^([\d\.]+)K$/) { $n = $1 * 1024; } | |
163 | elsif ($n =~ /^([\d\.]+)B?$/) { $n = $1; } | |
164 | elsif ($n =~ /^([\d\.]+)d$/) { $n = $1 * 60 * 60 * 24; } | |
165 | elsif ($n =~ /^([\d\.]+)h$/) { $n = $1 * 60 * 60; } | |
166 | elsif ($n =~ /^([\d\.]+)m$/) { $n = $1 * 60; } | |
167 | elsif ($n =~ /^([\d\.]+)s?$/) { $n = $1; } | |
168 | else { | |
169 | print STDERR "Expression $_ did not parse: numeric comparison with ", | |
170 | "non-number\n"; | |
171 | $e = 1; | |
172 | next; | |
173 | } | |
174 | push(@c, { var => lc($v), cmp => "(\$var $o $n) ? 1 : 0" }); | |
175 | } elsif (/^(.*?)\s+(=~|!~)\s+(.*)$/) { | |
176 | #print STDERR "found as string regexp\n"; | |
177 | push(@c, { var => lc($1), cmp => "(\"\$var\" $2 $3) ? 1 : 0" }); | |
178 | } elsif (/^(.*?)\s+=\s+(.*)$/) { | |
179 | #print STDERR "found as bare string regexp\n"; | |
af66f652 PH |
180 | my $case = $G::caseful ? '' : 'i'; |
181 | push(@c, { var => lc($1), cmp => "(\"\$var\" =~ /$2/$case) ? 1 : 0" }); | |
059ec3d9 PH |
182 | } elsif (/^(.*?)\s+(eq|ne)\s+(.*)$/) { |
183 | #print STDERR "found as string cmp\n"; | |
af66f652 | 184 | my $var = lc($1); my $op = $2; my $val = $3; |
5f970846 | 185 | $val =~ s|^(['"])(.*)\1$|$2|; |
af66f652 | 186 | push(@c, { var => $var, cmp => "(\"\$var\" $op \"$val\") ? 1 : 0" }); |
ee744174 | 187 | if (($var eq 'message_id' || $var eq 'message_exim_id') && $op eq "eq") { |
af66f652 PH |
188 | #print STDERR "short circuit @c[-1]->{cmp} $val\n"; |
189 | $G::msg_ids->{$val} = 1; | |
190 | } | |
059ec3d9 PH |
191 | } elsif (/^(!)?(\S+)$/) { |
192 | #print STDERR "found as boolean\n"; | |
193 | push(@c, { var => lc($2), cmp => "($1\$var) ? 1 : 0" }); | |
194 | } else { | |
195 | print STDERR "Expression $_ did not parse\n"; | |
196 | $e = 1; | |
197 | } | |
bf759a8b PH |
198 | # support the each_* psuedo variables. Steal the criteria off of the |
199 | # queue for special processing later | |
200 | if ($c[-1]{var} =~ /^each_(recipients(_(un)?del)?)$/) { | |
201 | my $var = $1; | |
202 | push(@G::recipients_crit,pop(@c)); | |
203 | $G::recipients_crit[-1]{var} = $var; # remove each_ from the variable | |
204 | } | |
059ec3d9 PH |
205 | } |
206 | ||
207 | exit(1) if ($e); | |
208 | ||
209 | if ($G::show_rules) { foreach (@c) { print "$_->{var}\t$_->{cmp}\n"; } } | |
210 | ||
211 | return(\@c); | |
212 | } | |
213 | ||
214 | sub get_all_msgs { | |
215 | my $d = shift() . '/input'; | |
216 | my $u = shift; | |
217 | my @m = (); | |
218 | ||
219 | opendir(D, "$d") || die "Couldn't opendir $d: $!\n"; | |
220 | foreach my $e (grep !/^\./, readdir(D)) { | |
221 | if ($e =~ /^[a-zA-Z0-9]$/) { | |
222 | opendir(DD, "$d/$e") || next; | |
223 | foreach my $f (grep !/^\./, readdir(DD)) { | |
224 | push(@m, { message => $1, path => "$e/$1" }) if ($f =~ /^(.{16})-H$/); | |
225 | } | |
226 | closedir(DD); | |
227 | } elsif ($e =~ /^(.{16})-H$/) { | |
228 | push(@m, { message => $1, path => $1 }); | |
229 | } | |
230 | } | |
231 | closedir(D); | |
232 | ||
233 | return($u ? \@m : [ sort { $a->{message} cmp $b->{message} } @m ]); | |
234 | } | |
235 | ||
236 | BEGIN { | |
237 | ||
238 | package Exim::SpoolFile; | |
239 | ||
b3f69ca8 JJ |
240 | # versions 4.61 and higher will not need these variables anymore, but they |
241 | # are left for handling legacy installs | |
242 | $Exim::SpoolFile::ACL_C_MAX_LEGACY = 10; | |
243 | #$Exim::SpoolFile::ACL_M_MAX _LEGACY= 10; | |
059ec3d9 PH |
244 | |
245 | sub new { | |
246 | my $class = shift; | |
247 | my $self = {}; | |
248 | bless($self, $class); | |
249 | ||
250 | $self->{_spool_dir} = ''; | |
251 | $self->{_undelivered_only} = 0; | |
252 | $self->{_show_generated} = 0; | |
253 | $self->{_output_long} = 1; | |
254 | $self->{_output_idonly} = 0; | |
255 | $self->{_output_brief} = 0; | |
256 | $self->{_output_flatq} = 0; | |
5f970846 | 257 | $self->{_show_vars} = []; |
059ec3d9 PH |
258 | |
259 | $self->_reset(); | |
260 | return($self); | |
261 | } | |
262 | ||
263 | sub output_long { | |
264 | my $self = shift; | |
265 | ||
266 | $self->{_output_long} = 1; | |
267 | $self->{_output_idonly} = 0; | |
268 | $self->{_output_brief} = 0; | |
269 | $self->{_output_flatq} = 0; | |
270 | } | |
271 | ||
272 | sub output_idonly { | |
273 | my $self = shift; | |
274 | ||
275 | $self->{_output_long} = 0; | |
276 | $self->{_output_idonly} = 1; | |
277 | $self->{_output_brief} = 0; | |
278 | $self->{_output_flatq} = 0; | |
279 | } | |
280 | ||
281 | sub output_brief { | |
282 | my $self = shift; | |
283 | ||
284 | $self->{_output_long} = 0; | |
285 | $self->{_output_idonly} = 0; | |
286 | $self->{_output_brief} = 1; | |
287 | $self->{_output_flatq} = 0; | |
288 | } | |
289 | ||
290 | sub output_flatq { | |
291 | my $self = shift; | |
292 | ||
293 | $self->{_output_long} = 0; | |
294 | $self->{_output_idonly} = 0; | |
295 | $self->{_output_brief} = 0; | |
296 | $self->{_output_flatq} = 1; | |
297 | } | |
298 | ||
299 | sub set_show_vars { | |
300 | my $self = shift; | |
301 | my $s = shift; | |
302 | ||
303 | foreach my $v (split(/\s*,\s*/, $s)) { | |
5f970846 | 304 | push(@{$self->{_show_vars}}, $v); |
059ec3d9 PH |
305 | } |
306 | } | |
307 | ||
308 | sub set_show_generated { | |
309 | my $self = shift; | |
310 | $self->{_show_generated} = shift; | |
311 | } | |
312 | ||
313 | sub set_undelivered_only { | |
314 | my $self = shift; | |
315 | $self->{_undelivered_only} = shift; | |
316 | } | |
317 | ||
318 | sub error { | |
319 | my $self = shift; | |
320 | return $self->{_error}; | |
321 | } | |
322 | ||
323 | sub _error { | |
324 | my $self = shift; | |
325 | $self->{_error} = shift; | |
326 | return(undef); | |
327 | } | |
328 | ||
329 | sub _reset { | |
330 | my $self = shift; | |
331 | ||
332 | $self->{_error} = ''; | |
333 | $self->{_delivered} = 0; | |
334 | $self->{_message} = ''; | |
335 | $self->{_path} = ''; | |
336 | $self->{_vars} = {}; | |
337 | ||
338 | $self->{_numrecips} = 0; | |
339 | $self->{_udel_tree} = {}; | |
340 | $self->{_del_tree} = {}; | |
341 | $self->{_recips} = {}; | |
342 | ||
343 | return($self); | |
344 | } | |
345 | ||
346 | sub parse_message { | |
347 | my $self = shift; | |
8e669ac1 | 348 | |
059ec3d9 PH |
349 | $self->_reset(); |
350 | $self->{_message} = shift || return(0); | |
351 | return(0) if (!$self->{_spool_dir}); | |
352 | if (!$self->_find_path()) { | |
353 | # assume the message was delivered from under us and ignore | |
354 | $self->{_delivered} = 1; | |
355 | return(1); | |
356 | } | |
357 | $self->_parse_header() || return(0); | |
358 | ||
359 | return(1); | |
360 | } | |
361 | ||
362 | sub _find_path { | |
363 | my $self = shift; | |
364 | ||
365 | return(0) if (!$self->{_message}); | |
366 | return(0) if (!$self->{_spool_dir}); | |
367 | ||
368 | foreach my $f ('', substr($self->{_message}, 5, 1).'/') { | |
369 | if (-f $self->{_spool_dir} . "/input/$f" . $self->{_message} . '-H') { | |
370 | $self->{_path} = $self->{_spool_dir} . "/input/$f"; | |
371 | return(1); | |
372 | } | |
373 | } | |
374 | return(0); | |
375 | } | |
376 | ||
377 | sub set_spool { | |
378 | my $self = shift; | |
379 | $self->{_spool_dir} = shift; | |
380 | } | |
381 | ||
382 | # accepts a variable with or without leading '$' or trailing ':' | |
383 | sub get_var { | |
384 | my $self = shift; | |
b3f69ca8 | 385 | my $var = lc(shift); |
059ec3d9 PH |
386 | |
387 | $var =~ s/^\$//; | |
388 | $var =~ s/:$//; | |
389 | ||
390 | $self->_parse_body() | |
391 | if ($var eq 'message_body' && !$self->{_vars}{message_body}); | |
392 | ||
393 | return $self->{_vars}{$var}; | |
394 | } | |
395 | ||
396 | sub _parse_body { | |
397 | my $self = shift; | |
398 | my $f = $self->{_path} . '/' . $self->{_message} . '-D'; | |
399 | ||
400 | open(I, "<$f") || return($self->_error("Couldn't open $f: $!")); | |
401 | chomp($_ = <I>); | |
402 | return(0) if ($self->{_message}.'-D' ne $_); | |
403 | ||
404 | $self->{_vars}{message_body} = join('', <I>); | |
405 | close(I); | |
406 | $self->{_vars}{message_body} =~ s/\n/ /g; | |
407 | $self->{_vars}{message_body} =~ s/\000/ /g; | |
408 | return(1); | |
409 | } | |
410 | ||
411 | sub _parse_header { | |
412 | my $self = shift; | |
413 | my $f = $self->{_path} . '/' . $self->{_message} . '-H'; | |
414 | ||
415 | open(I, "<$f") || return($self->_error("Couldn't open $f: $!")); | |
416 | chomp($_ = <I>); | |
417 | return(0) if ($self->{_message}.'-H' ne $_); | |
418 | $self->{_vars}{message_id} = $self->{_message}; | |
ee744174 | 419 | $self->{_vars}{message_exim_id} = $self->{_message}; |
059ec3d9 PH |
420 | |
421 | # line 2 | |
422 | chomp($_ = <I>); | |
5f970846 | 423 | return(0) if (!/^(.+)\s(\-?\d+)\s(\-?\d+)$/); |
059ec3d9 PH |
424 | $self->{_vars}{originator_login} = $1; |
425 | $self->{_vars}{originator_uid} = $2; | |
426 | $self->{_vars}{originator_gid} = $3; | |
427 | ||
428 | # line 3 | |
429 | chomp($_ = <I>); | |
430 | return(0) if (!/^<(.*)>$/); | |
431 | $self->{_vars}{sender_address} = $1; | |
432 | $self->{_vars}{sender_address_domain} = $1; | |
433 | $self->{_vars}{sender_address_local_part} = $1; | |
434 | $self->{_vars}{sender_address_domain} =~ s/^.*\@//; | |
435 | $self->{_vars}{sender_address_local_part} =~ s/^(.*)\@.*$/$1/; | |
436 | ||
437 | # line 4 | |
438 | chomp($_ = <I>); | |
439 | return(0) if (!/^(\d+)\s(\d+)$/); | |
440 | $self->{_vars}{received_time} = $1; | |
441 | $self->{_vars}{warning_count} = $2; | |
442 | $self->{_vars}{message_age} = time() - $self->{_vars}{received_time}; | |
443 | ||
444 | while (<I>) { | |
445 | chomp(); | |
446 | if (/^(-\S+)\s*(.*$)/) { | |
447 | my $tag = $1; | |
448 | my $arg = $2; | |
449 | if ($tag eq '-acl') { | |
450 | my $t; | |
451 | return(0) if ($arg !~ /^(\d+)\s(\d+)$/); | |
b3f69ca8 | 452 | if ($1 < $Exim::SpoolFile::ACL_C_MAX_LEGACY) { |
059ec3d9 PH |
453 | $t = "acl_c$1"; |
454 | } else { | |
b3f69ca8 | 455 | $t = "acl_m" . ($1 - $Exim::SpoolFile::ACL_C_MAX_LEGACY); |
059ec3d9 PH |
456 | } |
457 | read(I, $self->{_vars}{$t}, $2+1) || return(0); | |
458 | chomp($self->{_vars}{$t}); | |
b3f69ca8 JJ |
459 | } elsif ($tag eq '-aclc') { |
460 | return(0) if ($arg !~ /^(\d+)\s(\d+)$/); | |
461 | my $t = "acl_c$1"; | |
462 | read(I, $self->{_vars}{$t}, $2+1) || return(0); | |
463 | chomp($self->{_vars}{$t}); | |
464 | } elsif ($tag eq '-aclm') { | |
465 | return(0) if ($arg !~ /^(\d+)\s(\d+)$/); | |
466 | my $t = "acl_m$1"; | |
467 | read(I, $self->{_vars}{$t}, $2+1) || return(0); | |
468 | chomp($self->{_vars}{$t}); | |
059ec3d9 PH |
469 | } elsif ($tag eq '-local') { |
470 | $self->{_vars}{sender_local} = 1; | |
471 | } elsif ($tag eq '-localerror') { | |
472 | $self->{_vars}{local_error_message} = 1; | |
473 | } elsif ($tag eq '-local_scan') { | |
474 | $self->{_vars}{local_scan_data} = $arg; | |
bf759a8b PH |
475 | } elsif ($tag eq '-spam_score_int') { |
476 | $self->{_vars}{spam_score_int} = $arg; | |
477 | $self->{_vars}{spam_score} = $arg / 10; | |
478 | } elsif ($tag eq '-bmi_verdicts') { | |
479 | $self->{_vars}{bmi_verdicts} = $arg; | |
480 | } elsif ($tag eq '-host_lookup_deferred') { | |
481 | $self->{_vars}{host_lookup_deferred} = 1; | |
059ec3d9 PH |
482 | } elsif ($tag eq '-host_lookup_failed') { |
483 | $self->{_vars}{host_lookup_failed} = 1; | |
484 | } elsif ($tag eq '-body_linecount') { | |
485 | $self->{_vars}{body_linecount} = $arg; | |
bf759a8b PH |
486 | } elsif ($tag eq '-body_zerocount') { |
487 | $self->{_vars}{body_zerocount} = $arg; | |
059ec3d9 PH |
488 | } elsif ($tag eq '-frozen') { |
489 | $self->{_vars}{deliver_freeze} = 1; | |
490 | $self->{_vars}{deliver_frozen_at} = $arg; | |
bf759a8b PH |
491 | } elsif ($tag eq '-allow_unqualified_recipient') { |
492 | $self->{_vars}{allow_unqualified_recipient} = 1; | |
493 | } elsif ($tag eq '-allow_unqualified_sender') { | |
494 | $self->{_vars}{allow_unqualified_sender} = 1; | |
059ec3d9 PH |
495 | } elsif ($tag eq '-deliver_firsttime') { |
496 | $self->{_vars}{deliver_firsttime} = 1; | |
497 | $self->{_vars}{first_delivery} = 1; | |
498 | } elsif ($tag eq '-manual_thaw') { | |
499 | $self->{_vars}{deliver_manual_thaw} = 1; | |
500 | $self->{_vars}{manually_thawed} = 1; | |
501 | } elsif ($tag eq '-auth_id') { | |
502 | $self->{_vars}{authenticated_id} = $arg; | |
503 | } elsif ($tag eq '-auth_sender') { | |
504 | $self->{_vars}{authenticated_sender} = $arg; | |
505 | } elsif ($tag eq '-sender_set_untrusted') { | |
506 | $self->{_vars}{sender_set_untrusted} = 1; | |
507 | } elsif ($tag eq '-tls_certificate_verified') { | |
508 | $self->{_vars}{tls_certificate_verified} = 1; | |
509 | } elsif ($tag eq '-tls_cipher') { | |
510 | $self->{_vars}{tls_cipher} = $arg; | |
511 | } elsif ($tag eq '-tls_peerdn') { | |
512 | $self->{_vars}{tls_peerdn} = $arg; | |
513 | } elsif ($tag eq '-host_address') { | |
514 | $self->{_vars}{sender_host_port} = $self->_get_host_and_port(\$arg); | |
515 | $self->{_vars}{sender_host_address} = $arg; | |
516 | } elsif ($tag eq '-interface_address') { | |
517 | $self->{_vars}{interface_port} = $self->_get_host_and_port(\$arg); | |
518 | $self->{_vars}{interface_address} = $arg; | |
bf759a8b PH |
519 | } elsif ($tag eq '-active_hostname') { |
520 | $self->{_vars}{smtp_active_hostname} = $arg; | |
059ec3d9 PH |
521 | } elsif ($tag eq '-host_auth') { |
522 | $self->{_vars}{sender_host_authenticated} = $arg; | |
523 | } elsif ($tag eq '-host_name') { | |
524 | $self->{_vars}{sender_host_name} = $arg; | |
525 | } elsif ($tag eq '-helo_name') { | |
526 | $self->{_vars}{sender_helo_name} = $arg; | |
527 | } elsif ($tag eq '-ident') { | |
528 | $self->{_vars}{sender_ident} = $arg; | |
529 | } elsif ($tag eq '-received_protocol') { | |
530 | $self->{_vars}{received_protocol} = $arg; | |
531 | } elsif ($tag eq '-N') { | |
532 | $self->{_vars}{dont_deliver} = 1; | |
059ec3d9 PH |
533 | } else { |
534 | # unrecognized tag, save it for reference | |
535 | $self->{$tag} = $arg; | |
536 | } | |
537 | } else { | |
538 | last; | |
539 | } | |
540 | } | |
541 | ||
8e669ac1 | 542 | # when we drop out of the while loop, we have the first line of the |
059ec3d9 PH |
543 | # delivered tree in $_ |
544 | do { | |
545 | if ($_ eq 'XX') { | |
546 | ; # noop | |
547 | } elsif ($_ =~ s/^[YN][YN]\s+//) { | |
548 | $self->{_del_tree}{$_} = 1; | |
549 | } else { | |
550 | return(0); | |
551 | } | |
552 | chomp($_ = <I>); | |
553 | } while ($_ !~ /^\d+$/); | |
554 | ||
555 | $self->{_numrecips} = $_; | |
556 | $self->{_vars}{recipients_count} = $self->{_numrecips}; | |
557 | for (my $i = 0; $i < $self->{_numrecips}; $i++) { | |
558 | chomp($_ = <I>); | |
559 | return(0) if (/^$/); | |
560 | my $addr = ''; | |
561 | if (/^(.*)\s\d+,(\d+),\d+$/) { | |
562 | #print STDERR "exim3 type (untested): $_\n"; | |
563 | $self->{_recips}{$1} = { pno => $2 }; | |
564 | $addr = $1; | |
565 | } elsif (/^(.*)\s(\d+)$/) { | |
566 | #print STDERR "exim4 original type (untested): $_\n"; | |
567 | $self->{_recips}{$1} = { pno => $2 }; | |
568 | $addr = $1; | |
569 | } elsif (/^(.*)\s(.*)\s(\d+),(\d+)#1$/) { | |
570 | #print STDERR "exim4 new type #1 (untested): $_\n"; | |
571 | return($self->_error("incorrect format: $_")) if (length($2) != $3); | |
572 | $self->{_recips}{$1} = { pno => $4, errors_to => $2 }; | |
573 | $addr = $1; | |
574 | } elsif (/^.*#(\d+)$/) { | |
bf759a8b | 575 | #print STDERR "exim4 #$1 style (unimplemented): $_\n"; |
059ec3d9 PH |
576 | $self->_error("exim4 #$1 style (unimplemented): $_"); |
577 | } else { | |
578 | #print STDERR "default type: $_\n"; | |
579 | $self->{_recips}{$_} = {}; | |
580 | $addr = $_; | |
581 | } | |
582 | $self->{_udel_tree}{$addr} = 1 if (!$self->{_del_tree}{$addr}); | |
583 | } | |
af66f652 PH |
584 | $self->{_vars}{recipients} = join(', ', keys(%{$self->{_recips}})); |
585 | $self->{_vars}{recipients_del} = join(', ', keys(%{$self->{_del_tree}})); | |
586 | $self->{_vars}{recipients_undel} = join(', ', keys(%{$self->{_udel_tree}})); | |
587 | $self->{_vars}{recipients_undel_count} = scalar(keys(%{$self->{_udel_tree}})); | |
588 | $self->{_vars}{recipients_del_count} = 0; | |
589 | foreach my $r (keys %{$self->{_del_tree}}) { | |
590 | next if (!$self->{_recips}{$r}); | |
591 | $self->{_vars}{recipients_del_count}++; | |
592 | } | |
059ec3d9 PH |
593 | |
594 | # blank line | |
595 | $_ = <I>; | |
596 | return(0) if (!/^$/); | |
597 | ||
598 | # start reading headers | |
599 | while (read(I, $_, 3) == 3) { | |
600 | my $t = getc(I); | |
601 | return(0) if (!length($t)); | |
602 | while ($t =~ /^\d$/) { | |
603 | $_ .= $t; | |
604 | $t = getc(I); | |
605 | } | |
606 | # ok, right here $t contains the header flag and $_ contains the number of | |
607 | # bytes to read. If we ever use the header flag, grab it here. | |
608 | $self->{_vars}{message_size} += $_ if ($t ne '*'); | |
609 | $t = getc(I); # strip the space out of the file | |
610 | my $bytes = $_; | |
611 | return(0) if (read(I, $_, $bytes) != $bytes); | |
612 | chomp(); # may regret this later | |
11121d3d JJ |
613 | if ($t ne '*') { |
614 | # use of this temp variable is a little lame but it prevents a | |
615 | # -w warning (Use of implicit split to @_ is deprecated) | |
616 | my @t = split(/\n/); | |
617 | $self->{_vars}{message_linecount} += scalar(@t); | |
618 | } | |
059ec3d9 PH |
619 | # build the $header_ variable, following exim's rules (sort of) |
620 | if (/^([^ :]+):(.*)$/s) { | |
621 | my $v = "header_" . lc($1); | |
622 | my $d = $2; | |
623 | $d =~ s/^\s*//; | |
624 | $d =~ s/\s*$//; | |
625 | $self->{_vars}{$v} .= (defined($self->{_vars}{$v}) ? "\n" : '') . $d; | |
626 | $self->{_vars}{received_count}++ if ($v eq 'header_received'); | |
627 | } | |
628 | # push header onto $message_headers var, following exim's rules | |
629 | $self->{_vars}{message_headers} .= | |
630 | (defined($self->{_vars}{message_headers}) ? "\n" : '') . $_; | |
631 | } | |
632 | close(I); | |
633 | ||
634 | if (length($self->{_vars}{"header_reply-to"}) > 0) { | |
635 | $self->{_vars}{reply_address} = $self->{_vars}{"header_reply-to"}; | |
636 | } else { | |
637 | $self->{_vars}{reply_address} = $self->{_vars}{header_from}; | |
638 | } | |
639 | ||
640 | $self->{_vars}{message_body_size} = | |
641 | (stat($self->{_path}.'/'.$self->{_message}.'-D'))[7] - 19; | |
642 | if ($self->{_vars}{message_body_size} < 0) { | |
643 | $self->{_vars}{message_size} = 0; | |
644 | } else { | |
645 | $self->{_vars}{message_size} += $self->{_vars}{message_body_size} + 1; | |
646 | } | |
647 | ||
5f970846 PH |
648 | $self->{_vars}{message_linecount} += $self->{_vars}{body_linecount}; |
649 | ||
650 | my $i = $self->{_vars}{message_size}; | |
651 | if ($i == 0) { $i = ""; } | |
652 | elsif ($i < 1024) { $i = sprintf("%d", $i); } | |
653 | elsif ($i < 10*1024) { $i = sprintf("%.1fK", $i / 1024); } | |
654 | elsif ($i < 1024*1024) { $i = sprintf("%dK", ($i+512)/1024); } | |
655 | elsif ($i < 10*1024*1024) { $i = sprintf("%.1fM", $i/(1024*1024)); } | |
656 | else { $i = sprintf("%dM", ($i + 512 * 1024)/(1024*1024)); } | |
657 | $self->{_vars}{shown_message_size} = $i; | |
658 | ||
059ec3d9 | 659 | return(1); |
8e669ac1 | 660 | } |
059ec3d9 PH |
661 | |
662 | # mimic exim's host_extract_port function - receive a ref to a scalar, | |
663 | # strip it of port, return port | |
664 | sub _get_host_and_port { | |
665 | my $self = shift; | |
666 | my $host = shift; # scalar ref, be careful | |
667 | ||
668 | if ($$host =~ /^\[([^\]]+)\](?:\:(\d+))?$/) { | |
669 | $$host = $1; | |
670 | return($2 || 0); | |
671 | } elsif ($$host =~ /^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})(?:\.(\d+))?$/) { | |
672 | $$host = $1; | |
673 | return($2 || 0); | |
674 | } elsif ($$host =~ /^([\d\:]+)(?:\.(\d+))?$/) { | |
675 | $$host = $1; | |
676 | return($2 || 0); | |
677 | } | |
678 | # implicit else | |
679 | return(0); | |
680 | } | |
681 | ||
682 | sub print_message { | |
683 | my $self = shift; | |
684 | my $fh = shift || \*STDOUT; | |
685 | return if ($self->{_delivered}); | |
686 | ||
687 | if ($self->{_output_idonly}) { | |
5f970846 PH |
688 | print $fh $self->{_message}; |
689 | foreach my $v (@{$self->{_show_vars}}) { | |
690 | print $fh " $v='", $self->get_var($v), "'"; | |
691 | } | |
692 | print $fh "\n"; | |
059ec3d9 PH |
693 | return; |
694 | } | |
8e669ac1 | 695 | |
059ec3d9 PH |
696 | if ($self->{_output_long} || $self->{_output_flatq}) { |
697 | my $i = int($self->{_vars}{message_age} / 60); | |
698 | if ($i > 90) { | |
699 | $i = int(($i+30)/60); | |
700 | if ($i > 72) { printf $fh "%2dd ", int(($i+12)/24); } | |
701 | else { printf $fh "%2dh ", $i; } | |
702 | } else { printf $fh "%2dm ", $i; } | |
703 | ||
5f970846 PH |
704 | if ($self->{_output_flatq} && $self->{_show_vars}) { |
705 | print $fh join(';', | |
706 | map { "$_='".$self->get_var($_)."'" } | |
707 | (@{$self->{_show_vars}}) | |
708 | ); | |
709 | } else { | |
710 | printf $fh "%5s", $self->{_vars}{shown_message_size}; | |
711 | } | |
712 | print $fh " "; | |
059ec3d9 PH |
713 | } |
714 | print $fh "$self->{_message} "; | |
715 | print $fh "From: " if ($self->{_output_brief}); | |
716 | print $fh "<$self->{_vars}{sender_address}>"; | |
717 | ||
718 | if ($self->{_output_long}) { | |
719 | print $fh " ($self->{_vars}{originator_login})" | |
720 | if ($self->{_vars}{sender_set_untrusted}); | |
8e669ac1 | 721 | |
059ec3d9 PH |
722 | # XXX exim contains code here to print spool format errors |
723 | print $fh " *** frozen ***" if ($self->{_vars}{deliver_freeze}); | |
724 | print $fh "\n"; | |
725 | ||
5f970846 | 726 | foreach my $v (@{$self->{_show_vars}}) { |
059ec3d9 PH |
727 | printf $fh " %25s = '%s'\n", $v, $self->get_var($v); |
728 | } | |
8e669ac1 | 729 | |
059ec3d9 PH |
730 | foreach my $r (keys %{$self->{_recips}}) { |
731 | next if ($self->{_del_tree}{$r} && $self->{_undelivered_only}); | |
732 | printf $fh " %s %s\n", $self->{_del_tree}{$r} ? "D" : " ", $r; | |
733 | } | |
734 | if ($self->{_show_generated}) { | |
735 | foreach my $r (keys %{$self->{_del_tree}}) { | |
736 | next if ($self->{_recips}{$r}); | |
737 | printf $fh " +D %s\n", $r; | |
738 | } | |
739 | } | |
740 | } elsif ($self->{_output_brief}) { | |
741 | my @r = (); | |
742 | foreach my $r (keys %{$self->{_recips}}) { | |
743 | next if ($self->{_del_tree}{$r}); | |
744 | push(@r, $r); | |
745 | } | |
746 | print $fh " To: ", join(';', @r); | |
b3f69ca8 | 747 | if ($self->{_show_vars} && scalar(@{$self->{_show_vars}})) { |
5f970846 PH |
748 | print $fh " Vars: ", join(';', |
749 | map { "$_='".$self->get_var($_)."'" } | |
750 | (@{$self->{_show_vars}}) | |
751 | ); | |
752 | } | |
059ec3d9 PH |
753 | } elsif ($self->{_output_flatq}) { |
754 | print $fh " *** frozen ***" if ($self->{_vars}{deliver_freeze}); | |
755 | my @r = (); | |
756 | foreach my $r (keys %{$self->{_recips}}) { | |
757 | next if ($self->{_del_tree}{$r}); | |
758 | push(@r, $r); | |
759 | } | |
760 | print $fh " ", join(' ', @r); | |
761 | } | |
762 | ||
763 | print $fh "\n"; | |
764 | } | |
765 | ||
766 | sub dump { | |
767 | my $self = shift; | |
768 | ||
769 | foreach my $k (sort keys %$self) { | |
770 | my $r = ref($self->{$k}); | |
771 | if ($r eq 'ARRAY') { | |
772 | printf "%20s <<EOM\n", $k; | |
773 | print @{$self->{$k}}, "EOM\n"; | |
774 | } elsif ($r eq 'HASH') { | |
775 | printf "%20s <<EOM\n", $k; | |
776 | foreach (sort keys %{$self->{$k}}) { | |
777 | printf "%20s %s\n", $_, $self->{$k}{$_}; | |
778 | } | |
779 | print "EOM\n"; | |
780 | } else { | |
781 | printf "%20s %s\n", $k, $self->{$k}; | |
782 | } | |
783 | } | |
784 | } | |
785 | ||
786 | } # BEGIN | |
787 | ||
788 | sub ext_usage { | |
789 | if ($ARGV[0] =~ /^--help$/i) { | |
790 | require Config; | |
791 | $ENV{PATH} .= ":" unless $ENV{PATH} eq ""; | |
792 | $ENV{PATH} = "$ENV{PATH}$Config::Config{'installscript'}"; | |
793 | #exec("perldoc", "-F", "-U", $0) || exit 1; | |
794 | $< = $> = 1 if ($> == 0 || $< == 0); | |
795 | exec("perldoc", $0) || exit 1; | |
796 | # make parser happy | |
797 | %Config::Config = (); | |
798 | } elsif ($ARGV[0] =~ /^--version$/i) { | |
799 | print "$p_name version $p_version\n\n$p_cp\n"; | |
800 | } else { | |
801 | return; | |
802 | } | |
803 | ||
804 | exit(0); | |
805 | } | |
806 | ||
807 | __END__ | |
808 | ||
809 | =head1 NAME | |
810 | ||
811 | exipick - display messages from Exim queue based on a variety of criteria | |
812 | ||
813 | =head1 USAGE | |
814 | ||
815 | exipick [--help|--version] | [-spool <spool>] [-and|-or] [-bp|-bpa|-bpc|-bpr|-bpra|-bpru|-bpu] [<criterion> [<criterion> ...]] | |
816 | ||
817 | =head1 DESCRIPTION | |
818 | ||
bf759a8b | 819 | exipick is designed to display the contents of a Exim mail spool based on user-specified criteria. It is designed to mimic the output of 'exim -bp' (or any of the other -bp* options) and Exim's spec.txt should be used to learn more about the exact format of the output. The criteria are formed by creating comparisons against characteristics of the messages, for instance $message_size, $sender_helo_name, or $message_headers. |
059ec3d9 PH |
820 | |
821 | =head1 OPTIONS | |
822 | ||
823 | =over 4 | |
824 | ||
bf759a8b | 825 | =item --spool |
059ec3d9 | 826 | |
bf759a8b | 827 | The path to Exim's spool directory. In general usage you should set the $spool variable in the script to your site's main spool directory (and if exipick was installed from the Exim distribution, this is done by default), but this option is useful for alternate installs, or installs on NFS servers, etc. |
059ec3d9 | 828 | |
bf759a8b | 829 | =item --and |
059ec3d9 PH |
830 | |
831 | A message will be displayed only if it matches all of the specified criteria. This is the default. | |
832 | ||
bf759a8b | 833 | =item --or |
059ec3d9 PH |
834 | |
835 | A message will be displayed if it matches any of the specified criteria. | |
836 | ||
af66f652 PH |
837 | =item --caseful |
838 | ||
839 | By default criteria using the '=' operator are caseless. Specifying this option make them respect case. | |
840 | ||
5f970846 PH |
841 | =item --show-vars <variable>[,<variable>...] |
842 | ||
843 | Cause the value of each specified variable to be displayed for every message dispayed. For instance, the command "exipick --show-vars '$sender_ident' 'sender_host_address eq 127.0.01'" will show the ident string for every message submitted via localhost. How exactly the variable value is diplayed changes according to what output format you specify. | |
844 | ||
845 | =item --show-rules | |
846 | ||
847 | If specified the internal representation of each message criteria is shown. This is primarily used for debugging purposes. | |
848 | ||
849 | ==item --show-tests | |
850 | ||
851 | If specified, for every message (regardless of matching criteria) the criteria's actual value is shown and the compiled internal eval is shown. This is used primarily for debugging purposes. | |
852 | ||
853 | =item --flatq | |
854 | ||
855 | Change format of output so that every message is on a single line. Useful for parsing with tools such as sed, awk, cut, etc. | |
856 | ||
059ec3d9 PH |
857 | =item The -bp* options all control how much information is displayed and in what manner. They all match the functionality of the options of the same name in Exim. Briefly: |
858 | ||
859 | =item -bp display the matching messages in 'mailq' format. | |
860 | ||
861 | =item -bpa ... with generated addresses as well. | |
862 | ||
863 | =item -bpc ... just show a count of messages. | |
864 | ||
865 | =item -bpr ... do not sort. | |
866 | ||
867 | =item -bpra ... with generated addresses, unsorted. | |
868 | ||
869 | =item -bpru ... only undelivered addresses, unsorted. | |
870 | ||
871 | =item -bpu ... only undelivered addresses. | |
872 | ||
873 | Please see Exim's spec.txt for details on the format and information displayed with each option. | |
874 | ||
875 | =item The following options are included for compatibility with the 'exiqgrep' utility: | |
876 | ||
877 | =item -f <regexp> Same as '$sender_address = <regexp>' | |
878 | ||
879 | =item -r <regexp> Same as '$recipients = <regexp>' | |
880 | ||
5f970846 PH |
881 | =item -s <string> Same as '$shown_message_size eq <string>' |
882 | ||
059ec3d9 PH |
883 | =item -y <seconds> Same as '$message_age < <seconds>' |
884 | ||
885 | =item -o <seconds> Same as '$message_age > <seconds>' | |
886 | ||
887 | =item -z Same as '$deliver_freeze' | |
888 | ||
889 | =item -x Same as '!$deliver_freeze' | |
890 | ||
891 | =item -c Display count of matches only | |
892 | ||
893 | =item -l Display in long format (default) | |
894 | ||
895 | =item -i Display message IDs only | |
896 | ||
897 | =item -b Display brief format only | |
898 | ||
899 | Please see the 'exiqgrep' documentation for more details on the behaviour and output format produced by these options | |
900 | ||
901 | =item <criterion> | |
902 | ||
bf759a8b | 903 | The criteria are used to determine whether or not a given message should be displayed. The criteria are built using variables containing information about the individual messages (see VARIABLES section for list and descriptions of available variables). Each criterion is evaluated for each message in the spool and if all (by default) criteria match or (if --or option is specified) any criterion matches, the message is displayed. See VARIABLE TYPES for explanation of types of variables and the evaluations that can be performed on them and EXAMPLES section for complete examples. |
059ec3d9 PH |
904 | |
905 | The format of a criterion is explained in detail below, but a key point to make is that the variable being compared must always be on the left side of the comparison. | |
906 | ||
907 | If no criteria are provided all messages in the queue are displayed (in this case the output of exipick should be identical to the output of 'exim -bp') | |
908 | ||
909 | =item --help | |
910 | ||
911 | This screen. | |
912 | ||
913 | =item --version | |
914 | ||
915 | Version info. | |
916 | ||
917 | =back | |
918 | ||
919 | =head1 VARIABLE TYPES | |
920 | ||
921 | Although there are variable types defined, they are defined only by the type of data that gets put into them. They are internally typeless. Because of this it is perfectly legal to perform a numeric comparison against a string variable, although the results will probably be meaningless. | |
922 | ||
923 | =over 4 | |
924 | ||
925 | =item NUMERIC | |
926 | ||
927 | Variable of the numeric type can be of integer or float. Valid comparisons are <, <=, >, >=, ==, and !=. | |
928 | ||
bf759a8b | 929 | The numbers specified in the criteria can have a suffix of d, h, m, s, M, K, or B, in which case the number will be mulitplied by 86400, 3600, 60, 1, 1048576, 1024, or 1 respectively. These suffixes are case sensitive. While these are obviously designed to aid in date and size calculations, they are not restricted to variables of their respective types. That is, though it's odd it's legal to create a criterion of a message being around for 3 kiloseconds: '$message_age >= 3K'. |
059ec3d9 PH |
930 | |
931 | =item BOOLEAN | |
932 | ||
bf759a8b | 933 | Variables of the boolean type are very easy to use in criteria. The format is either the variable by itself or the variable negated with a ! sign. For instance, '$deliver_freeze' matches if the message in question is frozen, '!$deliver_freeze' matches if message is not frozen. |
059ec3d9 PH |
934 | |
935 | =item STRING | |
936 | ||
bf759a8b | 937 | String variables are basically defined as those that are neither numeric nor boolean and can contain any data. The string operators are =, eq, ne, =~, and !~. With the exception of '=', the operators all match the functionality of the like-named perl operators. |
059ec3d9 | 938 | |
bf759a8b | 939 | The simplest form is a bare string regular expression, represented by the operator '='. The value used for the comparison will be evaluated as a regular expression and can be as simple or as complex as desired. For instance '$sender_helo_name = example' on the simple end or '$sender_helo_name = ^aol\.com$' on the more complex end. This comparison is caseless by default, but see the --caseful option to change this. |
059ec3d9 | 940 | |
bf759a8b | 941 | Slightly more complex is the string comparison with the operators 'eq' and 'ne' for equal and not equal, respectively. '$sender_helo_name eq hotmail.com' is true for messages with the exact helo string "hotmail.com", while '$sender_helo_name ne hotmail.com' is true for any message with a helo string other than "hotmail.com". |
059ec3d9 | 942 | |
bf759a8b | 943 | The most complex and the most flexible format are straight regular expressions with the operators '=~' and '!~'. The value in the criteria is expected to be a correctly formatted perl regular expression B<including the regexp delimiters (usually //)>. The criterion '$sender_helo_name !~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/' matches for any message which does not have an IP address for its helo string. |
059ec3d9 PH |
944 | |
945 | =back | |
946 | ||
947 | =head1 VARIABLES | |
948 | ||
bf759a8b | 949 | With a few exceptions the available variables match Exim's internal expansion variables in both name and exact contents. There are a few notable additions and format deviations which are noted below. Although a brief explanation is offered below, Exim's spec.txt should be consulted for full details. It is important to remember that not every variable will be defined for every message. For example, $sender_host_port is not defined for messages not received from a remote host. |
059ec3d9 PH |
950 | |
951 | In the list below, '.' denotes standard messages with contents matching Exim's variable, '#' denotes standard variables with non-standard contents, and '+' denotes a non-standard variable. | |
952 | ||
953 | =head2 Boolean variables | |
954 | ||
955 | =over 4 | |
956 | ||
bf759a8b | 957 | =item + $allow_unqualified_recipient |
059ec3d9 PH |
958 | |
959 | TRUE if unqualified recipient addresses are permitted in header lines. | |
960 | ||
bf759a8b | 961 | =item + $allow_unqualified_sender |
059ec3d9 PH |
962 | |
963 | TRUE if unqualified sender addresses are permitted in header lines. | |
964 | ||
bf759a8b | 965 | =item + $deliver_freeze |
059ec3d9 | 966 | |
bf759a8b | 967 | TRUE if the message is currently frozen. |
059ec3d9 | 968 | |
bf759a8b | 969 | =item . $first_delivery |
059ec3d9 | 970 | |
bf759a8b | 971 | TRUE if the message has never been deferred. |
059ec3d9 | 972 | |
bf759a8b | 973 | =item . $manually_thawed |
059ec3d9 PH |
974 | |
975 | TRUE when the message has been manually thawed. | |
976 | ||
bf759a8b | 977 | =item + $dont_deliver |
059ec3d9 PH |
978 | |
979 | TRUE if, under normal circumstances, Exim will not try to deliver the message. | |
980 | ||
bf759a8b PH |
981 | =item . $host_lookup_deferred |
982 | ||
983 | TRUE if there was an attempt to look up the host's name from its IP address, but an error occurred that during the attempt. | |
984 | ||
985 | =item . $host_lookup_failed | |
059ec3d9 | 986 | |
bf759a8b | 987 | TRUE if there was an attempt to look up the host's name from its IP address, but the attempt returned a negative result. |
059ec3d9 | 988 | |
bf759a8b | 989 | =item + $local_error_message |
059ec3d9 PH |
990 | |
991 | TRUE if the message is a locally-generated error message. | |
992 | ||
bf759a8b | 993 | =item + $sender_local |
059ec3d9 PH |
994 | |
995 | TRUE if the message was locally generated. | |
996 | ||
bf759a8b | 997 | =item + $sender_set_untrusted |
059ec3d9 PH |
998 | |
999 | TRUE if the envelope sender of this message was set by an untrusted local caller. | |
1000 | ||
bf759a8b | 1001 | =item . $tls_certificate_verified |
059ec3d9 PH |
1002 | |
1003 | TRUE if a TLS certificate was verified when the message was received. | |
1004 | ||
1005 | =back | |
1006 | ||
1007 | =head2 Numeric variables | |
1008 | ||
1009 | =over 4 | |
1010 | ||
bf759a8b | 1011 | =item . $body_linecount |
059ec3d9 PH |
1012 | |
1013 | The number of lines in the message's body. | |
1014 | ||
bf759a8b | 1015 | =item . $body_zerocount |
059ec3d9 PH |
1016 | |
1017 | The number of binary zero bytes in the message's body. | |
1018 | ||
bf759a8b | 1019 | =item + $deliver_frozen_at |
059ec3d9 PH |
1020 | |
1021 | The epoch time at which message was frozen. | |
1022 | ||
bf759a8b | 1023 | =item . $interface_port |
059ec3d9 PH |
1024 | |
1025 | The local port number if network-originated messages. | |
1026 | ||
bf759a8b | 1027 | =item . $message_age |
059ec3d9 PH |
1028 | |
1029 | The number of seconds since the message was received. | |
1030 | ||
bf759a8b | 1031 | =item . $message_body_size |
059ec3d9 PH |
1032 | |
1033 | The size of the body in bytes. | |
1034 | ||
5f970846 PH |
1035 | =item . $message_linecount |
1036 | ||
1037 | The number of lines in the entire message (body and headers). | |
1038 | ||
bf759a8b | 1039 | =item . $message_size |
059ec3d9 PH |
1040 | |
1041 | The size of the message in bytes. | |
1042 | ||
bf759a8b | 1043 | =item . $originator_gid |
059ec3d9 PH |
1044 | |
1045 | The group id under which the process that called Exim was running as when the message was received. | |
1046 | ||
bf759a8b | 1047 | =item . $originator_uid |
059ec3d9 PH |
1048 | |
1049 | The user id under which the process that called Exim was running as when the message was received. | |
1050 | ||
bf759a8b | 1051 | =item . $received_count |
059ec3d9 PH |
1052 | |
1053 | The number of Received: header lines in the message. | |
1054 | ||
5f970846 | 1055 | =item . $received_time |
059ec3d9 PH |
1056 | |
1057 | The epoch time at which the message was received. | |
1058 | ||
bf759a8b | 1059 | =item . $recipients_count |
059ec3d9 | 1060 | |
af66f652 PH |
1061 | The number of envelope recipients for the message. |
1062 | ||
bf759a8b | 1063 | =item + $recipients_del_count |
af66f652 PH |
1064 | |
1065 | The number of envelope recipients for the message which have already been delivered. Note that this is the count of original recipients to which the message has been delivered. It does not include generated addresses so it is possible that this number will be less than the number of addresses in the recipients_del string. | |
1066 | ||
bf759a8b | 1067 | =item + $recipients_undel_count |
af66f652 PH |
1068 | |
1069 | The number of envelope recipients for the message which have not yet been delivered. | |
059ec3d9 | 1070 | |
bf759a8b | 1071 | =item . $sender_host_port |
059ec3d9 PH |
1072 | |
1073 | The port number that was used on the remote host for network-originated messages. | |
1074 | ||
bf759a8b | 1075 | =item + $warning_count |
059ec3d9 PH |
1076 | |
1077 | The number of delay warnings which have been sent for this message. | |
1078 | ||
1079 | =back | |
1080 | ||
1081 | =head2 String variables | |
1082 | ||
1083 | =over 4 | |
1084 | ||
bf759a8b | 1085 | =item . $acl_c0-$acl_c9, $acl_m0-$acl_m9 |
059ec3d9 PH |
1086 | |
1087 | User definable variables. | |
1088 | ||
bf759a8b | 1089 | =item . $authenticated_id |
059ec3d9 PH |
1090 | |
1091 | Optional saved information from authenticators, or the login name of the calling process for locally submitted messages. | |
1092 | ||
bf759a8b | 1093 | =item . $authenticated_sender |
059ec3d9 PH |
1094 | |
1095 | The value of AUTH= param for smtp messages, or a generated value from the calling processes login and qualify domain for locally submitted messages. | |
1096 | ||
bf759a8b PH |
1097 | =item + $bmi_verdicts |
1098 | ||
1099 | I honestly don't know what the format of this variable is. It only exists if you have Exim compiled with WITH_CONTENT_SCAN and EXPERIMENTAL_BRIGHTMAIL (and, you know, pay Symantec/Brightmail a bunch of money for the client libs and a server to use them with). | |
1100 | ||
1101 | =item + $each_recipients | |
1102 | ||
1103 | This is a psuedo variable which allows you to apply a criterion against each address in $recipients individually. This allows you to create criteria against which every individual recipient is tested. For instance, '$recipients =~ /aol.com/' will match if any of the recipient addresses contain the string "aol.com". However, with the criterion '$each_recipients =~ /@aol.com$/', a message will only match if B<every> recipient matches that pattern. Note that this obeys --and or --or being set. Using it with --or is very similar to just matching against $recipients, but with the added benefit of being able to use anchors at the beginning and end of each recipient address. | |
1104 | ||
1105 | =item + $each_recipients_del | |
1106 | ||
1107 | Like $each_recipients, but for the $recipients_del variable. | |
1108 | ||
1109 | =item + $each_recipients_undel | |
1110 | ||
1111 | Like $each_recipients, but for the $recipients_undel variable. | |
1112 | ||
1113 | =item # $header_* | |
059ec3d9 PH |
1114 | |
1115 | The value of the same named message header, for example header_to or header_reply-to. These variables are really closer to Exim's rheader_* variables, with the exception that leading and trailing space is removed. | |
1116 | ||
bf759a8b | 1117 | =item . $interface_address |
059ec3d9 PH |
1118 | |
1119 | The address of the local IP interface for network-originated messages. | |
1120 | ||
bf759a8b | 1121 | =item . $local_scan_data |
059ec3d9 PH |
1122 | |
1123 | The text returned by the local_scan() function when a message is received. | |
1124 | ||
bf759a8b | 1125 | =item # $message_body |
059ec3d9 PH |
1126 | |
1127 | The message's body. Unlike Exim's variable of the same name, this variable contains the entire message body. The logic behind this is that the message body is not read unless it is specifically referenced, so under normal circumstances it is not a penalty, but when you need the entire body you need the entire body. Like Exim's copy, newlines and nulls are replaced by spaces. | |
1128 | ||
bf759a8b | 1129 | =item . $message_headers |
059ec3d9 PH |
1130 | |
1131 | A concatenation of all the header lines except for lines added by routers or transports. | |
1132 | ||
ee744174 | 1133 | =item . $message_exim_id, $message_id |
059ec3d9 | 1134 | |
ee744174 | 1135 | The unique message id that is used by Exim to identify the message. $message_id is deprecated as of Exim 4.53. |
059ec3d9 | 1136 | |
bf759a8b | 1137 | =item + $originator_login |
059ec3d9 PH |
1138 | |
1139 | The login of the process which called Exim. | |
1140 | ||
bf759a8b | 1141 | =item . $received_protocol |
059ec3d9 PH |
1142 | |
1143 | The name of the protocol by which the message was received. | |
1144 | ||
bf759a8b | 1145 | =item # $recipients |
059ec3d9 PH |
1146 | |
1147 | The list of envelope recipients for a message. Unlike Exim's version, this variable always contains every envelope recipient of the message. The recipients are separated by a comma and a space. | |
1148 | ||
bf759a8b | 1149 | =item + $recipients_del |
059ec3d9 | 1150 | |
af66f652 | 1151 | The list of delivered envelope recipients for a message. This non-standard variable is in the same format as recipients and contains the list of already-delivered recipients including any generated addresses. |
059ec3d9 | 1152 | |
bf759a8b | 1153 | =item + $recipients_undel |
059ec3d9 PH |
1154 | |
1155 | The list of undelivered envelope recipients for a message. This non-standard variable is in the same format as recipients and contains the list of undelivered recipients. | |
1156 | ||
bf759a8b | 1157 | =item . $reply_address |
059ec3d9 PH |
1158 | |
1159 | The contents of the Reply-To: header line if one exists and it is not empty, or otherwise the contents of the From: header line. | |
1160 | ||
bf759a8b | 1161 | =item . $sender_address |
059ec3d9 PH |
1162 | |
1163 | The sender's address that was received in the message's envelope. For bounce messages, the value of this variable is the empty string. | |
1164 | ||
bf759a8b | 1165 | =item . $sender_address_domain |
059ec3d9 | 1166 | |
bf759a8b | 1167 | The domain part of $sender_address. |
059ec3d9 | 1168 | |
bf759a8b | 1169 | =item . $sender_address_local_part |
059ec3d9 | 1170 | |
bf759a8b | 1171 | The local part of $sender_address. |
059ec3d9 | 1172 | |
bf759a8b | 1173 | =item . $sender_helo_name |
059ec3d9 PH |
1174 | |
1175 | The HELO or EHLO value supplied for smtp or bsmtp messages. | |
1176 | ||
bf759a8b | 1177 | =item . $sender_host_address |
059ec3d9 PH |
1178 | |
1179 | The remote host's IP address. | |
1180 | ||
bf759a8b | 1181 | =item . $sender_host_authenticated |
059ec3d9 PH |
1182 | |
1183 | The name of the authenticator driver which successfully authenticated the client from which the message was received. | |
1184 | ||
bf759a8b | 1185 | =item . $sender_host_name |
059ec3d9 PH |
1186 | |
1187 | The remote host's name as obtained by looking up its IP address. | |
1188 | ||
bf759a8b | 1189 | =item . $sender_ident |
059ec3d9 PH |
1190 | |
1191 | The identification received in response to an RFC 1413 request for remote messages, the login name of the user that called Exim for locally generated messages. | |
1192 | ||
5f970846 PH |
1193 | =item + $shown_message_size |
1194 | ||
1195 | This non-standard variable contains the formatted size string. That is, for a message whose $message_size is 66566 bytes, $shown_message_size is 65K. | |
1196 | ||
bf759a8b PH |
1197 | =item . $smtp_active_hostname |
1198 | ||
1199 | The value of the active host name when the message was received, as specified by the "smtp_active_hostname" option. | |
1200 | ||
1201 | =item . $spam_score | |
1202 | ||
1203 | The spam score of the message, for example '3.4' or '30.5'. (Requires exiscan or WITH_CONTENT_SCAN) | |
1204 | ||
1205 | =item . $spam_score_int | |
1206 | ||
1207 | The spam score of the message, multiplied by ten, as an integer value. For instance '34' or '305'. (Requires exiscan or WITH_CONTENT_SCAN) | |
1208 | ||
1209 | =item . $tls_cipher | |
059ec3d9 PH |
1210 | |
1211 | The cipher suite that was negotiated for encrypted SMTP connections. | |
1212 | ||
bf759a8b | 1213 | =item . $tls_peerdn |
059ec3d9 PH |
1214 | |
1215 | The value of the Distinguished Name of the certificate if Exim is configured to request one. | |
1216 | ||
1217 | =back | |
1218 | ||
1219 | =head1 EXAMPLES | |
1220 | ||
1221 | =over 4 | |
1222 | ||
bf759a8b | 1223 | =item exipick '$deliver_freeze' |
059ec3d9 PH |
1224 | |
1225 | Display only frozen messages. | |
1226 | ||
bf759a8b | 1227 | =item exipick '$received_protocol eq asmtp' '$message_age < 20m' |
059ec3d9 | 1228 | |
bf759a8b | 1229 | Display only messages which were delivered over an authenticated smtp session in the last 20 minutes. |
059ec3d9 | 1230 | |
bf759a8b | 1231 | =item exipick -bpc '$message_size > 200K' |
059ec3d9 PH |
1232 | |
1233 | Display a count of messages in the queue which are over 200 kilobytes in size. | |
1234 | ||
bf759a8b | 1235 | =item exipick -or '$sender_helo_name =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/' '$sender_helo_name = _' |
059ec3d9 PH |
1236 | |
1237 | Display message which have a HELO string which either is an IP address or contains an underscore. | |
1238 | ||
1239 | =back | |
1240 | ||
1241 | =head1 REQUIREMENTS | |
1242 | ||
bf759a8b | 1243 | None that I know of, except an Exim installation. Your life will also be a lot easier if you set $spool at the top of the script to your install's spool directory (assuming this was not done automatically by the Exim install process). |
059ec3d9 PH |
1244 | |
1245 | =head1 ACKNOWLEDGEMENTS | |
1246 | ||
1247 | Although I conceived of the concept for this program independently, the name 'exipick' was taken from the Exim WishList and was suggested by Jeffrey Goldberg. | |
1248 | ||
1249 | Thank you to Philip Hazel for writing Exim. Of course this program exists because of Exim, but more specifically the message parsing code is based on Exim's and some of this documentation was copy/pasted from Exim's. | |
1250 | ||
1251 | =head1 CONTACT | |
1252 | ||
1253 | =over 4 | |
1254 | ||
1255 | =item EMAIL: proj-exipick@jetmore.net | |
1256 | ||
1257 | =item HOME: jetmore.org/john/code/#exipick | |
1258 | ||
1259 | =back | |
1260 | ||
1261 | =cut |