Re: javax.mail.MethodNotSupportedException.
Posted By:
sharona_f
Posted On:
Wednesday, August 15, 2001 12:39 AM
Hi
Pop3 does not support expunge method to delete mail.
use the following code , when using pop3.
msg.setFlag(Flags.Flag.DELETED,true);
folder.close(true);
folder.open(Folder.READ_WRITE);
Re: javax.mail.MethodNotSupportedException.
Posted By:
John_Zukowski
Posted On:
Monday, August 13, 2001 12:35 PM
There is only one folder in POP. You can't delete the folder.