-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrepmail.old
executable file
·1115 lines (860 loc) · 26.3 KB
/
grepmail.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl -w
# grepmail
$VERSION = 4.1;
# Grepmail searches a normal, gzip'd, tzip'd, or bzip2'd mailbox for a given
# regular expression and returns those emails that match the query. It also
# supports piped compressed or ascii input, and searches constrained by date.
# If you would like to be notified of updates, send email to me at
# [email protected]. The latest version is always at
# http://www.cs.virginia.edu/~dwc3q/code/.
# Do a pod2text on this file to get full documentation, or pod2man to get
# man pages.
# Written by David Coppit ([email protected],
# http://www.cs.virginia.edu/~dwc3q/index.html)
# Please send me any modifications you make. (for the better, that is. :) I
# have a suite of tests that I can give you if you ask. Keep in mind that I'm
# likely to turn down obscure features to avoid including everything but the
# kitchen sink.
# This code is distributed under the GNU General Public License (GPL). See
# http://www.opensource.org/gpl-license.html and http://www.opensource.org/.
# Notes:
# It turns out that -h, -b, and -v have some nasty feature interaction. Here's
# a table of how matching should occur for each combination of flags:
#
# B, H,!V
# Match if body and header matches
# B,!H,!V
# Match if body matches -- don't care about header
# !B, H,!V
# Match if header matches -- don't care about body
# -V strictly inverts each of the above cases.
#
# The best way to think about this is using Venn diagrams. (Especially when
# trying to figure out whether the header uniquely determines whether the
# email matches.)
require 5.00396;
use vars qw(%opts $pattern $commandLine $VERSION);
use Getopt::Std;
# We need to do this early to check for the -D flag when setting the DEBUG
# constant
BEGIN
{
$commandLine = "$0 @ARGV";
# Print usage error if no arguments given
print "No arguments given. grepmail -h for help.\n" and exit if (!@ARGV);
# So we don't have to test whether they are defined later.
$opts{'D'} = $opts{'d'} = $opts{'e'} = $opts{'i'} = $opts{'q'} = 0;
$opts{'h'} = $opts{'b'} = $opts{'v'} = $opts{'l'} = $opts{'r'} = 0;
$opts{'M'} = $opts{'m'} = 0;
getopt("ed",\%opts);
}
use constant DEBUG => $opts{'D'} || 0;
use strict;
use FileHandle;
use Carp;
sub dprint
{
return unless DEBUG;
my $message = join '',@_;
my @lines = split /\n/, $message;
foreach my $line (@lines)
{
print "DEBUG: $line\n";
}
}
#-------------------------------------------------------------------------------
sub cleanExit
{
my $message;
$message = shift || "Cancelled";
print STDERR "grepmail: $message.\n";
exit;
}
#-------------------------------------------------------------------------------
dprint "Command line was:";
dprint " $commandLine";
# At this point, we have 4 cases:
# - The -d was specified without a pattern before it, in which case $opts{d}
# will be set. An implicit "." is used unless -e was specified.
# - The pattern is in $ARGV[0], and -d is in $ARGV[1]
# - There is no -d in $ARGV[1], and a pattern or file is in $ARGV[0]. Take
# is as a pattern if -e was not given.
# - They did something like "grepmail -h", in which case do nothing
if ($opts{'d'})
{
$pattern = "." unless $opts{'e'};
}
elsif ($#ARGV > 0 && $ARGV[1] eq "-d")
{
$pattern = shift @ARGV;
getopt("d",\%opts);
}
elsif (!$opts{'e'} && @ARGV)
{
$pattern = shift @ARGV;
}
if (DEBUG)
{
dprint "Options are:";
foreach my $i (keys %opts)
{
dprint " $i: $opts{$i}";
}
dprint "INC is:";
foreach my $i (@INC)
{
dprint " $i";
}
}
if ($opts{'e'})
{
print "You specified two search patterns.\n" and exit if defined $pattern;
$pattern = $opts{'e'};
}
elsif (!defined $pattern)
{
# The only time you can't specify the pattern is when -d is being used.
# This should catch people who do "grepmail -h" thinking it's help.
print usage() and exit unless $opts{'d'};
$pattern = ".";
}
if ($opts{'d'})
{
unless (eval "require Date::Manip")
{
print "You specified -d, but do not have Date::Manip. Get it from CPAN.\n";
exit;
}
import Date::Manip;
}
############################# MAIN PROGRAM #####################################
# Make the pattern insensitive if we need to
$pattern = "(?i)$pattern" if ($opts{'i'});
my ($dateRestriction, $date1, $date2);
if ($opts{'d'})
{
($dateRestriction,$date1,$date2) = ProcessDate($opts{'d'});
}
else
{
$dateRestriction = "none";
}
dprint "PATTERN: $pattern\n";
dprint "FILES: @ARGV\n";
# Catch everything I can...
$SIG{PIPE} = \&cleanExit;
$SIG{HUP} = \&cleanExit;
$SIG{INT} = \&cleanExit;
$SIG{QUIT} = \&cleanExit;
$SIG{TERM} = \&cleanExit;
sub GetFiles(@);
# Get a list of files, taking recursion into account if necessary.
my @files = GetFiles(@ARGV);
# If the user provided input files...
if (@files)
{
HandleInputFiles(@files);
}
# Using STDIN
else
{
HandleStandardInput();
}
#-------------------------------------------------------------------------------
sub GetFiles(@)
{
my @args = @_;
# We just return what we were given unless we need to recurse subdirectories.
return @args unless defined $opts{'R'};
my @files;
foreach my $arg (@args)
{
if (-f $arg)
{
push @files, $arg;
}
elsif( -d $arg)
{
dprint "Recursing directory $arg looking for files...";
unless (eval "require File::Find;")
{
print "You specified -R, but do not have File::Find. Get it from CPAN.\n";
exit;
}
import File::Find;
# Gets all plain files in directory and descendents. Puts them in @files
$File::Find::name = '';
find(sub {push @files,"$File::Find::name" if -f $_}, $arg);
}
else
{
# Ignore unknown file types
}
}
return @files;
}
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
sub PutBackString
{
my $fileHandle = shift;
my $string = shift;
while ($string ne '')
{
my $char = chop $string;
$fileHandle->ungetc(ord($char));
}
}
#-------------------------------------------------------------------------------
sub IsMailbox
{
my $fileHandle = shift @_;
# Read whole paragraphs
local $/ = "\n\n";
# Read a paragraph to get the header. (If we have to.)
my $buffer = <$fileHandle>;
my $returnVal;
if ($buffer =~ /^From: /im && $buffer =~ /^Date: /im)
{
$returnVal = 1;
}
else
{
$returnVal = 0;
}
PutBackString($fileHandle,$buffer);
return $returnVal;
}
#-------------------------------------------------------------------------------
sub HandleInputFiles
{
my @files = @_;
# For each input file...
foreach my $file (@files)
{
dprint '#'x70;
dprint "Processing file $file";
# First of all, silently ignore empty files...
next if -z $file;
# ...and also ignore directories.
if (-d $file)
{
warn "** Skipping directory: '$file' **\n" unless $opts{'q'};
next;
}
my $fileHandle = new FileHandle;
# If it's not a compressed file
if ($file !~ /\.(gz|Z|bz2|tz)$/)
{
if (-B $file)
{
warn "** Skipping binary file: '$file' **\n" unless $opts{'q'};
next;
}
$fileHandle->open($file) || cleanExit "Can't open $file";
}
# If it is a tzipped file
elsif ($file =~ /\.tz$/)
{
dprint "Calling tzip to decompress file.";
$fileHandle->open("tzip -cd '$file'|")
or cleanExit "Can't execute tzip for file $file";
}
# If it is a gzipped file
elsif ($file =~ /\.(gz|Z)$/)
{
dprint "Calling gunzip to decompress file.";
$fileHandle->open("gunzip -c '$file'|")
or cleanExit "Can't execute gunzip for file $file";
}
# If it is a bzipped file
elsif ($file =~ /\.bz2$/)
{
dprint "Calling bzip2 to decompress file.";
$fileHandle->open("bzip2 -dc '$file'|")
or cleanExit "Can't execute bzip2 for file $file";
}
if (!IsMailbox($fileHandle))
{
warn "** Skipping non-mailbox ASCII file: '$file' **\n" unless $opts{'q'};
next;
}
ProcessMailFile($fileHandle,$file);
$fileHandle->close();
}
}
#-------------------------------------------------------------------------------
sub HandleStandardInput
{
dprint "Handling STDIN";
# We have to implement our own -B and -s, because STDIN gets eaten by them
binmode STDIN;
my ($testChars,$isEmpty,$isBinary);
my $fileHandle = new FileHandle;
$fileHandle->open('-');
$isEmpty = 0;
$isBinary = 0;
my $readResult = read($fileHandle,$testChars,200);
cleanExit "Can't read from standard input" unless defined $readResult;
$isEmpty = 1 if $readResult == 0;
cleanExit "No data on standard input" if $isEmpty;
# This isn't the "real" way to do -B, but it should work okay.
$isBinary = 1 if !$isEmpty &&
($testChars =~ /\000/ || $testChars =~ /[\200-\377]/);
PutBackString($fileHandle,$testChars);
# If it looks binary and is non-empty, try to uncompress it. Here we're
# calling another copy of grepmail through the open command.
if ($isBinary)
{
my $filter;
# This seems to work. I'm not sure what the "proper" way to distinguish
# between gzip'd and bzip2'd and tzip'd files is.
if ($testChars =~ /^TZ/)
{
dprint "Trying to decompress using tzip.";
$filter = "tzip -dc";
}
elsif ($testChars =~ /^BZ/)
{
dprint "Trying to decompress using bzip2.";
$filter = "bzip2 -d";
}
else
{
dprint "Trying to decompress using gunzip.";
$filter = "gunzip -c";
}
# Here we invoke another copy of grepmail with a filter in front. We
# send it the test characters, then whatever is left on stdin.
my $newGrepmail = new FileHandle;
$newGrepmail->open("|$filter|$commandLine")
or cleanExit "Can't execute '$filter' on stdin";
while (!eof $fileHandle)
{
my $temp = <$fileHandle>;
print $newGrepmail $temp;
}
close $newGrepmail;
}
# Otherwise process it directly
else
{
if (!IsMailbox($fileHandle))
{
warn "** Skipping non-mailbox standard input **\n" unless $opts{'q'};
return;
}
ProcessMailFile($fileHandle,"Standard input");
}
}
#-------------------------------------------------------------------------------
sub ProcessMailFile ($$)
{
my $fileHandle = shift @_;
my $fileName = shift @_;
# $header_buffer stores the header for the current email. $body_buffer stores
# the body for the current email. $next_header stores the header for the next
# email, in case we encounter it while looking for the end of the current
# email.
# I'd really like to call PushBackString instead of storing $next_header, but
# that way is much slower, and fails unpredictably. :( The next best solution
# is to write a wrapper class for FileHandle that allows pushbacks, and stores
# them in an internal buffer. Too much work for now though...
my ($numberOfMatches,$header_buffer,$body_buffer,$next_header);
$next_header = undef;
$numberOfMatches = 0;
# Read whole paragraphs
local $/ = "\n\n";
# This is the main loop. It's executed once for each email
while (!eof($fileHandle))
{
$header_buffer = '';
$body_buffer = '';
if (!defined $next_header)
{
dprint "Getting header for first email.";
$header_buffer = <$fileHandle>;
}
else
{
dprint "Processing buffered header.";
$header_buffer = $next_header;
undef $next_header;
}
if (DEBUG)
{
dprint '-'x70;
dprint "Processing email:";
$header_buffer =~ /^(From:.*)$/im;
dprint " $1";
$header_buffer =~ /^(Subject:.*)$/im;
dprint " $1";
}
# See if the header matches the pattern
my $matchesHeader = ($header_buffer =~ /$pattern/om) || 0;
#----------------------------------------------------------------
dprint "Checking for early printout based on header.";
# At this point, we might know enough to print the email.
if (
($opts{'h'} && $opts{'b'} && $opts{'v'} && !$matchesHeader) ||
($opts{'h'} && !$opts{'b'} && $opts{'v'} && !$matchesHeader) ||
(!$opts{'h'} && !$opts{'b'} && !$opts{'v'} && $matchesHeader)
)
{
dprint "Found a pattern match. Checking date.";
# Skip to the next email if the date is wrong.
if (!CheckDate(\$header_buffer))
{
dprint "Header failed date constraint.";
SkipToNextEmail($fileHandle,\$next_header);
next;
}
dprint "Doing an early printout based on header match.";
if ($opts{'l'})
{
print "$fileName\n";
# We can return since we found at least one email that matches.
return;
}
elsif ($opts{'r'})
{
$numberOfMatches++;
SkipToNextEmail($fileHandle,\$next_header);
}
else
{
GetRestOfBody($fileHandle,\$body_buffer,\$next_header);
PrintEmail($fileName,$header_buffer,$body_buffer);
}
next;
}
#----------------------------------------------------------------
dprint "Checking for early abort based on header.";
# We might have enough information to abort early
if (
($opts{'h'} && $opts{'b'} && !$opts{'v'} && !$matchesHeader) ||
($opts{'h'} && !$opts{'b'} && !$opts{'v'} && !$matchesHeader) ||
($opts{'h'} && !$opts{'b'} && $opts{'v'} && !$matchesHeader) ||
(!$opts{'h'} && !$opts{'b'} && $opts{'v'} && $matchesHeader)
)
{
dprint "Doing an early abort based on header.";
SkipToNextEmail($fileHandle,\$next_header);
next;
}
#----------------------------------------------------------------
dprint "Searching body for pattern.";
GetRestOfBody($fileHandle,\$body_buffer,\$next_header);
my $matchesBody;
# Ignore the MIME attachments if -M was specified
if ($opts{'M'} &&
(($header_buffer =~ /\nContent-Type:.*?boundary="([^"]*)"/is) ||
($header_buffer =~ /\nContent-Type:.*?boundary=([^\n]*)/is)))
{
my $boundary = $1;
# Escape any metacharacters
$boundary =~ s/([\?\*\$\|\^\+\[\]\(\)])/\\$1/g;
my $tempBody = $body_buffer;
# Strip out any attachments that aren't textual
$tempBody =~ s/$boundary\nContent-Type: (?!text).*?(?=$boundary)//igs;
$matchesBody = ($tempBody =~ /$pattern/om) || 0;
}
else
{
$matchesBody = ($body_buffer =~ /$pattern/om) || 0;
}
my $isMatch = (
($opts{'b'} && $opts{'h'} && $matchesBody && $matchesHeader) ||
($opts{'b'} && !$opts{'h'} && $matchesBody) ||
(!$opts{'b'} && $opts{'h'} && $matchesHeader) ||
(!$opts{'b'} && !$opts{'h'} && ($matchesBody || $matchesHeader))
);
$isMatch = !$isMatch if $opts{'v'};
# If the match occurred in the right place...
if ($isMatch)
{
dprint "Found a pattern match. Checking date.";
# Skip to the next email if the date is wrong.
if (!CheckDate(\$header_buffer))
{
dprint "Failed date constraint.";
SkipToNextEmail($fileHandle,\$next_header);
next;
}
dprint "Email matches all patterns and constraints.";
if ($opts{'l'})
{
print "$fileName\n";
# We can return since we found at least one email that matches.
return;
}
elsif ($opts{'r'})
{
$numberOfMatches++;
}
else
{
PrintEmail($fileName,$header_buffer,$body_buffer);
}
}
else
{
dprint "Did not find a pattern match on the body.";
}
}
print "$fileName: $numberOfMatches\n" if ($opts{'r'});
}
#-------------------------------------------------------------------------------
sub SkipToNextEmail($\$)
{
my $fileHandle = shift;
my $next_header = shift;
my $paragraph;
dprint "Skipping to next email.";
# If we have something buffered, it's the beginning of the next email
# address, so we don't need to do anything. Joy.
return if defined $$next_header;
do
{
$paragraph = <$fileHandle>;
}
while (!eof($fileHandle) && ($paragraph !~ /^\n?From .*\d:\d+:\d.* \d{4}/i)) ;
# Buffer if we went too far. Zap the starting newline while we're at it.
($$next_header) = $paragraph =~ /^\n?(.*)/s if (!eof($fileHandle));
}
#-------------------------------------------------------------------------------
sub GetRestOfBody($\$\$)
{
my $fileHandle = shift;
my $body_buffer = shift;
my $next_header = shift;
return if defined $$next_header;
# Read the entire email body into the buffer
my $doneLooking = 0;
do
{
my $paragraph = <$fileHandle>;
if (defined $paragraph)
{
if ($paragraph =~ /^(\n?)(From .*\d:\d+:\d.* \d{4}.*)/is)
{
dprint "Found next email's header, buffering.";
$$body_buffer .= $1;
$$next_header = $2;
$doneLooking = 1;
}
else
{
$$body_buffer .= $paragraph;
}
}
if (eof($fileHandle))
{
dprint "Found EOF.";
$doneLooking = 1;
}
}
while (!$doneLooking);
}
#-------------------------------------------------------------------------------
sub PrintEmail($$$\$)
{
my $fileName = shift;
my $header = shift;
my $body = shift;
dprint "Printing email.";
# Add the mailfolder to the headers if -m was given
if ($opts{'m'})
{
$header =~ s/\n+$/\n/s;
$header .= "X-Mailfolder: $fileName\n\n";
}
print $header;
# Print whatever body we've read already.
print $body;
}
#-------------------------------------------------------------------------------
sub CheckDate($)
{
my $emailref = shift;
my ($emailDate, $isInDate);
$emailDate = "";
$isInDate = 0;
my ($header) = $$emailref =~ /^(.*?)\n\n/s;
# RFC 822 allows header lines to be continued on the next line, in which case
# they must be preceded by whitespace. Let's remove the continuations.
$header =~ s/\n\s+/ /gs;
if ($opts{'d'})
{
# The email might not have a date. In this case, print it out anyway.
if ($header =~ /^Date:\s*(.*)$/im)
{
dprint "Date in email is: $1.";
my $fixedDate = $1;
# We have to remove "(GMT+500)" from the end for Date::Manip
$fixedDate =~ s/\(GMT[^\)]*\)$//;
# We have to change +500 to +0500 for Date::Manip
$fixedDate =~ s/([\+\-])(\d\d\d)$/$1.'0'.$2/e;
$emailDate = ParseDate($fixedDate);
$isInDate = IsInDate($emailDate,$dateRestriction,$date1,$date2);
}
else
{
dprint "No date found in email.";
$isInDate = 1;
}
}
else
{
$isInDate = 1;
}
return $isInDate;
}
#-------------------------------------------------------------------------------
# Figure out what kind of date restriction they want, and what the dates in
# question are.
sub ProcessDate($)
{
my ($dateRestriction, $date1, $date2);
my $datestring = shift;
if(!defined($datestring))
{
return ("none","","");
}
if ($datestring =~ /^before (.*)/i)
{
$dateRestriction = "before";
$date1 = ParseDate($1);
$date2 = "";
cleanExit "\"$1\" is not a valid date" if (!$date1);
}
elsif ($datestring =~ /^(after |since )(.*)/i)
{
$dateRestriction = "after";
$date1 = ParseDate($2);
$date2 = "";
cleanExit "\"$2\" is not a valid date" if (!$date1);
}
elsif ($datestring =~ /^between (.*) and (.*)/i)
{
$dateRestriction = "between";
$date1 = ParseDate($1);
$date2 = ParseDate($2);
cleanExit "\"$1\" is not a valid date" if (!$date1);
cleanExit "\"$2\" is not a valid date" if (!$date2);
# Swap the dates if the user gave them backwards.
if ($date1 gt $date2)
{
my $temp;
$temp = $date1;
$date1 = $date2;
$date2 = $temp;
}
}
elsif (ParseDate($datestring) ne '')
{
$dateRestriction = "on";
$date1 = ParseDate($datestring);
}
else
{
cleanExit "Invalid date specification. Use \"$0 -h\" for help";
}
return ($dateRestriction,$date1,$date2);
}
#-------------------------------------------------------------------------------
sub IsInDate($$$$)
{
my ($emailDate,$dateRestriction,$date1,$date2);
$emailDate = shift @_;
$dateRestriction = shift @_;
$date1 = shift @_;
$date2 = shift @_;
# Here we do the date checking.
if ($dateRestriction eq "none")
{
return 1;
}
else
{
if ($dateRestriction eq "before")
{
if ($emailDate lt $date1)
{
return 1;
}
else
{
return 0;
}
}
elsif ($dateRestriction eq "after")
{
if ($emailDate gt $date1)
{
return 1;
}
else
{
return 0;
}
}
elsif ($dateRestriction eq "on")
{
if (&UnixDate($emailDate,"%m %d %Y") eq &UnixDate($date1,"%m %d %Y"))
{
return 1;
}
else
{
return 0;
}
}
elsif ($dateRestriction eq "between")
{
if (($emailDate gt $date1) && ($emailDate lt $date2))
{
return 1;
}
else
{
return 0;
}
}
}
}
#-------------------------------------------------------------------------------
sub usage
{
<<EOF;
grepmail $VERSION
usage: grepmail [-bDhilmrRv] [[-e] <expr>] [-d "datespec"] <files...>
-b Search must match body
-d Specify a date range (see below)
-D Debug mode
-e Explicitely name expr (when searching for strings beginning with "-")
-h Search must match header
-i Ignore case in the search expression
-l Output the names of files having an email matching the expression
-M Do not search non-text mime attachments
-m Append "X-Mailfolder: <folder>" to all headers to indicate in which folder
the match occurred
-q Quiet mode -- don't output warnings
-r Output the names of the files and the number of emails matching the
expression
-R Recurse directories
-v Output emails that don't match the expression
Date specifications must be of the form of:
a date like "today", "1st thursday in June 1992", "05/18/93",
"12:30 Dec 12th 1880", "8:00pm december tenth",
OR "before", "after", or "since", followed by a date as defined above,
OR "between <date> and <date>", where <date> is defined as above.
Files can be plain ASCII or ASCII files compressed with gzip, tzip, or bzip2.
You can also pipe normal or compressed ASCII to grepmail.
EOF
}
#-------------------------------------------------------------------------------
=head1 NAME
grepmail - search mailboxes for mail matching a regular expression
=head1 SYNOPSIS
grepmail [-vihblrm] [-e <regex>] [-d "datespec"] [mailbox ...]
=head1 DESCRIPTION
=over 2
I<grepmail> looks for mail messages containing a pattern, and prints the
resulting messages on standard out.
By default I<grepmail> looks in both header and body for the specified pattern.
When redirected to a file, the result is another mailbox, which can, in turn,
be handled by standard User Agents, such as I<elm>, or even used as input for
another instance of I<grepmail>.
The pattern is optional if -d is used, and must precede the -d flag unless it
is specified using -e.
=back
=head1 OPTIONS AND ARGUMENTS
Many of the options and arguments are analogous to those of grep.
=over 8
=item B<pattern>
The pattern to search for in the mail message. May be any Perl regular
expression, but should be quoted on the command line to protect against
globbing (shell expansion). To search for more than one pattern, use the form
"(pattern1|pattern2|...)".
=item B<mailbox>
Mailboxes must be traditional, UNIX C</bin/mail> mailbox format. The
mailboxes may be compressed by gzip, tzip, or bzip2, in which case
gunzip, tzip, or bzip2 must be installed on the system.
If no mailbox is specified, takes input from stdin, which can be compressed or
not. grepmail's behavior is undefined when ASCII and binary data is piped
together as input.
=item B<-b>
Asserts that the pattern must match in the body of the email.
=item B<-D>
Enable debug mode, which prints diagnostic messages.
=item B<-d>