File: mkcert.sh

package info (click to toggle)
dovecot 1%3A2.3.13%2Bdfsg1-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 55,960 kB
  • sloc: ansic: 542,650; makefile: 7,697; sh: 5,891; cpp: 1,557; perl: 303; python: 255; xml: 151; yacc: 146; lex: 130; pascal: 27
file content (40 lines) | stat: -rw-r--r-- 862 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh

# Generates a self-signed certificate.
# Edit dovecot-openssl.cnf before running this.

umask 077
OPENSSL=${OPENSSL-openssl}
SSLDIR=${SSLDIR-/etc/ssl}
OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}

CERTDIR=/etc/dovecot/ssl
KEYDIR=/etc/dovecot/ssl

CERTFILE=$CERTDIR/dovecot.pem
KEYFILE=$KEYDIR/dovecot.key

if [ ! -d $CERTDIR ]; then
  echo "$CERTDIR directory doesn't exist"
  exit 1
fi

if [ ! -d $KEYDIR ]; then
  echo "$KEYDIR directory doesn't exist"
  exit 1
fi

if [ -f $CERTFILE ]; then
  echo "$CERTFILE already exists, won't overwrite"
  exit 1
fi

if [ -f $KEYFILE ]; then
  echo "$KEYFILE already exists, won't overwrite"
  exit 1
fi

$OPENSSL req -new -x509 -nodes -config $OPENSSLCONFIG -out $CERTFILE -keyout $KEYFILE -days 365 || exit 2
chmod 0600 $KEYFILE
echo 
$OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2