diff roundup/templates/classic/config.rc @ 604:13719594278b config-0-4-0-branch

I've re-worked the config structure a little so it's simpler (one less file) and added a unit test so we can be sure it's working.
author Richard Jones <richard@users.sourceforge.net>
date Wed, 06 Feb 2002 07:11:13 +0000
parents a5cd27d33516
children
line wrap: on
line diff
--- a/roundup/templates/classic/config.rc	Wed Feb 06 04:29:17 2002 +0000
+++ b/roundup/templates/classic/config.rc	Wed Feb 06 07:11:13 2002 +0000
@@ -1,15 +1,46 @@
-[base]
-full_name=howdy
-email=issue_tracker@%(domain)s
-url=http://some.useful.url
-
-# The email address that roundup will complain to if it runs into trouble
-admin_email=roundup-admin@%(domain)s
+#
+# Instance-specific configuration file. Note that this file has the
+# following variables defined by default:
+#
+#   'instance_home': the home dir
+#   'http_port': '80',
+#   'database': '%(instance_home)s/db',
+#   'templates': '%(instance_home)s/html',
+#   'log': '%(instance_home)s/log',
+#   'filter_position': 'bottom',
+#   'anonymous_access': 'deny',
+#   'anonymous_register': 'deny',
+#   'messages_to_author': 'no',
+#   'email_signature_position': 'bottom',
+#
+# These vars are obtained from the roundup base config file, roundup.rc or
+# from the application defaults if not defined in roundup.rc.
+#
+# The values
+#  . instance_name
+#  . mailhost
+#  . mail_domain
+#  . issue_tracker_email
+#  . issue_tracker_web
+#  . admin_email
+# are REQUIRED for roundup operation. You must set these options to some
+# value.
+#
 
-[mail]
-host=localhost
-domain=fill.me.in
+[DEFAULT]
+#instance_name = My Test Instance
+#mailhost = mail.host
+#mail_domain = blah.dot.com
+#issue_tracker_email = tracker@%(mail_domain)s
+#issue_tracker_web = http://tracker.blah.dot.com/
+#admin_email = tracker-admin@ekit-inc.com
 
-[standalone_http]
-host=
-port=
+# You may override the configuration settings for particular components of
+# roundup by putting values below. TODO: example
+[MAIL GATEWAY]
+
+[HTTP SERVER]
+
+[CGI]
+
+[ADMIN]

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