diff --git a/exchangelib/folders.py b/exchangelib/folders.py index b074797..f649d4c 100644 --- a/exchangelib/folders.py +++ b/exchangelib/folders.py @@ -1024,7 +1024,7 @@ def get_default_folder(self, folder_cls): fld = folder_cls(account=self.account, name=folder_cls.DISTINGUISHED_FOLDER_ID, is_distinguished=True) fld.test_access() return self._folders_map.get(fld.id, fld) # Use cached instance if available - except ErrorFolderNotFound: + except (ErrorFolderNotFound, ErrorItemNotFound, ErrorNoPublicFolderReplicaAvailable): # The Exchange server does not return a distinguished folder of this type pass