Hello,
i get suddenly an error, it was already working
java.lang.Illeg alStateExceptio n: Not connected
i get suddenly an error, it was already working
java.lang.Illeg alStateExceptio n: Not connected
Code:
public void login(String u, String p) {
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", "imap");
props.setProperty("mail.imap.host", "mail.p.pl");
props.setProperty("mail.imap.port", "143");
try {
Session session = Session.getDefaultInstance(props, null);
store = session.getStore("imap");
store.connect("mail.p.pl",u,p);
Comment