diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-22 16:29:00 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-22 18:29:42 +0200 |
commit | 8cf1d2f9f0f49f7d77f24e5302cc9ea995d56f9e (patch) | |
tree | 7c6d9a5487083bfed2435741a5c92b201b7c5187 /main/dovecot/dovecot.post-install | |
parent | 94048b3da99cb81a8bffa47bc212e58d465dd32a (diff) | |
download | aports-8cf1d2f9f0f49f7d77f24e5302cc9ea995d56f9e.tar.bz2 aports-8cf1d2f9f0f49f7d77f24e5302cc9ea995d56f9e.tar.xz |
main/dovecot: more secure default config
Diffstat (limited to 'main/dovecot/dovecot.post-install')
-rw-r--r-- | main/dovecot/dovecot.post-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/dovecot/dovecot.post-install b/main/dovecot/dovecot.post-install index c014fcbb47..5053dddc33 100644 --- a/main/dovecot/dovecot.post-install +++ b/main/dovecot/dovecot.post-install @@ -3,7 +3,7 @@ # based on doc/mkcert.sh # if ssl disabled then lets just exit -doveconf ssl 2>/dev/null | grep -q 'yes' || exit 0 +doveconf ssl 2>/dev/null | grep -Eq '(yes|required)' || exit 0 # Generates a self-signed certificate. OPENSSL=${OPENSSL-openssl} |