Skip to content

Commit 851e365

Browse files
author
Richard Jones
committed
make popgw use the Message interface
1 parent c249cf1 commit 851e365

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roundup-popgw

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: roundup-popgw,v 1.1 2001-11-01 22:07:11 richard Exp $
19+
# $Id: roundup-popgw,v 1.2 2001-11-01 22:09:36 richard Exp $
2020

2121
import sys
2222
if int(sys.version[0]) < 2:
@@ -51,10 +51,13 @@ for i in range(numMessages):
5151
for j in M.retr(i+1)[1]:
5252
s = cStringIO.StringIO('\n'.join(j))
5353
s.seek(0)
54-
handler.main(s)
54+
handler.handle_Message(Message(s))
5555

5656
#
5757
# $Log: not supported by cvs2svn $
58+
# Revision 1.1 2001/11/01 22:07:11 richard
59+
# Completely untested pop gateway. It's a start.
60+
#
5861
#
5962
#
6063
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)