Fix doveauth logging for created accounts

Currently logs look like this:
`Created address: <chatmaild.user.User object at 0x7fafac36bcd0>`
This commit is contained in:
link2xt
2024-07-30 01:07:50 +00:00
committed by holger krekel
parent fae0863633
commit e3f0bb195d

View File

@@ -141,7 +141,7 @@ class AuthDictProxy(DictProxy):
return
user.set_password(encrypt_password(cleartext_password))
print(f"Created address: {user}", file=sys.stderr)
print(f"Created address: {addr}", file=sys.stderr)
return user.get_userdb_dict()