Fixed self-signed cert generation (#1183)

Added optional FQDN arguement to setup.sh script which avoids using temporary container hostname for cert names. Also fixed issue with certs being saved outside config volume
This commit is contained in:
j-marz 2019-07-29 19:14:36 +10:00 committed by Thomas VIAL
parent cba6b07391
commit 42675ba7ad
2 changed files with 21 additions and 8 deletions

View File

@ -70,7 +70,7 @@ SUBCOMMANDS:
config:
$0 config dkim <keysize> (default: 2048)
$0 config ssl
$0 config ssl <fqdn>
relay:
@ -217,7 +217,7 @@ case $1 in
_docker_image generate-dkim-config $2
;;
ssl)
_docker_image generate-ssl-certificate
_docker_image generate-ssl-certificate "$2"
;;
*)
_usage

View File

@ -1,13 +1,26 @@
#!/bin/sh
#!/bin/bash
FQDN=$(hostname --fqdn)
set -e
cd /ssl
# check if FQDN was passed as arguement in setup.sh
if [ -z "$1" ]; then
FQDN="$(hostname --fqdn)"
else
FQDN="$1"
fi
ssl_cfg_path="/tmp/docker-mailserver/ssl"
if [ ! -d "$ssl_cfg_path" ]; then
mkdir "$ssl_cfg_path"
fi
cd "$ssl_cfg_path" || { echo "cd $ssl_cfg_path error"; exit; }
# Create CA certificate
/usr/lib/ssl/misc/CA.pl -newca
# Create an unpassworded private key and create an unsigned public key certificate
openssl req -new -nodes -keyout /ssl/$FQDN-key.pem -out /ssl/$FQDN-req.pem -days 3652
openssl req -new -nodes -keyout "$ssl_cfg_path"/"$FQDN"-key.pem -out "$ssl_cfg_path"/"$FQDN"-req.pem -days 3652
# Sign the public key certificate with CA certificate
openssl ca -out /ssl/$FQDN-cert.pem -infiles /ssl/$FQDN-req.pem
openssl ca -out "$ssl_cfg_path"/"$FQDN"-cert.pem -infiles "$ssl_cfg_path"/"$FQDN"-req.pem
# Combine certificates for courier
cat /ssl/$FQDN-key.pem /ssl/$FQDN-cert.pem > /ssl/$FQDN-combined.pem
cat "$ssl_cfg_path"/"$FQDN"-key.pem "$ssl_cfg_path"/"$FQDN"-cert.pem > "$ssl_cfg_path"/"$FQDN"-combined.pem