diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2016-05-13 04:01:25 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2016-05-13 04:01:25 +0900 |
commit | 20d992a6713041c322d91a9029ecfde251a6ad62 (patch) | |
tree | 6311b3a2910501c6b676f3b550127270854dac85 /messages/ja/doc/Defaults.py.in | |
parent | 92fe2d084b3db7c533b3860428afccec7af95036 (diff) | |
download | mailman2-20d992a6713041c322d91a9029ecfde251a6ad62.tar.gz mailman2-20d992a6713041c322d91a9029ecfde251a6ad62.tar.xz mailman2-20d992a6713041c322d91a9029ecfde251a6ad62.zip |
Merge change of original Defaults.py.in up to rev 1649 (not translated)
Diffstat (limited to 'messages/ja/doc/Defaults.py.in')
-rwxr-xr-x | messages/ja/doc/Defaults.py.in | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/messages/ja/doc/Defaults.py.in b/messages/ja/doc/Defaults.py.in index 38c0543b..cadf11c5 100755 --- a/messages/ja/doc/Defaults.py.in +++ b/messages/ja/doc/Defaults.py.in @@ -20,7 +20,7 @@ # [����] ���Υե�����ϡ�Mailman 2.1.22 ����ʪ�˴ޤޤ�� # Mailman/Defaults.py.in (launchpad.net �Ǥ� Bazaar ��ӥ����� -# 1626) �Υ�������ʬ�����ܸ� (���̸�) ������������ΤǤ��� +# 1649) �Υ�������ʬ�����ܸ� (���̸�) ������������ΤǤ��� # �������ξ��ϸ�ʸ��Ʊ�͡�GNU ���̸������ѵ�������� (GNU # General Public License) �˽����ޤ� (�嵭�⻲�Ȥ�������)�����Ƥ� # ���Τ�����Τ���ˤϡ�����ʪ�˴ޤޤ�븶ʸ�Ȥ���뤳�Ȥ� @@ -530,6 +530,12 @@ PUBLIC_MBOX = No #DELIVERY_MODULE = 'Sendmail' DELIVERY_MODULE = 'SMTPDirect' +# Sometimes there are 'low level' smtplib failures that are difficult to +# debug. To enable very verbose debugging info from smtplib to Mailman's +# error log, set the following to 1. This will only work if +# DELIVERY_MODULE = 'SMTPDirect' and Python is >= 2.4. +SMTPLIB_DEBUG_LEVEL = 0 + # ��MTA�פˤϡ��ꥹ�Ȥ�����������������ꤹ�뤿��ε�ǽ��MTA��˸��̤� # �������� Mailman/MTA �ˤ���⥸�塼�����ꤷ�ޤ���Exim �Τ褦�� # �������ꥹ�Ȥ�ưŪ��ǧ������褦�����ꤹ�뤳�Ȥ��Ǥ���MTA�⤢��ޤ����� @@ -629,6 +635,22 @@ SMTPPORT = 0 # smtplib �˽���ͤ�Ǥ���ޤ� # sendmail �ߴ��ץ������ؤ�������Ԥ����ޥ�ɡ� SENDMAIL_CMD = '/usr/lib/sendmail' +# SMTP authentication for DELIVERY_MODULE = 'SMTPDirect'. To enable SASL +# authentication for SMTPDirect, set SMTP_AUTH = Yes and provide appropriate +# settings for SMTP_USER and SMTP_PASSWD. +SMTP_AUTH = No +SMTP_USER = '' +SMTP_PASSWD = '' + +# If using SASL authentication (SMTP_AUTH = Yes), set the following to Yes +# to also use TLS. This has no effect if SMTP_AUTH = No. +SMTP_USE_TLS = No + +# When using TLS the following should be set to the hostname that should be +# used in order to identify Mailman to the SMTP server. By default, it +# uses DEFAULT_URL_HOST. Normally, you should not change this. +SMTP_HELO_HOST = DEFAULT_URL_HOST + # Usenet �ؤ���Ƥ��뤤�ϱ����� NNTP �����Ф�ǧ�ڤ�ɬ�פʾ��ˤϤ����� # �ѿ������ꤷ�Ƥ���������ǧ�ڤ����פʤ�С���None�פ�ξ�����ѿ��� # ���ꤷ�Ƥ��������� |