Erik Cederstrand

Results 24 issues of Erik Cederstrand

Since version 2010, Exchange has provided an autodiscover implementation that uses SOAP. It offers some advantages, notably OAuth support which the POX implementation lacks, and allows us to reuse the...

enhancement

According to https://techcommunity.microsoft.com/t5/exchange-team-blog/upcoming-changes-to-exchange-web-services-ews-api-for-office-365/ba-p/608055, Basic Authentication is going away in Office365 as of ~October 13, 2020~ second half of 2021. We should see if we can provide a better authentication user...

enhancement

According to https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/public-folder-access-with-ews-in-exchange#routing-public-folder-requests, setting the `X-PublicFolderMailbox` HTTP header is necessary in some circumstances. The logic in deciding when to set it and what to put as the value is described...

enhancement

Defer resolving of the actual command path to when the command is called, not when it's imported. This allows providing a custom PATH via _env to customize resolving of the...

If we don't reset `self.sock` on connection error, then `my_socket.is_open()` will still return `True` after `TTransportException` is thrown. This may lead consumers to believe the `TSocket` can still be used....

`pip install pytraj` fails on Python 3.8 with `Detected use of pip; you must set CPPTRAJHOME if there is no cpptraj in the current folder`. This is because there are...

I installed eventlet and dnspython with some extensions (`dnspython[doh,trio]`) and am getting this stack trace when importing: ```python >>> import eventlet Traceback (most recent call last): File "", line 1,...

Getting this stack trace when I try to run `setup.py build_ext` on the master branch: ```bash $ python3 setup.py build_ext bdist_wheel [...] Error compiling Cython file: ------------------------------------------------------------ ... # See...