You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-overlay/profiles/templates/3.6/3_ac_install_live/1-merge/net-mail/dovecot/fix_calculate_server

13 lines
524 B

# Calculate exec=/bin/bash pkg(sys-apps/calculate-server)!=&&pkg(net-mail/dovecot)>=2.3&&grep(/var/lib/calculate/calculate.env,sr_mail_set\s+=\s+on)!=&&grep(/etc/dovecot/conf.d/10-ssl.conf,^ssl_dh)==
echo "ssl_dh = </etc/ssl/dovecot/dh.pem" >>/etc/dovecot/conf.d/10-ssl.conf
if ! [[ -f /etc/ssl/dovecot/dh.pem ]]
then
dd if=/var/lib/dovecot/ssl-parameters.dat bs=1 skip=88 | openssl dhparam -inform der >/etc/ssl/dovecot/dh.pem
chown dovecot. /etc/ssl/dovecot/dh.pem
chmod 600 /etc/ssl/dovecot/dh.pem
fi
true