1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/mail/majordomo/files/patch-bc
James FitzGibbon 70de273d7f - Upgrade to v1.94.2
- Change the way that the /usr/lib/sendmail -> /usr/sbin/sendmail patches are stored to make future upgrades of the port easier.
- Change the way that the links in the install dirs were being set up.
1997-04-28 00:37:28 +00:00

36 lines
1.2 KiB
Plaintext

--- config-test.orig Sun Apr 27 20:23:06 1997
+++ config-test Sun Apr 27 20:23:21 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;