Revert "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."

This reverts commit 746aad0216.
This commit is contained in:
fkrone 2015-02-14 19:00:59 +01:00
parent 2ff0b7e123
commit f6ed024e36
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ if __name__ == "__main__":
signers = p7.get0_signers(sk) signers = p7.get0_signers(sk)
signing_cert = signers[0] signing_cert = signers[0]
signing_cert.save(os.path.join(CERT_PATH, from_addr.lower())) signing_cert.save(os.path.join(CERT_PATH, from_addr))
# format in user-specific data # format in user-specific data
# sending success mail only for S/MIME as GPGMW handles this on its own # sending success mail only for S/MIME as GPGMW handles this on its own