From 8a552664fb81b23f7e6ad23864f1b031a2592b47 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Sat, 27 Jul 2019 02:15:14 +0200 Subject: [PATCH] Write uid to file too --- ud-mailgate | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ud-mailgate b/ud-mailgate index 80340aa..0d6d330 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -704,7 +704,8 @@ def HandleChTOTPSeed(Reply, DnRecord, Key): lc = connect_to_ldap_and_check_if_locked(DnRecord) # Save the seed so the user can pick it up. f = open(os.path.join(TOTPTicketDirectory, totp_file_name), os.O_WRONLY | os.O_CREAT) - f.write(seed) + print >> f, seed + print >> f, GetAttr(DnRecord, "uid") f.close() # Modify the password -- 2.20.1