From 436fa9a1ec83577abf70c37f776f50b4b7fdcec2 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 19 Jul 2001 06:14:58 +0000 Subject: [PATCH] minor changes to test the cvs mailout system git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@11 57a73879-2fb5-44c3-a270-3262357dd7e2 --- Makefile | 1 - README | 15 ++++++++++++--- dummy_config.py | 20 -------------------- 3 files changed, 12 insertions(+), 24 deletions(-) delete mode 100644 dummy_config.py diff --git a/Makefile b/Makefile index ac26c15..f3a6998 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,6 @@ release: rm -rf /tmp/${PACKAGE} mkdir /tmp/${PACKAGE} cp -r ${FILES} /tmp/${PACKAGE} - cp dummy_config.py /tmp/${PACKAGE} (cd /tmp; tar zcf ${PACKAGE}.tar.gz ${PACKAGE}) mv /tmp/${PACKAGE}.tar.gz . diff --git a/README b/README index e513ea5..9822bf7 100644 --- a/README +++ b/README @@ -18,9 +18,18 @@ These instructions work on redhat 6.2 and mandrake 8.0 - with the caveat that these systems don't come with python 2.0 or newer installed, so you'll have to upgrade python before this stuff will work. -Note that most of the following is configurable in the config.py, it's just -not documented. At a minimum, you'll want to change the email addresses and -mail host specification in the config. +Roundup is configurable using a localconfig.py file. It may have the +following variable declarations: + + ROUNDUP_HOME - This is the root directory for roundup + MAILHOST - The SMTP mail host that roundup will use to send mail + MAIL_DOMAIN - The domain name used for email addresses + +Any further configuration should be possible by editing config.py directly. +The email addresses used by the system by default are: + + issue_tracker@MAIL_DOMAIN - submissions of issues + roundup-admin@MAIL_DOMAIN - roundup's internal use (problems, etc) 2.0 Prerequisites diff --git a/dummy_config.py b/dummy_config.py deleted file mode 100644 index 185ed15..0000000 --- a/dummy_config.py +++ /dev/null @@ -1,20 +0,0 @@ -# This is the directory that the database is going to be stored in -# eg. DATABASE = '/home/httpd/html/roundup/db' -DATABASE = - -# The email address that mail to roundup should go to -# eg. ISSUE_TRACKER_EMAIL = 'issue_tracker@bizarsoftware.com.au' -ISSUE_TRACKER_EMAIL = - -# The email address that roundup will complain to if it runs into trouble -# eg. ADMIN_EMAIL = "roundup-admin@bizarsoftware.com.au" -ADMIN_EMAIL = - -# The SMTP mail host that roundup will use to send mail -# eg. MAILHOST = 'goanna.adroit.net' -MAILHOST = - -# Somewhere for roundup to log stuff internally sent to stdout or stderr -# eg. LOG = '/home/httpd/html/roundup/roundup.log' -LOG = - -- 2.30.2