diff options
author | jwise <jwise> | 1999-11-12 20:05:19 +0000 |
---|---|---|
committer | jwise <jwise> | 1999-11-12 20:05:19 +0000 |
commit | b3767f67d88586ff32bdbeb443e004865fa19928 (patch) | |
tree | a60300b1d6e111b0d497f3bbcfa1caa3fba60f2f /www/ap-dtcl | |
parent | be1f767cff3c7f8677fe3a079eae2786baaad32d (diff) | |
download | pkgsrc-b3767f67d88586ff32bdbeb443e004865fa19928.tar.gz |
Sigh. s,/usr/lib/sendmail,/usr/sbin/sendmail,g in the cgi.tcl compatibility
mail routines.
Diffstat (limited to 'www/ap-dtcl')
-rw-r--r-- | www/ap-dtcl/patches/patch-aa | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/ap-dtcl/patches/patch-aa b/www/ap-dtcl/patches/patch-aa new file mode 100644 index 00000000000..ca9b17a6bd5 --- /dev/null +++ b/www/ap-dtcl/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 1999/11/12 20:05:19 jwise Exp $ +--- dtcl.tcl.orig Fri Nov 12 14:58:55 1999 ++++ dtcl.tcl Fri Nov 12 14:59:13 1999 +@@ -1360,8 +1360,8 @@ + + flush $_cgi(mailfid) + +- if {[file executable /usr/lib/sendmail]} { +- exec /usr/lib/sendmail -t -odb < $_cgi(mailfile) ++ if {[file executable /usr/sbin/sendmail]} { ++ exec /usr/sbin/sendmail -t -odb < $_cgi(mailfile) + # Explanation: + # -t means: pick up recipient from body + # -odb means: deliver in background |