Tweak japanese/ruby-mecab version 0.996_1
[dports.git] / japanese / mailman / files / patch-Mailman-Defaults.py.in
1 --- Mailman/Defaults.py.in.orig 2011-12-11 16:56:23.000000000 +0900
2 +++ Mailman/Defaults.py.in      2012-02-15 05:39:56.000000000 +0900
3 @@ -62,7 +62,7 @@
4  # Banner images
5  DELIVERED_BY = 'mailman.jpg'
6  PYTHON_POWERED = 'PythonPowered.png'
7 -GNU_HEAD = 'gnu-head-tiny.jpg'
8 +FREEBSD_POWERED = 'powerlogo.gif'
9  
10  # Don't change MAILMAN_URL, unless you want to point it at one of the mirrors.
11  MAILMAN_URL = 'http://www.gnu.org/software/mailman/index.html'
12 @@ -119,7 +119,7 @@
13  # Command that is used to convert text/html parts into plain text.  This
14  # should output results to standard output.  %(filename)s will contain the
15  # name of the temporary file that the program should operate on.
16 -HTML_TO_PLAIN_TEXT_COMMAND = '/usr/bin/lynx -dump %(filename)s'
17 +HTML_TO_PLAIN_TEXT_COMMAND = '%%LOCALBASE%%/bin/lynx -dump %(filename)s'
18  
19  # A Python regular expression character class which defines the characters
20  # allowed in list names.  Lists cannot be created with names containing any
21 @@ -460,8 +460,8 @@
22  # and virtual-mailman.db files, respectively, from the associated plain text
23  # files.  The file being updated will be appended to this string (with a
24  # separating space), so it must be appropriate for os.system().
25 -POSTFIX_ALIAS_CMD = '/usr/sbin/postalias'
26 -POSTFIX_MAP_CMD = '/usr/sbin/postmap'
27 +POSTFIX_ALIAS_CMD = '%%LOCALBASE%%/sbin/postalias'
28 +POSTFIX_MAP_CMD = '%%LOCALBASE%%/sbin/postmap'
29  
30  # Ceiling on the number of recipients that can be specified in a single SMTP
31  # transaction.  Set to 0 to submit the entire recipient list in one
32 @@ -495,7 +495,7 @@
33  
34  # Command for direct command pipe delivery to sendmail compatible program,
35  # when DELIVERY_MODULE is 'Sendmail'.
36 -SENDMAIL_CMD = '/usr/lib/sendmail'
37 +SENDMAIL_CMD = '/usr/sbin/sendmail'
38  
39  # Set these variables if you need to authenticate to your NNTP server for
40  # Usenet posting or reading.  If no authentication is necessary, specify None
41 @@ -747,6 +747,13 @@
42  # debugging).
43  MAX_AUTORESPONSES_PER_DAY = 10
44  
45 +# This FreeBSD port of Mailman can utilize Postfix SMTP server's VERP ability.
46 +# You may set VERP_STYLE = 'Postfix' to enable it.
47 +VERP_STYLE = 'Manual'
48 +
49 +# When using Postfix style VERP you will need the following setting.
50 +POSTFIX_XVERP_OPTS = '+='
51 +
52  
53  \f
54  #####