When receiving new unread mails/messages in my configured Office 365 Outlook Web App service, NO red badge icon is displayed for this service. The service properly detects incoming mails and displays corresponding system notification, but NO red badge icon is displayed.
I'm using Franz in my Desktop with following configuration:
Do you have "The new Outlook" enabled in the top right?

I found that it doesn't show up when I have it ticked.
(and additionally, the calendar tab at the bottom opens in a new window instead of the current window with this button ticked, potentially related to #747)
+1 to this. When switched to "New Outlook" notifications aren't working and the calendar opens in a new window.
I have the same issue. But when I go back to the old ui, It also don't work.
No more notification for outlook 365
I went back to the "Old Outlook" UI and my Franz notifications came back. (OSX)
What about the desktop's notifications? I can't manage to see them.
I'm not getting the badge or any notifications with the new outlook. When I go back to the old Outlook I get the badge and notifications again.
There is no more such an option to switch to the old Outlook, making notifications definitely not working :-(
I looked at how Franz actually looks for the number of unread messages, and I hacked a way to fix it. I'm no javascript expert so I know that it's not the best (I get the text of a div and split it around), but heh, it works.
First, open .config/Ferdi/recipes/office365-owa/webview.js
Then change the const unreadMail for the following atrocity:
const unreadMail = parseInt(jQuery("div[title*='Inbox']").first().text().split("Inbox")[1].split("unread")[0], 10);
Not sure if it's any better, but I took a kick at the can after seeing your comment:
const unreadMail = parseInt(jQuery("div[title*='Inbox'] > span > span").first().contents().first().text(), 10);
@strigona-worksight it looks better, thanks! I never used jQuery before trying to fix this ;-)
I'm far from a jQuery expert. I tracked down the repo for this recipe and there's an outstanding PR to get this fixed: https://github.com/adambirds/recipe-office365-owa/pull/10
Yeah pretty sure the author isn't updating it since my PR there is almost a year old. Maybe this is due for a takeover. I see your note on my PR there @strigona-worksight - I'll apply your fix to my PR at least. 馃し鈥嶁檪
Latest commit 254f289 on Oct 23, 2017
Yeah....
Ahh I have spread the conversation all over the place.. sorry. I have submitted an updated fork to Franz: https://github.com/meetfranz/plugins/issues/435
I have the same problem with Windows 10 OS
Most helpful comment
+1 to this. When switched to "New Outlook" notifications aren't working and the calendar opens in a new window.