Re: How to read a mail from pop3
Posted By:
John_Zukowski
Posted On:
Tuesday, May 29, 2001 10:06 AM
As already covered in the FAQ, the POP3 classes are not part of Java 1.1. You have to download separately.
Re: How to read a mail from pop3
Posted By:
Anonymous
Posted On:
Tuesday, May 29, 2001 06:21 AM
this looks like a problem with your classpath. You have to put the pop3.jar in
/jdk/jre/lib/ext/ for an jdk (>1.2) or
/jre/lib/ext/ for jre
or manual in your classpath :
java -classpath .:/bla/pop3.jar: theprogi.class
Alex
ps: you have also put the mailapi.jar into classpath ..