Add missing .cgi to message
authorTollef Fog Heen <tfheen@err.no>
Sat, 27 Jul 2019 00:14:54 +0000 (02:14 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sat, 27 Jul 2019 00:14:54 +0000 (02:14 +0200)
ud-mailgate

index bd77120..80340aa 100755 (executable)
@@ -689,7 +689,7 @@ def HandleChTOTPSeed(Reply, DnRecord, Key):
     random_id = binascii.hexlify(open("/dev/urandom", "r").read(32))
     totp_file_name = "%d-%s" % (time.time(), random_id,)
 
-    msg = GPGEncrypt("Please go to %s/fetch-totp-seed?id=%s\n to fetch your TOTP seed" % (WebUILocation, totp_file_name), "0x" + Key[1], Key[4])
+    msg = GPGEncrypt("Please go to %s/fetch-totp-seed.cgi?id=%s\n to fetch your TOTP seed" % (WebUILocation, totp_file_name), "0x" + Key[1], Key[4])
 
     if msg is None:
         raise UDFormatError("Unable to generate the encrypted reply, gpg failed.")