Using older versions of Outlook for Mac for personal email and calendar
This is how I fixed this annoying issue for my env:
- Outlook 16.34
- Catalina 10.15.3
mdimport -i ~/Library/Group\ Containers/UBF8T346G9.Office/Outlook/Outlook\ 15\Profiles/Main\ Profile/Data/Tasks/
find ~/Library/Group\ Containers/UBF8T346G9.Office/Outlook/Outlook\ 15\Profiles/Main\ Profile/Data/Messages/ -type f -mtime -2 -exec mdimport -i "{}" ;
I wish you the best.
Slight typo in those commands; both paths are missing a space between "15" and "Profiles". Here's the corrected commands:
mdimport -i ~/Library/Group\ Containers/UBF8T346G9.Office/Outlook/Outlook\ 15\ Profiles/Main\ Profile/Data/Tasks/
find ~/Library/Group\ Containers/UBF8T346G9.Office/Outlook/Outlook\ 15\ Profiles/Main\ Profile/Data/Messages/ -type f -mtime -2 -exec mdimport -i "{}" ;