blob: 66a551a453188d4ab7fcfb2de9549f78628a294f (
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
24
25
26
27
28
29
30
31
32
33
34
35
|
--- 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;
|