blob: 4203805ac5351cd66957b636df49b262c5b36ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-aa,v 1.2 2003/05/01 11:59:50 jmmv Exp $
--- mailserv.orig 2002-10-23 02:59:51.000000000 +0200
+++ mailserv
@@ -28,7 +28,7 @@ print "Content-type: text/html\n";
## the include files are write-protected, otherwise someone
## could add malicious code to them.
-@INC = (".", "./config");
+@INC = (".", "./config", "@PKG_SYSCONFDIR@");
&cgiRequire("cgi-lib.pl");
&ReadParse();
@@ -71,7 +71,7 @@ $max = 10;
# Program into which mail is piped
# You can also override this with $config::mailer.
-$mailer = "/usr/lib/sendmail -t";
+$mailer = "/usr/sbin/sendmail -t";
# mailer_accepts_f
# Use "-f address" for the mailer?
|