You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Outlook 2016 cannot authenticate with AUTH LOGIN, because of the missing ":" and because 334 is sent as unicode over the wire, instead of plain ascii.
The ":" at the end and changing: encode_b64 to
def encode_b64(data):
'''Wrapper for b64encode, without having to struggle with bytestrings.'''
byte_string = data.encode('utf-8')
encoded = base64.b64encode(byte_string)
return encoded
makes it possible for me to let outlook 2016 connect
The strings to be encoded are:
Mind the ":" at the end!
The text was updated successfully, but these errors were encountered: