summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ec68325)
raw | patch | inline | side by side (parent: ec68325)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Jul 2001 06:14:58 +0000 (06:14 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Jul 2001 06:14:58 +0000 (06:14 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@11 57a73879-2fb5-44c3-a270-3262357dd7e2
Makefile | patch | blob | history | |
README | patch | blob | history | |
dummy_config.py | [deleted file] | patch | blob | history |
diff --git a/Makefile b/Makefile
index ac26c1513823761ee8b62d69062070d125adb497..f3a699875669c5bf63810d8229e0c89a5feac0f4 100644 (file)
--- a/Makefile
+++ b/Makefile
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 .
index e513ea5a72127929a9e42139ac42ab7913ba360f..9822bf7b916a50b23d305b7d723152d41a37c94d 100644 (file)
--- a/README
+++ b/README
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
--- 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 =
-