This is the part where I process the message. The same code works fine in version 2.1.4.
public void receive(MimeMessage message) {
try {
Object content = message.getContent();
if...
Type: Posts; User: Mikael; Keyword(s):
This is the part where I process the message. The same code works fine in version 2.1.4.
public void receive(MimeMessage message) {
try {
Object content = message.getContent();
if...
I'm using 2.2 because I need to define my own search term strategy. Version 2.1.4 does not yet provide this possibility, right?
Thank you for the description of the workaround, it's almost working ;)
My problem is now, that I can't access anymore the attachment in the mail which was working with version 2.1.4, I compared...
Thanks for your answer!
My problem is that I would need to get every mail which is set as UNREAD, so that I get the mail again when the user marks it as unread. This does not work with the...
Hi everybody!
I'm trying to use the new feature to create my own SearchTermStrategy, because I need to get all the mails which have not set the SEEN flag.
I'm using the inbound-channel-adapter...