MISP/docs/CONFIG.SMIME.md

34 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

#SMIME patch
## Create SMIME directory
```bash
mkdir /var/www/MISP/.smime
```
## Copy your public x509 certificate (for signing) in PEM format
```bash
cp email@address.com.pem /var/www/MISP/.smime/email@address.com.pem
```
## Copy your private key for signing email
```bash
cp email@address.com.key /var/www/MISP/.smime/email@address.com.key
```
### Set permissions
```bash
chown www-data:www-data /var/www/MISP/.smime
chmod 500 /var/www/MISP/.smime
chmod 440 /var/www/MISP/.smime/*
```
## Export the public certificate (for Encipherment) to the webroot
```bash
cp public_certificate.pem /var/www/MISP/app/webroot/public_certificate.pem
```
Due to this action, the MISP users will be able to download your public certificate (for Encipherment) by clicking on the footer
### Set permissions
```bash
chown www-data:www-data /var/www/MISP/app/webroot/public_certificate.pem
chmod 440 /var/www/MISP/app/webroot/public_certificate.pem
```
## Configure the section "SMIME" in the server settings (Administration -> Server settings -> Encryption tab)