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
When password contains % sign, it has to be escaped with %%. Otherwise you will get 530 Login authentication failed error.
It happens because commands are pre-formatted before sending them to textproto.Cmd. As a result, the command text is being used as a format parameter without arguments, so that the password "a%b" will turn to "a%!b(MISSING)"
The text was updated successfully, but these errors were encountered:
When password contains % sign, it has to be escaped with %%. Otherwise you will get
530 Login authentication failed
error.It happens because commands are pre-formatted before sending them to textproto.Cmd. As a result, the command text is being used as a format parameter without arguments, so that the password "a%b" will turn to "a%!b(MISSING)"
The text was updated successfully, but these errors were encountered: