freebsd-ports/mail/majordomo/files/patch-be
Jun-ichiro itojun Hagino eb370df20f original distribution updated to 1.94.4.
1.94.4 includes security fix, and jfitz is on vacation, so I committed this.
I would like to have a review by jfitz, after he comes back.
1997-09-10 02:52:59 +00:00

24 lines
810 B
Plaintext

--- 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);
}