smlinux/net/postfix/postfix.ssl.run
2022-02-13 15:56:03 +05:30

9 lines
296 B
Bash

#!/bin/sh
CONFDIR=/etc/postfix
if [ ! -f "$CONFDIR"/postfix.key ] ; then
openssl req -new -x509 -days 3650 -nodes -out /etc/postfix/postfix.crt \
-subj '/C=US/ST=Oregon/L=Portland/CN=invalid.org' \
-keyout /etc/postfix/postfix.key || exit 1
fi
exec /usr/libexec/postfix/master -d 2>&1