This file is indexed.

/usr/sbin/checksendmail is in sendmail-base 8.14.4-4.1ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/usr/bin/perl

#	BSDI	$Id: checksendmail.perl,v 1.1.1.1 1994/01/13 21:15:31 polk Exp $

# checksendmail
#
#	The checksendmail program is a perl script that aids the testing
#	of sendmail's various configuration filse.  checksendmail 
#	passes typical addresses (supplied in input files) through
#	sendmail and prints the result of the resolution and 
#	transformation routines. 
#
#			Gene Kim & Rob Kolstad & Jeff Polk, 7/11/90
#			Modified by Robert Harker, 11/14/00

# --	-a show aliasing of local addresses
# --	-d preceed each line with ruleset sequence summary
# --    -C config_file
# --	-b sendmail_binary
# --    -l log_file of results of tests
# --    -r resolve_addresses_file
# --	-T test one address

# defaults:
	$resolve  = "/etc/mail/address.resolve";
	$cffile   = "/etc/mail/sendmail.cf";

# Pre-create tmp files (so can use safely)
	use Fcntl;
	foreach ("/tmp/csm$$", "/tmp/csm.in$$") {
		die "Can't pre-create $_" 
			unless sysopen(T,$_,O_RDWR|O_CREAT|O_EXCL,0600)
			and close(T);
	};

sub usage {
	die "Usage: checksendmail [-C cffile.cf] [-b sendmail_binary] [-l log_file]\n\t\t\t\t[-a] [-d] [-r resolve_addrs_file || -T one\@test.addr]\n$errormsg\n";
}

