1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/mail/majordomo/files/patch-be

24 lines
810 B
Plaintext
Raw Normal View History

--- contrib/sequencer.orig Sun Apr 27 20:23:46 1997
+++ contrib/sequencer Sun Apr 27 20:24:01 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);
}