try:
M = imap4(domain, timeout=5)
M.login(email, password)
except (imap4.error, socket_error) as e:
print(
f"Error: {e}"
)
I have found the code above to return "[PRIVACYREQUIRED] Plaintext authentication disallowed on non-secure (SSL/TLS) connections." for an unknown reason and I was wondering how I could correct this error?
I have found the code above to return "[PRIVACYREQUIRED] Plaintext authentication disallowed on non-secure (SSL/TLS) connections." for an unknown reason and I was wondering how I could correct this error?