Skip to content

Commit 4358c63

Browse files
author
Richard Jones
committed
stop people setting up roundup with our addresses as default
need to handle this better in the init
1 parent fba376c commit 4358c63

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

roundup/templates/classic/instance_config.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: instance_config.py,v 1.5 2001-08-07 00:24:43 richard Exp $
18+
# $Id: instance_config.py,v 1.6 2001-10-01 06:10:42 richard Exp $
1919

2020
MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
2121
HTTP_PORT=0
@@ -36,7 +36,7 @@
3636

3737
# The domain name used for email addresses.
3838
if not MAIL_DOMAIN:
39-
MAIL_DOMAIN = 'bizarsoftware.com.au'
39+
MAIL_DOMAIN = 'fill.me.in.'
4040

4141
# the next two are only used for the standalone HTTP server.
4242
if not HTTP_HOST:
@@ -54,7 +54,7 @@
5454
ISSUE_TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN
5555

5656
# The web address that the instance is viewable at
57-
ISSUE_TRACKER_WEB = 'http://www.bizarsoftware.com.au/cgi-bin/roundup.cgi/issues'
57+
ISSUE_TRACKER_WEB = 'http://some.useful.url/'
5858

5959
# The email address that roundup will complain to if it runs into trouble
6060
ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN
@@ -64,6 +64,9 @@
6464

6565
#
6666
# $Log: not supported by cvs2svn $
67+
# Revision 1.5 2001/08/07 00:24:43 richard
68+
# stupid typo
69+
#
6770
# Revision 1.4 2001/08/07 00:15:51 richard
6871
# Added the copyright/license notice to (nearly) all files at request of
6972
# Bizar Software.

roundup/templates/extended/instance_config.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: instance_config.py,v 1.5 2001-08-07 00:24:43 richard Exp $
18+
# $Id: instance_config.py,v 1.6 2001-10-01 06:10:42 richard Exp $
1919

2020
MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
2121
HTTP_PORT=0
@@ -36,7 +36,7 @@
3636

3737
# The domain name used for email addresses.
3838
if not MAIL_DOMAIN:
39-
MAIL_DOMAIN = 'bizarsoftware.com.au'
39+
MAIL_DOMAIN = 'fill.me.in.'
4040

4141
# the next two are only used for the standalone HTTP server.
4242
if not HTTP_HOST:
@@ -54,7 +54,7 @@
5454
ISSUE_TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN
5555

5656
# The web address that the instance is viewable at
57-
ISSUE_TRACKER_WEB = 'http://www.bizarsoftware.com.au/cgi-bin/roundup.cgi/issues'
57+
ISSUE_TRACKER_WEB = 'http://some.useful.url/'
5858

5959
# The email address that roundup will complain to if it runs into trouble
6060
ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN
@@ -64,6 +64,9 @@
6464

6565
#
6666
# $Log: not supported by cvs2svn $
67+
# Revision 1.5 2001/08/07 00:24:43 richard
68+
# stupid typo
69+
#
6770
# Revision 1.4 2001/08/07 00:15:51 richard
6871
# Added the copyright/license notice to (nearly) all files at request of
6972
# Bizar Software.

0 commit comments

Comments
 (0)