comparison templates/classic/config.py @ 1612:e109d59f232d

SMTP login and TLS support added ([SF#710853] with extras ;)
author Richard Jones <richard@users.sourceforge.net>
date Thu, 24 Apr 2003 07:20:00 +0000
parents a3442208867f
children c40ed9113285 1d86402ce5e8
comparison
equal deleted inserted replaced
1611:db8545f10476 1612:e109d59f232d
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: config.py,v 1.2 2003-04-23 11:59:36 richard Exp $ 18 # $Id: config.py,v 1.3 2003-04-24 07:19:59 richard Exp $
19 19
20 import os 20 import os
21 21
22 # roundup home is this package's directory 22 # roundup home is this package's directory
23 TRACKER_HOME=os.path.split(__file__)[0] 23 TRACKER_HOME=os.path.split(__file__)[0]
24 24
25 # The SMTP mail host that roundup will use to send mail 25 # The SMTP mail host that roundup will use to send mail
26 MAILHOST = 'localhost' 26 MAILHOST = 'localhost'
27
28 # If your SMTP mail host requires a username and password for access, then
29 # specify them here.
30 # eg. MAILUSER = ('username', 'password')
31 MAILUSER = ()
32
33 # If your SMTP mail host provides or requires TLS (Transport Layer
34 # Security) then set MAILHOST_TLS = 'yes'
35 # Optionallly, you may also set MAILHOST_TLS_KEYFILE to the name of a PEM
36 # formatted file that contains your private key, and MAILHOST_TLS_CERTFILE
37 # to the name of a PEM formatted certificate chain file.
38 MAILHOST_TLS = 'no'
39 MAILHOST_TLS_KEYFILE = ''
40 MAILHOST_TLS_CERTFILE = ''
27 41
28 # The domain name used for email addresses. 42 # The domain name used for email addresses.
29 MAIL_DOMAIN = 'your.tracker.email.domain.example' 43 MAIL_DOMAIN = 'your.tracker.email.domain.example'
30 44
31 # This is the directory that the database is going to be stored in 45 # This is the directory that the database is going to be stored in

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