3 # Utility for searching and displaying queue information.
4 # Written by Matt Hubbard 15 August 2002
6 # Except when they appear in comments, the following placeholders in this
7 # source are replaced when it is turned into a runnable script:
15 # Routine for extracting the UTC timestamp from message ID
16 # lifted from eximstat utility
23 # Have this variable point to your exim binary.
24 my $exim = 'BIN_DIRECTORY/exim';
31 (0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, # 0-9
32 0,10,11,12,13,14,15,16,17,18,19,20, # A-K
33 21,22,23,24,25,26,27,28,29,30,31,32, # L-W
34 33,34,35, 0, 0, 0, 0, 0, # X-Z
35 0,36,37,38,39,40,41,42,43,44,45,46, # a-k
36 47,48,49,50,51,52,53,54,55,56,57,58, # l-w
40 if ($^O eq 'darwin') { # aka MacOS X
46 getopts('hf:r:y:o:s:zxlibRc',\%opt);
47 if ($opt{h}) { &help; exit;}
49 # Read message queue output into hash
51 # Identify which messages match selection criteria
53 # Print matching data according to display option.
60 Exim message queue display utility.
65 -f <regexp> Match sender address sender (field is "< >" wrapped)
66 -r <regexp> Match recipient address
67 -s <regexp> Match against the size field from long output
68 -y <seconds> Message younger than
69 -o <seconds> Message older than
70 -z Frozen messages only (exclude non-frozen)
71 -x Non-frozen messages only (exclude frozen)
73 [ NB: for regexps, provided string sits in /<string>/ ]
76 -c Display match count
77 -l Long Format [Default]
85 open(QUEUE,"$exim $eargs |") or die("Error openning pipe: $!\n");
89 #Should be 1st line of record, if not error.
90 if ($line =~ /^\s*(\w+)\s+((?:\d+(?:\.\d+)?[A-Z]?)?)\s*(\w{6}-\w{6}-\w{2})\s+(<.*?>)/) {
95 $id{$msg}{birth} = &msg_utc($msg);
96 $id{$msg}{ages} = time - $id{$msg}{birth};
97 if ($line =~ /\*\*\* frozen \*\*\*$/) {
98 $id{$msg}{frozen} = 1;
100 $id{$msg}{frozen} = 0;
102 while(<QUEUE> =~ /\s+(.*?\@.*)$/) {
103 push(@{$id{$msg}{rcpt}},$1);
105 # Increment message counter.
108 print STDERR "Line mismatch: $line\n"; exit 1;
111 close(QUEUE) or die("Error closing pipe: $!\n");
115 foreach my $msg (keys(%id)) {
117 # Match sender address
118 next unless ($id{$msg}{from} =~ /$opt{f}/);
121 # Match any recipient address
123 foreach my $rcpt (@{$id{$msg}{rcpt}}) {
124 $match++ if ($rcpt =~ /$opt{r}/);
126 next unless ($match);
129 # Match against the size string.
130 next unless ($id{$msg}{size} =~ /$opt{s}/);
134 next unless ($id{$msg}{ages} < $opt{y});
138 next unless ($id{$msg}{ages} > $opt{o});
142 next unless ($id{$msg}{frozen});
146 next if ($id{$msg}{frozen});
148 # Here's what we do to select the record.
149 # Should only get this far if the message passed all of
152 # Increment match counter.
159 printf("%d matches out of %d messages\n",$mcount,$count);
162 foreach my $msg (sort { $opt{R} ? $id{$b}{birth} <=> $id{$a}{birth} : $id{$a}{birth} <=> $id{$b}{birth} } keys(%id) ) {
163 if (exists($id{$msg}{d})) {
169 printf("%s From: %s To: %s\n",$msg,$id{$msg}{from},join(';',@{$id{$msg}{rcpt}}))
171 # Otherwise Long format attempted duplication of original format.
172 printf("%3s %5s %s %s%s\n",$id{$msg}{age},$id{$msg}{size},$msg,$id{$msg}{from},$id{$msg}{frozen} ? " *** frozen ***" : "");
173 foreach my $rcpt (@{$id{$msg}{rcpt}}) {
174 printf(" %s\n",$rcpt);
183 foreach my $msg (keys(%id)) {
184 print "$id{$msg}{birth} $msg\tAge: $id{$msg}{age}\tSize: $id{$msg}{size}\tFrom: $id{$msg}{from}\tTo: " . join(" ",@{$id{$msg}{rcpt}}). "\n";
189 my $id = substr((pop @_), 0, 6);
191 my @c = split(//, $id);
192 while($#c >= 0) { $s = $s * $base + $tab62[ord(shift @c) - ord('0')] }