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

fix installer bugs

This commit is contained in:
KiekerJan
2022-02-01 23:14:26 +01:00
parent d017c8b04c
commit 72b08d6b9a
3 changed files with 5 additions and 13 deletions

View File

@@ -833,7 +833,7 @@ def write_dkim_tables(domains, env):
dkim_rsa_key_file = os.path.join(env['STORAGE_ROOT'], 'mail/dkim/box-rsa.key')
dkim_ed_key_file = os.path.join(env['STORAGE_ROOT'], 'mail/dkim/box-ed25519.key')
if not os.path.exists(dkim_rsa_key_file) || not os.path.exists(dkim_ed_key_file):
if not os.path.exists(dkim_rsa_key_file) or not os.path.exists(dkim_ed_key_file):
# Looks like DKIMpy is not installed.
return False