From e3f0bb195d7702a2867c904052639b816e782aa7 Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 30 Jul 2024 01:07:50 +0000 Subject: [PATCH] Fix doveauth logging for created accounts Currently logs look like this: `Created address: ` --- chatmaild/src/chatmaild/doveauth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatmaild/src/chatmaild/doveauth.py b/chatmaild/src/chatmaild/doveauth.py index fadd5fdd..ecaee00a 100644 --- a/chatmaild/src/chatmaild/doveauth.py +++ b/chatmaild/src/chatmaild/doveauth.py @@ -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()