[csmaild-cvs] csmaild/src/Imap Connection.cs,1.6,1.7
Brought to you by:
tamc
From: <ta...@us...> - 2003-07-28 00:15:24
|
Update of /cvsroot/csmaild/csmaild/src/Imap In directory sc8-pr-cvs1:/tmp/cvs-serv22151/src/Imap Modified Files: Connection.cs Log Message: Added MessageCollection to store the collection of messages in a mailbox DELETE should work now, had to modify the mail store to support deleting of messages and mailboxes Index: Connection.cs =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/Imap/Connection.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Connection.cs 26 Jul 2003 23:09:25 -0000 1.6 --- Connection.cs 28 Jul 2003 00:15:17 -0000 1.7 *************** *** 190,194 **** // this command will parse through the incoming line and make sure it's valid if(ParseAndValidate(line) && mCurrentCommand.Process()) ! ;// good processing ReadCommand(); } --- 190,195 ---- // this command will parse through the incoming line and make sure it's valid if(ParseAndValidate(line) && mCurrentCommand.Process()) ! { ! } ReadCommand(); } |