Automatically import existing local CA cerificates

This commit is contained in:
David Duque 2021-02-01 02:20:38 +00:00
parent e6f22c53e5
commit ba68bd9941
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
2 changed files with 13 additions and 1 deletions

3
.gitignore vendored
View File

@ -5,4 +5,5 @@ tools/__pycache__/
externals/
.env
.vagrant
api/docs/api-docs.html
api/docs/api-docs.html
mailinabox-ca.crt

View File

@ -126,3 +126,14 @@ EOF
# Start the management server.
restart_service mailinabox
# FOR DEVELOPMENT PURPOSES ONLY:
# If there is a CA certificate in the folder, install it.
# MIAB will only accept a manual certificate installation
# if it is signed by a CA trusted by it.
if [[ -f mailinabox-ca.crt ]]; then
echo "Custom CA certificate detected. Installing..."
rm -f /usr/local/share/ca-certificates/mailinabox-ca.crt
cp mailinabox-ca.crt /usr/local/share/ca-certificates/
update-ca-certificates --fresh
fi