From 746aad021600c1197c67b47baeda241768912643 Mon Sep 17 00:00:00 2001 From: fkrone Date: Sun, 1 Feb 2015 16:57:31 +0100 Subject: [PATCH] Fixing S/MIME certs were saved case sensitive. This caused that the mailgate might not find the certificate for a recipient even if it was available. --- register-handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/register-handler.py b/register-handler.py index 09677f1..08c2482 100644 --- a/register-handler.py +++ b/register-handler.py @@ -93,7 +93,7 @@ if __name__ == "__main__": signers = p7.get0_signers(sk) signing_cert = signers[0] - signing_cert.save(os.path.join(CERT_PATH, from_addr)) + signing_cert.save(os.path.join(CERT_PATH, from_addr.lower())) # format in user-specific data # sending success mail only for S/MIME as GPGMW handles this on its own