1997-09-10 02:52:59 +00:00
|
|
|
--- contrib/sequencer.orig Tue Dec 10 01:50:48 1996
|
|
|
|
+++ contrib/sequencer Wed Sep 10 00:57:20 1997
|
1997-04-28 00:37:28 +00:00
|
|
|
@@ -399,7 +399,7 @@
|
|
|
|
&bounce("Approval required");
|
|
|
|
}
|
|
|
|
|
|
|
|
-$sendmail_cmd = "/usr/lib/sendmail $opt_m -f$sendmail_sender " .
|
|
|
|
+$sendmail_cmd = "/usr/sbin/sendmail $opt_m -f$sendmail_sender " .
|
|
|
|
join(" ", @ARGV);
|
|
|
|
|
|
|
|
if (defined($opt_d)) {
|
|
|
|
@@ -541,9 +541,9 @@
|
|
|
|
if (defined($opt_d)) {
|
|
|
|
# debugging, so just say it, don't do it
|
|
|
|
open(MAIL, ">-");
|
|
|
|
- print MAIL ">>> /usr/lib/sendmail -f$sendmail_sender -t\n";
|
|
|
|
+ print MAIL ">>> /usr/sbin/sendmail -f$sendmail_sender -t\n";
|
|
|
|
} else {
|
|
|
|
- local(@mailer) = split(' ',"/usr/lib/sendmail -f$sendmail_sender -t");
|
|
|
|
+ local(@mailer) = split(' ',"/usr/sbin/sendmail -f$sendmail_sender -t");
|
|
|
|
open(MAIL, "|-") || &do_exec_sendmail(@mailer);
|
|
|
|
}
|
|
|
|
|