comparison doc/customizing.txt @ 1614:137b26174a0c

oops, forgot to document the SMTP changes
author Richard Jones <richard@users.sourceforge.net>
date Thu, 24 Apr 2003 07:34:13 +0000
parents a3442208867f
children 4a47eb555e51
comparison
equal deleted inserted replaced
1613:12637989ca4b 1614:137b26174a0c
1 =================== 1 ===================
2 Customising Roundup 2 Customising Roundup
3 =================== 3 ===================
4 4
5 :Version: $Revision: 1.83 $ 5 :Version: $Revision: 1.84 $
6 6
7 .. This document borrows from the ZopeBook section on ZPT. The original is at: 7 .. This document borrows from the ZopeBook section on ZPT. The original is at:
8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
9 9
10 .. contents:: 10 .. contents::
85 The tracker home directory. The above default code will automatically 85 The tracker home directory. The above default code will automatically
86 determine the tracker home for you, so you can just leave it alone. 86 determine the tracker home for you, so you can just leave it alone.
87 87
88 **MAILHOST** - ``'localhost'`` 88 **MAILHOST** - ``'localhost'``
89 The SMTP mail host that roundup will use to send e-mail. 89 The SMTP mail host that roundup will use to send e-mail.
90
91 **MAILUSER - ``()``
92 If your SMTP mail host requires a username and password for access, then
93 specify them here. eg. ``MAILUSER = ('username', 'password')``
94
95 **MAILHOST_TLS - ``'no'``
96 If your SMTP mail host provides or requires TLS (Transport Layer
97 Security) then set ``MAILHOST_TLS = 'yes'``
98
99 **MAILHOST_TLS_KEYFILE - ``''``
100 If you're using TLS, you may also set MAILHOST_TLS_KEYFILE to the name of
101 a PEM formatted file that contains your private key.
102
103 **MAILHOST_TLS_CERTFILE - ``''``
104 If you're using TLS and have specified a MAILHOST_TLS_KEYFILE, you may
105 also set MAILHOST_TLS_CERTFILE to the name of a PEM formatted certificate
106 chain file.
90 107
91 **MAIL_DOMAIN** - ``'tracker.domain.example'`` 108 **MAIL_DOMAIN** - ``'tracker.domain.example'``
92 The domain name used for email addresses. 109 The domain name used for email addresses.
93 110
94 **DATABASE** - ``os.path.join(TRACKER_HOME, 'db')`` 111 **DATABASE** - ``os.path.join(TRACKER_HOME, 'db')``

Roundup Issue Tracker: http://roundup-tracker.org/