blob: 2d8146c9b2441ecf9c77011938117fab5fc7add7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- contrib/sequencer.orig Tue Dec 10 01:50:48 1996
+++ contrib/sequencer Wed Sep 10 00:57:20 1997
@@ -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);
}
|