Mercurial > p > roundup > code
diff roundup-mailgw @ 389:7d7cb5319fc0
re-open the database as the author in mail handling
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 13 Nov 2001 21:44:44 +0000 |
| parents | 2ff102523713 |
| children | fe89e341816b |
line wrap: on
line diff
--- a/roundup-mailgw Mon Nov 12 23:17:38 2001 +0000 +++ b/roundup-mailgw Tue Nov 13 21:44:44 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.13 2001-11-09 01:05:55 richard Exp $ +# $Id: roundup-mailgw,v 1.14 2001-11-13 21:44:44 richard Exp $ import sys, os, re, cStringIO if int(sys.version[0]) < 2: @@ -140,7 +140,7 @@ # get a mail handler db = instance.open('admin') - handler = instance.MailGW(db) + handler = instance.MailGW(instance, db) # if there's no more arguments, read a single message from stdin if len(args) == 2: @@ -168,6 +168,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.13 2001/11/09 01:05:55 richard +# Fixed bug #479511 ] mailgw to pop once engelbert gruber tested the POP +# gateway. +# # Revision 1.12 2001/11/08 05:16:55 richard # Rolled roundup-popgw into roundup-mailgw. Cleaned mailgw up significantly, # tested unix mailbox some more. POP still untested.
