Читать все письма из почтового ящика gmail, используя apache camel

Я пытаюсь прочитать все письма из аккаунта Google Mail (Gmail - imaps) и загрузить их вложения, но могу получить только одно непрочитанное письмо и его вложения.

Размещать мой фрагмент кода.

// Download function 

public void  download() throws Exception {

        PollingConsumer pollingConsumer = null;
        CamelContext context = new DefaultCamelContext();

        Endpoint endpoint =
                context.getEndpoint("imaps://imap.gmail.com?username="
                        + mailId + "&password=" + password 
                        + "&delete=false&peek=false&unseen=true&consumer.delay=60000&closeFolder=false&disconnect=false");

        pollingConsumer = endpoint.createPollingConsumer();
        pollingConsumer.start();

        pollingConsumer.getEndpoint().createExchange();
        Exchange exchange = pollingConsumer.receive();

        log.info("exchange : " + exchange.getExchangeId());
        process(exchange);

}

// mail process function

public void process(Exchange exchange) throws Exception {
    Map<String, DataHandler> attachments = exchange.getIn().getAttachments();

    Message messageCopy = exchange.getIn().copy();

    if (messageCopy.getAttachments().size() > 0) {
        for (Map.Entry<String, DataHandler> entry : messageCopy.getAttachments().entrySet()) {
            DataHandler dHandler = entry.getValue();
            // get the file name
            String filename = dHandler.getName();

            // get the content and convert it to byte[]
            byte[] data =
                    exchange.getContext().getTypeConverter().convertTo(byte[].class, dHandler.getInputStream());

            FileOutputStream out = new FileOutputStream(filename);
            out.write(data);
            out.flush();
            out.close();
            log.info("Downloaded attachment, file name : " + filename);

        }
    }
}

Помогите мне перебрать все письма (из входящих, непрочитанные).

1 ответ

Решение

Вам нужно бежать Exchange exchange = pollingConsumer.receive(); в петле.

Например,

Exchange ex = pollingConsumer.receive();
while (ex != null) {
    process(ex);
    ex = pollingConsumer.receive();
}
Другие вопросы по тегам