X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=c399682aa5fa38621a5d8cb49a8af4e52b443516;hb=35eba748d385bf2d69bd7dc8bcf4d5eb4f0e6b13;hp=2afcf7adf1dd1f0b8a7f6cb808f77cd7ff83eb7b;hpb=cd070e8b8eb8f3b9e6fcd42b5b66033a004bb5e6;p=dovecot-cn.git diff --git a/debian/postinst b/debian/postinst index 2afcf7a..c399682 100755 --- a/debian/postinst +++ b/debian/postinst @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e [ "$1" = "configure" ] || exit 0 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx @@ -31,7 +33,12 @@ cp_check_and_sed 'pop3_client_workarounds' \ /etc/dovecot/conf.d/20-pop3.conf || true cp_check_and_sed '#ssl_cipher_list' \ - 's/#ssl_cipher_list.*/ssl_cipher_list = ALL:!aNULL:!eNULL:!ADH!LOW:!MEDIUM:!EXP:!SSLv2:HIGH/g' \ + 's/#ssl_cipher_list.*/ssl_cipher_list = ALL:!aNULL:!eNULL:!ADH!LOW:!MEDIUM:!EXP:HIGH/g' \ + /etc/dovecot/conf.d/10-ssl.conf || true + +# izbacujemo SSLv2 +cp_check_and_sed 'ssl_cipher_list' \ + 's/:\!SSLv2//g' \ /etc/dovecot/conf.d/10-ssl.conf || true # trazio zelja @@ -62,18 +69,29 @@ fi -# dodao ico, gasi stare SSL protokole +# dodao ico, gasi SSLv3 protokol cp_check_and_sed '#ssl_protocols =' \ - 's/^#ssl_protocols.*/ssl_protocols = !SSLv2 !SSLv3/g' \ + 's/^#ssl_protocols.*/ssl_protocols = !SSLv3/g' \ /etc/dovecot/conf.d/10-ssl.conf || true -# restart -if [ -x /usr/sbin/invoke-rc.d ]; then - [ -x /etc/init.d/dovecot ] && invoke-rc.d dovecot restart -else - [ -x /etc/init.d/dovecot ] && /etc/init.d/dovecot restart +# dodao zelja, gasi stare SSL protokole +cp_check_and_sed 'ssl_protocols =' \ + 's/\!SSLv2 //g' \ + /etc/dovecot/conf.d/10-ssl.conf || true + +# dodao zelja, gasi stare SSL protokole/ciphere u 95-cn9-upgrade.conf ako postoje +if [ -f /etc/dovecot/conf.d/95-cn9-upgrade.conf ]; then + cp_check_and_sed 'ssl_protocols =' \ + 's/\!SSLv2 //g' \ + /etc/dovecot/conf.d/95-cn9-upgrade.conf || true + cp_check_and_sed 'ssl_cipher_list' \ + 's/:\!SSLv2//g' \ + /etc/dovecot/conf.d/95-cn9-upgrade.conf || true fi +# restart +service dovecot restart || true + #DEBHELPER# exit 0