PATH:
usr
/
libexec
/
dovecot
#!/usr/bin/sh # Generates a self-signed certificate. # Edit dovecot-openssl.cnf before running this. umask 077 OPENSSL=${OPENSSL-openssl} SSLDIR=${SSLDIR-/etc/pki/dovecot} OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf} CERTDIR=$SSLDIR/certs KEYDIR=$SSLDIR/private CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.pem 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
[-] imap-urlauth-worker
[edit]
[-] indexer-worker
[edit]
[-] imap
[edit]
[-] dict-expire
[edit]
[-] health-check.sh
[edit]
[-] dovecot-lda
[edit]
[-] dns-client
[edit]
[-] submission
[edit]
[-] auth
[edit]
[-] settings-history.py
[edit]
[-] xml2text
[edit]
[-] config
[edit]
[-] pop3
[edit]
[-] rawlog
[edit]
[-] imap-urlauth-login
[edit]
[-] log
[edit]
[-] indexer
[edit]
[-] imap-login
[edit]
[-] anvil
[edit]
[-] script-login
[edit]
[-] lmtp
[edit]
[-] decode2text.sh
[edit]
[-] dict
[edit]
[-] gdbhelper
[edit]
[+]
..
[-] deliver
[edit]
[-] managesieve
[edit]
[-] pop3-login
[edit]
[-] managesieve-login
[edit]
[-] script
[edit]
[-] doveadm-server
[edit]
[-] imap-hibernate
[edit]
[-] imap-urlauth
[edit]
[-] quota-status
[edit]
[-] mkcert.sh
[edit]
[-] submission-login
[edit]
[-] stats
[edit]