mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
eb370df20f
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.
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
--- config-test.orig Thu Aug 28 00:17:13 1997
|
|
+++ config-test Wed Sep 10 00:57:17 1997
|
|
@@ -237,9 +237,9 @@
|
|
else {
|
|
print "You have defined neither \$mailer, nor \$sendmail_command.\n";
|
|
print "Majordomo will use\n";
|
|
- print "/usr/lib/sendmail -f\\\$sender\n";
|
|
+ print "/usr/sbin/sendmail -f\\\$sender\n";
|
|
print "to deliver mail to the list.\n";
|
|
- $x = "/usr/lib/sendmail";
|
|
+ $x = "/usr/sbin/sendmail";
|
|
}
|
|
|
|
print "Attempting to verify that this is a valid mailer...";
|
|
@@ -266,9 +266,9 @@
|
|
else {
|
|
print "You have defined neither \$mailer, nor \$sendmail_command.\n";
|
|
print "Majordomo will use\n";
|
|
- print "/usr/lib/sendmail -f\\\$sender -t\n";
|
|
+ print "/usr/sbin/sendmail -f\\\$sender -t\n";
|
|
print "to deliver administrative mail.\n";
|
|
- $x = "/usr/lib/sendmail";
|
|
+ $x = "/usr/sbin/sendmail";
|
|
}
|
|
|
|
print "Attempting to verify that this is a valid mailer...";
|
|
@@ -375,7 +375,7 @@
|
|
print RF $majordomo_version;
|
|
close RF;
|
|
|
|
- $sendmail_command = "/usr/lib/sendmail"
|
|
+ $sendmail_command = "/usr/sbin/sendmail"
|
|
unless defined $sendmail_command;
|
|
$bounce_mailer = "$sendmail_command -f\$sender -t"
|
|
unless defined $bounce_mailer;
|