message
2 TopicsMail: Problems Get MIME content of a message
Hello, I wrote a program in Java that monitors an inbox and retrieves new incoming emails and, after successful processing, moves them to a Processed folder. For a few emails, retrieving the MIME content of a message fails and they are moved to an error directory. If I move the emails back to the inbox by hand/in Outlook, they are processed normally. If I move them programmatically or via a Prower Automate flow, the problem remains and they cannot be processed. Ideas? Error: java.util.concurrent.ExecutionException: java.nio.charset.MalformedInputException: Input length = 1 at org.apache.hc.core5.concurrent.BasicFuture.getResult(BasicFuture.java:72) at org.apache.hc.core5.concurrent.BasicFuture.get(BasicFuture.java:85)335Views0likes0CommentsWeblink of Message object doesn't work anymore with 'Window.open()' since yesterday
Hello, The 'weblink' property with url to an Outlook message (created by Mail API) was changed in behaviour since yesterday? If I use the Outlook weblink for a popup with javascript 'window.open(...)' for example, the returned object references no longer for the popup because of redirect maybe? Example: let webUrl = "https://outlook.office365.com/owa/?ItemID=..."; let otherWindow= window.open(webUrl, 'otherWindowCtx', "popup"); onst interval = setInterval(async () => { if (otherWindow.closed) { console.log("window closed"); clearInterval(interval ); } }, 1000); The 'otherWindow'.closed is immedialty set to true and the object references are empty but the window with Outlook mail is still open. And this is only happening with Outlook urls, not other sites. And again, this is happening since yesterday without code changes.496Views0likes0Comments