for (unshift (@ARGV, "XX"); $#ARGV > 0; shift ARGV) {
	if ($ARGV[1] eq "-C") 
	{
		if ($setcffile & 1) { die "Can only set `cffile.cf' once"; }
		shift @ARGV;
		if ($#ARGV >= 1) {$cffile = $ARGV[1]; }
		else {
			$errormsg = "No sendmail.cf file given for -C flag\n";
			&usage();
		}
		$setcffile += 1;
	}
	elsif ($ARGV[1] eq "-r")
	{
		if ($setfile & 1) { die "Can only set `resolve' once"; }
		shift @ARGV;
		if ($#ARGV < 1) {
			$errormsg = "No resolve_addrs_file given for -r flag\n";
			&usage();
		}
		$resolve = $ARGV[1];
		$setfile += 1;
	}
	elsif ($ARGV[1] eq "-T")
	{
		if ($setfile) { die "Can't set other files and use -T"; }
		shift @ARGV;
		if ($#ARGV < 1) {
			$errormsg = "No one\@test.addr given for -T flag\n";
			&usage();
		}
		open (OUT, ">/tmp/csm.in$$") ||
					die "Can't open >/tmp/csm.in$$";
		$resolve = "/tmp/csm.in$$";
		print OUT "$ARGV[1]\n";
		close (OUT);
		$setfile = 7;
	}
	elsif ($ARGV[1] eq "-b")
	{
		if ($setbin & 1) { die "Can only set `sendmail_binary' once"; }
		shift @ARGV;
		if ($#ARGV >= 1) {$sendmail = $ARGV[1]; }
		else {
			$errormsg = "No sendmail_binary file given for -b flag\n";
			&usage();
		}
		$setbin += 1;
	}
	elsif ($ARGV[1] eq "-l")
	{
		if ($setlog & 1) { die "Can only set `log_file' once"; }
		shift @ARGV;
		if ($#ARGV >= 1) {$logfile = $ARGV[1]; }
		else {
			$errormsg = "No log_file file given for -l flag\n";
			&usage();
		}
		$setlog += 1;
	}
	elsif ($ARGV[1] eq "-a")
	{
		$doaliasing += 1;
	}
	elsif ($ARGV[1] eq "-d")
	{
		$dorspath += 1;
	}
	else { &usage(); }
}

# Figure out where the sendmail binary is
if (! $setbin & 1) {
  foreach $i ("/usr/sbin/sendmail", "/usr/libexec/sendmail", "/usr/lib/sendmail")
  {
	# test if binary exists and is executable
	if ((-e $i) && (-x $i)) { 
		$sendmail = $i;
		last;
	}
  }
}


# Figure out the version of sendmail and the location of the sendmail.cf file
# sendmail -d0.10 -bv root
#	("-bv root" is just to give sendmail something to chew on)

$binversion = `$sendmail -d0.10 -bv root | grep "^Version "`;
chop $binversion;
$binversion =~ s/^Version //;

# Get the major relase number from the sendmail version
$binver = $binversion;
$binver =~ s/^8\.//;
$binver =~ s/\..+//;

# if the cf file was not set on the command line,
#	find out where the binary looks for it
if ( ! -e $cffile ) {
	$cffile = `$sendmail -d0.10 -bv root | grep "Def Conf file:"`;
	chop $cffile;
	$cffile =~ s/ //g;
	$cffile =~ s/	//g;
	$cffile =~ s/^DefConffile://;
}

if (!-e $cffile)   { die "Can't find configuration file $cffile\n"; }

if (!-e $resolve)  { die "Can't find name file $resolve\n"; }

# Figure out the version of the sendmail.cf file
# Look for the V line
$cfversion = `grep "^V" $cffile`;
chop $cfversion;
# if $cfversion is empty, then the configuration is sendmail 5, not sendmail 8
$cfversion =~ s/^$/V0/;

# Get the version number from the V line
$cfver = $cfversion;
$cfver =~ s/^V//;
$cfver =~ s'/.+'';

# check that the binary is a higher version than config file
if ( $binver < $cfver + 1) {
    die "$cffile version ($cfversion) is more advanced than $sendmail version ($binversion)\n";
}

# figure out where the mqueue directory is
if ( $cfver <= 6 ) {
	$maildir = `grep "^OQ" $cffile`;
	chop $maildir;
	$maildir =~ s/^OQ//;
} else {
	$maildir = `grep "^O QueueDirectory" $cffile`;
	chop $maildir;
	$maildir =~ s/^O QueueDirectory=//;
}

# make sure the user can access the ../mqueue directory
if ((!-r $maildir) || (!-x $maildir) || (!-w $maildir)) { 
	if ($doaliasing & 1) {
	  die "checksendmail: can't access $maildir! can't use checksendmail's -a flag\n";
	} else {
	  warn "checksendmail: can't access $maildir!  trying anyway...\n";
	}
}

chop($hostname = `hostname`);
chop($pwd = `pwd`);
print "system: $hostname\t\tcurrent dir: $pwd\n";
print "resolve file: $resolve\n";
print "sendmail binary: $sendmail\t\tsendmail version: $binversion\n";
print "config file: $cffile\t\tconfig file version: $cfversion\n\n";
if ($setlog & 1) {
  print "log file: $logfile\n\n";
  # now print to the log file
  open (LOG , ">$logfile") || die "Can't open >$logfile";
  print LOG "system: $hostname\t\tcurrent dir: $pwd\n";
  print LOG "resolve file: $resolve\n";
  print LOG "sendmail binary: $sendmail\t\tsendmail version: $binversion\n";
  print LOG "config file: $cffile\t\tconfig file version: $cfversion\n";
  print LOG "log file: $logfile\n\n";
}

sub handler {  # 1st argument is signal name
     local($sig) = @_;
     print STDERR "Caught a SIG$sig--shutting down\n";
     unlink("/tmp/csm$$") || die "Can't unlink /tmp/csm$$";
     unlink("/tmp/csm.in$$");
     if ($setlog & 1) {
       close(LOG);
     }
     exit(0);
}

$SIG{'INT'} = 'handler';
$SIG{'QUIT'} = 'handler';



# glean the mailers used from the rule 0 tests

sub parseresolve
{
     while (<MAIL>)
     {
	# now print to the log file
	if ($setlog & 1) {
	  print LOG $_;
	}
	if (/^ADDRESS TEST MODE/) { next; }
	if (/^Enter <ruleset>/) { next; }
	if (/^Warning: .cf file is out of date/) { next; }

	# if the binary is less than 8.7 then use result of ruleset 0
	if ( $binver <= 6 ) {
	  if (/^>/)			# INPUT LINE! (and last output is done)
	  {
	    chop;
	    if ($prevline) {	# OUTPUT LINE!
	      &printparseresolve;
	    }
	    s/> *[0-9,]* *//g;
	    s/.*input: *//;
	    s/ //g;
	    s/"//g;
	    $input = $_;
	  }
	  else { chop; }
	  $prevline = $_;
	} else {
	  # format of /parse output is:
	  #       Parsing envelope recipient address
	  #       rewrite: ruleset   3   input: harker @ harker . com
	  if ($prevrule eq "Parsing envelope recipient address\n" )
	  {
	    chop;
	    s/> *[0-9,]* *//g;
	    s/.*input: *//;
	    s/ //g;
	    s/"//g;
	    $input = $_;
	    $prevrule = $_;
	  }
	  elsif (/^mailer /)
	  {
	    $prevrule = $_;
	    &printparseresolve;
	  }
	  else
	  {
	    $prevrule = $_;
	  }
	}
     }
    #&printparseresolve;
}

sub printparseresolve {
	# if the binary is less than 8.7 then use result of ruleset 0
	if ( $binver <= 6 ) {
	  if ($input eq "") { return;}

	  $prevline =~ s/.*returns:  *//;
	  $prevline =~ s/"//g;
	  $prevline =~ s/ //g;
	  # Don't strip spaces off error messages
	  $prevline =~ s/ *([.!%<>]) */$1/g;
	  $prevline =~ s/ +([;?\$])/$1/g;
	  $prevline =~ s/([#\@:]) +/$1/g;

# non-Sun test mode delimiters -> easily-readable style
# Mark Sausville, MIT Media Laboratory, saus@media-lab.media.mit.edu
	  $prevline =~ s/\^V/\$#/;
	  $prevline =~ s/\^W/\$@/;
	  $prevline =~ s/\^X/\$:/;

     #### $#ether$@sun-barr.Ebay.Sun.COM$:site!user@uunet.uu.NET
	  @t = split( '\$', $prevline);
	  $address = "XXX";
	  $remote = "XXX";
	  $mailer = "XXX";
	  for ($i = 1; $i <= $#t; $i++)
	  {
	    if (substr($t[$i], 0, 1) eq ":")
	      { $address = substr($t[$i], 1,999); }
	    if (substr($t[$i], 0, 1) eq "@")
	      { $remote = substr($t[$i], 1,999); }
	    if (substr($t[$i], 0, 1) eq "#")
	      { $mailer =  substr($t[$i], 1,999);
		$mailer =~ tr/A-Z/a-z/; }
	   }
	} else {
	# the binary is at least 8.7 then use result of /parse
	  chop;
	  s/,//g;

	  # mailer esmtp, host harker.com., user harker@harker.com
	  @t = split( ' ', $_);
	  $address = "XXX";
	  $remote = "XXX";
	  $mailer = "XXX";
	  for ($i = 0; $i <= $#t; $i++)
	  {
	    if ($t[$i] eq "user")
	      { $address = $t[++$i]; }
	    if ($t[$i] eq "host")
	      { $remote = $t[++$i]; }
	    if ($t[$i] eq "mailer")
	      { $mailer = $t[++$i];
		$mailer =~ tr/A-Z/a-z/; }
	   }
	}
	printf("%-27.27s --(%-6.6s)-->  %s[%s]\n", $input, $mailer,
			$address, $remote);
	# now print to the log file
	if ($setlog & 1) {
	  printf LOG ("%-27.27s --(%-6.6s)-->  %s[%s]\n\n", $input, $mailer,
			$address, $remote);
	}

	if ($doaliasing & 1) {
	  # If the /etc/mail/address.resolved to the local mailer,
	  #	then expand the username as an alias
	  if ( $mailer eq  "local")
	  {
	    $setalias = $aliasfound = 0;
	    $laddress = $address;
	    $sendmailprog = "$sendmail -bv -C$cffile $laddress|";
	    open(LOCAL, $sendmailprog) ||
					die "can't exec $sendmailprog...\n";
	    # now print to the log file
	    if ($setlog & 1) {
	      print LOG "\n$sendmailprog\n";
	    }
	    while (<LOCAL>)
	    {
	      # now print to the log file
	      if ($setlog & 1) {
  	        print LOG $_;
	      }
	      chop;
	      if (/unknown/)
	      {
		$aliasfound = 1;
		printf("\t\t aliased to --(error )-->  %s\n", $_);
		# now print to the log file
		if ($setlog & 1) {
		  printf LOG ("\t\t aliased to --(error )-->  %s\n\n", $_);
		}
		next;
	      }
	      s/,//g;
	      @l = split( ' ', $_);
	      $aladdress = "XXX";
	      $remote = "XXX";
	      $mailer = "XXX";
	      for ($i = 1; $i <= $#l; $i++)
	      {
		# ./sendmail -bv -C./sendmail.cf j.murphy
		# j.murphy@pop.mcit.com... deliverable: mailer mciesmtp,
		#	host pop.mcit.com, user j.murphy@pop.mcit.com
		if ($l[$i] eq "user") { $aladdress = $l[++$i]; }
		if ($l[$i] eq "host") { $remote = $l[++$i]; }
		if ($l[$i] eq "mailer") { $mailer = $l[++$i]; }
	      }
	      if (("$laddress" eq "$aladdress") && ($aliasfound == 0)) {
		$selfalias = 1;
		next;
	      }
	      printf("\t\t aliased to --(%-6.6s)-->  %s[%s]\n",
				$mailer, $aladdress, $remote);
	      # now print to the log file
	      if ($setlog & 1) {
		printf LOG ("\t\t aliased to --(%-6.6s)-->  %s[%s]\n\n",
				$mailer, $aladdress, $remote);
	      }
	      if ("$laddress" ne "$aladdress") {
		$aliasfound = 1;
	        $envsenderaddrs .= " $aladdress";
	      }
	      if ($mailer ne "XXX") { $themailers{$mailer}=1;}
	    }
	    close(LOCAL);
	    if ($selfalias == 1 && $aliasfound == 1) {
	      printf("\t\t aliased to --(%-6.6s)-->  %s[%s]\n",
				$mailer, $aladdress, $remote);
	      # now print to the log file
	      if ($setlog & 1) {
		printf LOG ("\t\t aliased to --(%-6.6s)-->  %s[%s]\n\n",
				$mailer, $aladdress, $remote);
	      }
	    }
	    # now print a blank line to the log file
	    if ($setlog & 1) {
	      print LOG "\n";
	    }
	  } else {
	      $envsenderaddrs .= " $address";
	  }
	}

	if ($mailer ne "XXX") { $themailers{$mailer}.="$input ";}
}

# Parse output of sendmail name resolution 

sub parseaddress
{
##   ADDRESS TEST MODE
##   Enter <ruleset> <address>
##   > rewrite: ruleset  3   input: "user"

    open(MAIL, $_[0]) || die "Can't open $_[0]...\n";
    local ($k, $address, $prevline, $mailer, $remote, $input);
    print $_[1];			# the title
    # now print to the log file
    if ($setlog & 1) {
         print LOG "\n$_[1]";			# the title
    }

    $done = 0;
    while (<MAIL>)
    {
	# now print to the log file
	if ($setlog & 1) {
	  print LOG $_;
	}
	if (/^>  *$/) { $done = 1; }
	if (/^ADDRESS TEST MODE/) { next; }
	if (/^Enter <ruleset>/) { next; }
	if (/^Warning: .cf file is out of date/) { next; }
	if (/^$/) { next; }
	chop;
	# rewrite $rules to be just a slash if it starts with a /
	$rules =~ s'/.+'/';
	# if the binary is less than 8.7 then use result of ruleset 4
	if ( $binver <= 6 || $rules ne "/" ) {
	  if (/^>/)			# INPUT LINE! (and last output is done)
	  {
		if ($prevline) {	# OUTPUT LINE!
		    $prevline =~ s/.*returns:  *//;
		    $prevline =~ s/"//g;
		    $prevline =~ s/ //g;
#> rewrite: ruleset  3   input: "site" "!" "user" "@" "uunet" "." "uu" "." "net"
#rewrite: ruleset  8   input: "site" "!" "user" "@" "uunet" "." "uu" "." "net"
#> 
		    printf("%s%-24.24s ---->  %s\n", $rspath, $input, $prevline);
		    # now print to the log file
		    if ($setlog & 1) {
		      printf LOG ("%s%-24.24s ---->  %s\n", $rspath, $input, $prevline);
		    }
		}
	    s/> *[0-9,]* *//g;
	    s/.*input: *//;
	    s/ //g;
	    s/"//g;
	    $input = $_;
	  }
	  last if $done;
	  $prevline = $_;
	} else {
	  # format of /try output is:
	  #   Trying envelope recipient address harker for mailer esmtp
	  #   ...
	  #   Rcode = 0, addr = harker@mailhub.gadget.com
	  # remove extra ">" from "> >" lines
	  s/^> >/>/;
	  if (/^> Trying/)		# INPUT LINE! (and last output is done)
	  {
	    chop;
	    s/> Trying .+ address //;
	    s/ for mailer .+//;
	    s/ //g;
	    s/"//g;
	    $input = $_;
	    $prevrule = $_;
	  }
	  elsif (/^Rcode = /)
	  {
	    $prevrule = $_;
	    #   Rcode = 0, addr = harker@mailhub.gadget.com
	    s/^Rcode = .+ addr = //;
	    printf("%s%-24.24s ---->  %s\n", $rspath, $input, $_);
	    # now print to the log file
	    if ($setlog & 1) {
	      printf LOG ("%s%-24.24s ---->  %s\n\n", $rspath, $input, $_);
	    }
	  }
	  else
	  {
	    $prevrule = $_;
	  }
	}
    }
    # now print to the log file
    if ($setlog & 1) {
         print LOG "\n";
    }
    close(MAIL);
}


# if the binary is less than 8.7 then use result of ruleset 4
if ( $binver <= 6 ) {
  print "Mail address resolution (rule 0)\n";
  # now print to the log file
  if ($setlog & 1) {
    print LOG "Mail address resolution (rule 0)\n";
  }
} else {
  print "Mail address resolution (/parse)\n";
  # now print to the log file
  if ($setlog & 1) {
    print LOG "Mail address resolution (/parse)\n";
  }
}
# pass names from resolve files to sendmail

open(IN, $resolve) || die "can't open $resolve\n";
open(OUT, ">/tmp/csm$$") || die "can't open >/tmp/csm$$\n";
while (<IN>) 
{
    /^$/ && next;
    /^#/ && next;
    # if the binary is less than 8.7 then use result of ruleset 0
    if ( $binver == 5 ) {
	$rules = "0 $_";
    } elsif ( $binver <= 6 ) {
	$rules = "3,0 $_";
    } else {
	$rules = "/parse $_";
    }
    print OUT $rules;
    # now print to the log file
    if ($setlog & 1) {
      print LOG "$rules";
    }
    chop;
    $allinput .= " $_";
}
    $allinput =~ s/^ //;
close(OUT);
close(IN);
$sendmailprog = "$sendmail -bt -C$cffile < /tmp/csm$$|";
open(MAIL, $sendmailprog) || die "can't exec $sendmailprog...\n";
&parseresolve();

# calculate $f
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    open (IN, $resolve);
    # sendmail 5 automatically runs ruleset 3
    if ( $binver == 5 ) {
	$rules = "1,4";
    } else {
	$rules = "3,1,4";
    }
    if ($dorspath & 1) { $rspath = "\$f: "; }

    while (<IN>) {
	chop;
	/^$/ && next;
	/^#/ && next;
	$address = $_;
	print OUT "$rules $address\n";
        # now print to the log file
        if ($setlog & 1) {
	    print LOG "$rules $address\n";
        }
    }
    print OUT "\n";			# stuff last line into sendmail
    # now print to the log file
    if ($setlog & 1) {
	print LOG "\n";			# stuff last line into sendmail
    }
    close(IN);
    close(OUT);
    &parseaddress ("/tmp/csm$$", "\n\$f address header transformations\n");

# Get the R= and S= special rulesets from the configuration
# now print to the log file
if ($setlog & 1) {
  print LOG "\nGet the R= and S= mailer specific rulesets\n";
}

open(FID, "grep ^M $cffile|");
while (<FID>)
{
#    Mether,	P=[IPC], F=msDFMueCX, S=11, R=21, A=IPC $h
    chop;
    $thisline = $_;
    $thisline =~ s/M//;
    $thisline =~ s/,.*//;
    $thisline =~ tr/A-Z/a-z/;
    $sendrule = $_;
    $sendrule =~ s/.*S=//;
    $sendrule =~ s/,.*//;
    if ($sendrule=~q!/!) {
      ($esendrule, $hsendrule) = split (q!/!, $sendrule);
    } else {
      $esendrule = $hsendrule = $sendrule;
    }
    $recvrule = $_;
    $recvrule =~ s/.*R=//;
    $recvrule =~ s/,.*//;
    if ($recvrule=~q!/!) {
      ($erecvrule, $hrecvrule) = split (q!/!, $recvrule);
    } else {
      $erecvrule = $hrecvrule = $recvrule;
    }
    $esendrules{$thisline} = $esendrule;
    $hsendrules{$thisline} = $hsendrule;
    $erecvrules{$thisline} = $erecvrule;
    $hrecvrules{$thisline} = $hrecvrule;
    # now print to the log file
    if ($setlog & 1) {
      print LOG "mailer: $thisline\t->\tesendrule = $esendrule, hsendrule = $hsendrule,
    		erecvrule = $erecvrule, hrecvrule = $hrecvrule\n";
    }
}
# now print to the log file
if ($setlog & 1) {
  print LOG "\n";
}
close(FID);

# pass envelope recipient names from various mailers through sendmail
foreach $i (keys %themailers)
{
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    if ($dorspath & 1) { $rspath = "$i ER: "; }

    # if the binary is less than 8.7 then use result of ruleset 0
    if ( $binver <= 6 ) {
      if ($erecvrules{$i} == 0) {
	print "\nCan't find recv rule for `$i', skipping this mailer <-------------------\n";
	next;
      }
      # sendmail 5 automatically runs ruleset 3
      if ( $binver == 5 ) {
	$rules = "2,$erecvrules{$i},4";
      } else {
	$rules = "3,2,$erecvrules{$i},4";
      }
    } else {
      print OUT "/tryflags ER\n";
      # now print to the log file
      if ($setlog & 1) {
	print LOG "/tryflags ER\n";
      }
      $rules = "/try $i";
    }
    @namelist = split(/ /, $allinput);
    foreach (@namelist) {
	print OUT "$rules $_\n";
    	# now print to the log file
    	if ($setlog & 1) {
      	  print LOG "$rules $_\n";
    }
    }
    print OUT "\n";			# stuff last line into sendmail
    # now print to the log file
    if ($setlog & 1) {
      	print LOG "\n";			# stuff last line into the log
    }
    close(OUT);
    $note = "";
    if ($erecvrules{$i} eq $hrecvrules{$i}) { $note = "and header "; }
    &parseaddress ("/tmp/csm$$", "\n`To' envelope ${note}address transformations for mailer $i [$rules]:\n");
}

# pass header recipient names from various mailers through sendmail
foreach $i (keys %themailers)
{
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    if ($dorspath & 1) { $rspath = "$i HR: "; }

    # only run the header ruleset if the mailer uses split env/hdr rulesets
    if ($hrecvrules{$i} ne $erecvrules{$i}) {
      # if the binary is less than 8.7 then use result of ruleset 0
      if ( $binver <= 6 ) {
	if ($hrecvrules{$i} == 0) {
	  print "\nCan't find recv rule for `$i', skipping this mailer <-------------------\n";
	  next;
	}
	# sendmail 5 automatically runs ruleset 3
	if ( $binver == 5 ) {
	  $rules = "2,$hrecvrules{$i},4";
	} else {
	  $rules = "3,2,$hrecvrules{$i},4";
	}
      } else {
	print OUT "/tryflags HR\n";
      # now print to the log file
      if ($setlog & 1) {
	print LOG "/tryflags HR\n";
      }
	$rules = "/try $i";
      }
      @namelist = split(/ /, $allinput);
      foreach (@namelist) {
	print OUT "$rules $_\n";
        # now print to the log file
        if ($setlog & 1) {
	  print LOG "$rules $_\n";
      }
      }
      print OUT "\n";			# stuff last line into sendmail
      # now print to the log file
      if ($setlog & 1) {
      	  print LOG "\n";			# stuff last line into the log
      }
      close(OUT);
      &parseaddress ("/tmp/csm$$", "\n`To' header address transformations for mailer $i [$rules]:\n");
    }
}

# pass envelope sender names from various mailers through sendmail
foreach $i (keys %themailers)
{
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    if ($dorspath & 1) { $rspath = "$i ES: "; }

    # if the binary is less than 8.7 then use result of ruleset 0
    if ( $binver <= 6 ) {
      if ($esendrules{$i} == 0) {
	print "\nCan't find send rule for `$i', skipping this mailer <-------------------\n";
	next;
      }
      # sendmail 5 automatically runs ruleset 3
      if ( $binver == 5 ) {
	$rules = "2,$esendrules{$i},4";
      } else {
	$rules = "3,2,$esendrules{$i},4";
      }
    } else {
      print OUT "/tryflags ES\n";
      # now print to the log file
      if ($setlog & 1) {
	print LOG "/tryflags ES\n";
      }
      $rules = "/try $i";
    }
    @namelist = split(/ /, $allinput);
    foreach (@namelist) {
	print OUT "$rules $_\n";
        # now print to the log file
        if ($setlog & 1) {
	  print LOG "$rules $_\n";
    }
    }
    print OUT "\n";			# stuff last line into sendmail
    close(IN);
    close(OUT);
    $note = "";
    if ($esendrules{$i} eq $hsendrles{$i}) {$note = "and header ";}
    &parseaddress ("/tmp/csm$$", "\n`From' envelope ${note}address transformations for mailer $i [$rules]:\n");
}

# pass header sender names from various mailers through sendmail
foreach $i (keys %themailers)
{
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    if ($dorspath & 1) { $rspath = "$i HS: "; }

    # only run the header ruleset if the mailer uses split env/hdr rulesets
    if ($hsendrules{$i} ne $esendrules{$i}) {
      # if the binary is less than 8.7 then use result of ruleset 0
      if ( $binver <= 6 ) {
	if ($hsendrules{$i} == 0) {
	  print "\nCan't find send rule for `$i', skipping this mailer <-------------------\n";
	  next;
	}
	# sendmail 5 automatically runs ruleset 3
	if ( $binver == 5 ) {
	  $rules = "2,$hsendrules{$i},4";
	} else {
	  $rules = "3,2,$hsendrules{$i},4";
	}
      } else {
	print OUT "/tryflags HS\n";
      # now print to the log file
      if ($setlog & 1) {
	print LOG "/tryflags HR\n";
      }
	$rules = "/try $i";
      }
      @namelist = split(/ /, $allinput);
      foreach (@namelist) {
	  print OUT "$rules $_\n";
          # now print to the log file
          if ($setlog & 1) {
	    print LOG "$rules $_\n";
      }
    }
      print OUT "\n";			# stuff last line into sendmail
      close(IN);
      close(OUT);
      &parseaddress ("/tmp/csm$$", "\n`From' address header transformations for mailer $i [$rules]:\n");
    }
}

foreach $i (keys %themailers)
{
    $sendmailprog = "|$sendmail -bt -C$cffile > /tmp/csm$$";
    open (OUT, $sendmailprog);
    if ($dorspath & 1) { $rspath = "\$g: "; }

    # if the binary is 8.9 or below then check if the mailer
    #	specific ruleset exists
    if ( $binver <= 9 ) {
    # if the binary is less than 8.7 then use result of ruleset 0
      if ($esendrules{$i} == 0) {
	print "\nCan't find send rule for `$i', skipping this mailer <-------------------\n";
	next;
      }
    }
    # sendmail 5 automatically runs ruleset 3
    if ( $binver == 5 ) {
      $rules = "1,4,3,1,$hsendrules{$i},4"; # XXX esendrules? book p. 431???
    } else {
      $rules = "3,1,4,3,1,$hsendrules{$i},4"; # XXX esendrules? book p. 431???
    }
    open (IN, $resolve);
    while (<IN>) {
	chop;
	/^$/ && next;
	/^#/ && next;
	$address = $_;
	print OUT "$rules $address\n";
    }
    print OUT "\n";			# stuff last line into sendmail
    close(IN);
    close(OUT);
    $note = "";
    if ($esendrules{$i} eq $hsendrles{$i}) {$note = "and header ";}
    &parseaddress ("/tmp/csm$$", "\n\$g address transformations for mailer $i [$rules]:\n");
}

unlink("/tmp/csm$$") || die "Can't unlink /tmp/csm$$";
unlink("/tmp/csm.in$$");

exit;