I have a Java 1.8 program running on the Domino 10.0.1 server which reads POP3/IMAP MIME messages and creates a Notes MIME mail document from it.
Everything works fine, except that some (very few) messages do not convert the coded MIME headers. They are then shown in the Notes client in this ugly format.
From: =?utf-8?Q?Test=20Subject?= <anyname@acme.com>
I have set "UTF-8" on all possible places and disabled the MIME to rich-text conversion.
properties.setProperty("mail.mime.charset", "UTF-8");
...
boolean savedConversionFlag = dbGetSession().isConvertMime();
dbGetSession().setConvertMime(false);
What could cause this?