Mercurial > p > roundup > code
diff roundup-mailgw @ 343:ab16997d9cda
Started work on supporting a pop3-fetching server
Fixed bugs:
. [SF#477104] HTML tag error in roundup-server
. [SF#477107] HTTP header problem
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 01 Nov 2001 22:04:37 +0000 |
| parents | 18134bffab37 |
| children | 5140ccaaab1b |
line wrap: on
line diff
--- a/roundup-mailgw Wed Oct 31 06:58:51 2001 +0000 +++ b/roundup-mailgw Thu Nov 01 22:04:37 2001 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundup-mailgw,v 1.7 2001-08-07 00:24:42 richard Exp $ +# $Id: roundup-mailgw,v 1.8 2001-11-01 22:04:37 richard Exp $ import sys if int(sys.version[0]) < 2: @@ -37,13 +37,16 @@ import roundup.instance instance = roundup.instance.open(instance_home) -# invokde the mail handler +# invoke the mail handler db = instance.open('admin') handler = instance.MailGW(db) handler.main(sys.stdin) # # $Log: not supported by cvs2svn $ +# Revision 1.7 2001/08/07 00:24:42 richard +# stupid typo +# # Revision 1.6 2001/08/07 00:15:51 richard # Added the copyright/license notice to (nearly) all files at request of # Bizar Software.
