Files
NewSzxcn-Email/deploy/postfix/entrypoint.sh
T

11 lines
397 B
Bash
Raw Normal View History

2026-06-14 01:07:48 +08:00
#!/bin/sh
set -eu
: "${LANQIN_PUBLIC_HOSTNAME:=mail.example.com}"
postconf -e "myhostname = ${LANQIN_PUBLIC_HOSTNAME}"
postconf -e "myorigin = ${LANQIN_PUBLIC_HOSTNAME}"
postconf -e "milter_mail_macros = i {mail_addr} {client_addr} {client_name} {auth_authen}"
postconf -e "smtpd_milters = inet:rspamd:11332"
postconf -e "non_smtpd_milters = inet:rspamd:11332"
2026-06-14 01:07:48 +08:00
postfix check
exec postfix start-fg