Commit 2e084439 authored by Łukasz Nowak's avatar Łukasz Nowak

User can have @ in its name.

parent a27c7e60
......@@ -61,7 +61,7 @@ if protocol == \'smtps\':\n
else:\n
force_tls = False\n
\n
auth_item = promise_url.split(\'@\', 1)\n
auth_item = promise_url.rsplit(\'@\', 1)\n
if len(auth_item) == 2:\n
auth, promise_url = auth_item\n
smtp_uid, smtp_pwd = auth.split(\':\')\n
......
21
\ No newline at end of file
22
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment