Commit 66192392 authored by Joshua Tauberer's avatar Joshua Tauberer

the SSL private key would be overwritten if ssl_certificate.pem file was...

the SSL private key would be overwritten if ssl_certificate.pem file was deleted; maybe the cause of #98
parent 834a7b90
...@@ -21,7 +21,7 @@ source /etc/mailinabox.conf # load global vars ...@@ -21,7 +21,7 @@ source /etc/mailinabox.conf # load global vars
apt_install openssl apt_install openssl
mkdir -p $STORAGE_ROOT/ssl mkdir -p $STORAGE_ROOT/ssl
if [ ! -f $STORAGE_ROOT/ssl/ssl_certificate.pem ]; then if [ ! -f $STORAGE_ROOT/ssl/ssl_private_key.pem ]; then
# Generate a new private key if one doesn't already exist. # Generate a new private key if one doesn't already exist.
# Set the umask so the key file is not world-readable. # Set the umask so the key file is not world-readable.
(umask 077; hide_output \ (umask 077; hide_output \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment