1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-07 16:17:23 +01:00

dont save the CSR generated to make self-signed certificates for non-primary domains (it has no value and might be confusing)

This commit is contained in:
Joshua Tauberer
2015-01-31 13:24:26 +00:00
parent a3e526e818
commit 3187053b3a
4 changed files with 22 additions and 28 deletions

View File

@@ -249,7 +249,7 @@ def dns_get_dump():
@authorized_personnel_only
def ssl_get_csr(domain):
from web_update import get_domain_ssl_files, create_csr
ssl_key, ssl_certificate, csr_path = get_domain_ssl_files(domain, env)
ssl_key, ssl_certificate = get_domain_ssl_files(domain, env)
return create_csr(domain, ssl_key, env)
@app.route('/ssl/install', methods=['POST'])