Code

Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
[roundup.git] / roundup / templates / extended / interfaces.py
1 # $Id: interfaces.py,v 1.1 2001-07-23 23:16:01 richard Exp $
3 import instance_config
4 from roundup import cgi_client, mailgw 
6 class Client(cgi_client.Client): 
7     ''' derives basic mail gateway implementation from the standard module, 
8         with any specific extensions 
9     ''' 
10     TEMPLATES = instance_config.TEMPLATES
11     pass 
12  
13 class MailGW(mailgw.MailGW): 
14     ''' derives basic mail gateway implementation from the standard module, 
15         with any specific extensions 
16     ''' 
17     ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL
18     ADMIN_EMAIL = instance_config.ADMIN_EMAIL
19     MAILHOST = instance_config.MAILHOST
21 #
22 # $Log: not supported by cvs2svn $
23 #