Erik Cederstrand

Results 206 comments of Erik Cederstrand

Did you upgrade exchangelib at that time? If not, then it’s a server issue. If you did, then please follow the advice above.

@Tre-Seibert Then I don't think it's the same issue. This one is apparently specific to exchangelib 5.1.0 and Ubuntu 20.04. Also, if you downgraded and still have the issue, then...

Releasing a new version of exchangelib would not affect exchangelib 4.7.4 which @Tre-Seibert apparently has the same issue with. For this issue, we still need to establish what exchangelib 5.1.0...

@ZamElek You mean that you are also getting `ErrorFolderNotFound` for folders that do exist, on exchangelib 5.1.0 installed on Ubuntu 20.04? And exchangelib 5.1.0 on other Ubuntu versions work? It's...

Since you're mentioning public folders, can you please try out https://github.com/ecederstrand/exchangelib/commit/f65079f372a35d09a3d4b3e929ecc53bd60b6fc1?

I don't have access to a test account with public folders, so you'll have to debug this yourself. Try adding a `breakpoint()` in `__truediv__` and stepping through the code.

@ZamElek It's possible that https://github.com/ecederstrand/exchangelib/commit/d9035d03960797f9277381845e4ec98f837798ea fixed this issue. Can you try it out?

I think the original issue is solved with patches released in v5.3.0. If you still have problems, please open a new issue containing a minimal reproducer, and error message or...

I think the best option to find out what the difference between sending an item attachment from exchange and from Outlook is to create two identical emails , one from...

I was thinking of something along these lines: ```python from exchangelib.items import Message item_from_exchangelib = account.inbox.get(subject="Hello from exchangelib") item_from_outlook = account.inbox.get(subject="Hello from outlook") for f in Message.FIELDS: exchangelib_val = getattr(item_from_exchangelib,...