diff options
author | wjv <wjv@FreeBSD.org> | 2003-01-20 13:07:34 +0000 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2003-01-20 13:07:34 +0000 |
commit | 6e6fc1f28e1927487b332a862ab7d83e28a91f81 (patch) | |
tree | f4425dff9d5782878e6ef9142fb1ecfb2f38ba6d /mail | |
parent | fd79a34e440e2468600365824e497318e25857ac (diff) | |
download | FreeBSD-ports-6e6fc1f28e1927487b332a862ab7d83e28a91f81.zip FreeBSD-ports-6e6fc1f28e1927487b332a862ab7d83e28a91f81.tar.gz |
- Add the patch that was accidentally omitted from the previous commit. :-(
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mailman/files/patch-Mailman::Defaults.py.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mail/mailman/files/patch-Mailman::Defaults.py.in b/mail/mailman/files/patch-Mailman::Defaults.py.in new file mode 100644 index 0000000..aef93e8 --- /dev/null +++ b/mail/mailman/files/patch-Mailman::Defaults.py.in @@ -0,0 +1,31 @@ +--- Mailman/Defaults.py.in.orig Thu Dec 26 21:48:41 2002 ++++ Mailman/Defaults.py.in Mon Jan 20 14:07:05 2003 +@@ -97,7 +97,7 @@ + # Command that is used to convert text/html parts into plain text. This + # should output results to standard output. %(filename)s will contain the + # name of the temporary file that the program should operate on. +-HTML_TO_PLAIN_TEXT_COMMAND = '/usr/bin/lynx -dump %(filename)s' ++HTML_TO_PLAIN_TEXT_COMMAND = '%%LOCALBASE%%/bin/lynx -dump %(filename)s' + + + +@@ -356,8 +356,8 @@ + # and virtual-mailman.db files, respectively, from the associated plain text + # files. The file being updated will be appended to this string (with a + # separating space), so it must be appropriate for os.system(). +-POSTFIX_ALIAS_CMD = '/usr/sbin/postalias' +-POSTFIX_MAP_CMD = '/usr/sbin/postmap' ++POSTFIX_ALIAS_CMD = '%%LOCALBASE%%/sbin/postalias' ++POSTFIX_MAP_CMD = '%%LOCALBASE%%/sbin/postmap' + + # Ceiling on the number of recipients that can be specified in a single SMTP + # transaction. Set to 0 to submit the entire recipient list in one +@@ -391,7 +391,7 @@ + + # Command for direct command pipe delivery to sendmail compatible program, + # when DELIVERY_MODULE is 'Sendmail'. +-SENDMAIL_CMD = '/usr/lib/sendmail' ++SENDMAIL_CMD = '/usr/sbin/sendmail' + + # Set these variables if you need to authenticate to your NNTP server for + # Usenet posting or reading. If no authentication is necessary, specify None |