Как прочитать все папки из hotmail по javax.mail? - PullRequest
0 голосов
/ 04 марта 2019

Этот код находит только папку INBOX.Мне нужно прочитать Sent Items папку.

public class Main {

    public static void main(String args[]) {
        String username = "xxxxxx@hotmail.fr";
        String password = "xxxxxx";
        try {
            String host = "pop3.live.com";
            Properties pop3Props = new Properties();
            pop3Props.setProperty("mail.pop3s.port", "995");
            Session session = Session.getInstance(pop3Props, null);
            Store store = session.getStore("pop3s");
            store.connect(host, 995, username, password);


            Folder[] f = store.getDefaultFolder().list("*");
            for (Folder element : f) {
                System.out.println(element.getFullName()); // this only prints INBOX
            }

        } catch (Exception e) {
            System.err.println(e);
        }
    }
}
...