Add option to block specific senders
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
a62b58287e
commit
91387b1559
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
aliases.d
|
||||
hotplug.d
|
||||
docker-compose.yml
|
||||
spool
|
||||
vmail
|
||||
|
|
|
@ -11,6 +11,7 @@ RUN echo '' > /etc/postfix/main.cf \
|
|||
&& postconf -e myorigin='$mydomain' \
|
||||
&& postconf -e mynetworks='127.0.0.0/8 [::1]/128' \
|
||||
&& postconf -e smtpd_recipient_restrictions=' \
|
||||
check_sender_access hash:/etc/postfix/access_sender, \
|
||||
reject_non_fqdn_sender, \
|
||||
reject_non_fqdn_recipient, \
|
||||
reject_unknown_sender_domain, \
|
||||
|
@ -51,7 +52,8 @@ RUN echo '' > /etc/postfix/main.cf \
|
|||
&& postconf -e enable_long_queue_ids='yes' \
|
||||
&& postconf -e strict_rfc821_envelopes='yes' \
|
||||
&& postconf -e maillog_file='/dev/stdout' \
|
||||
&& newaliases
|
||||
&& newaliases \
|
||||
&& touch /etc/postfix/access_sender
|
||||
|
||||
RUN cp -r /var/spool/postfix /var/spool/postfix-skel
|
||||
|
||||
|
|
|
@ -24,7 +24,8 @@ if ! [ -e /var/spool/postfix/.initialized ]; then
|
|||
touch /var/spool/postfix/.initialized
|
||||
fi
|
||||
|
||||
map-virtual.sh c /etc/postfix/aliases.d/ virtual
|
||||
map-hotplug.sh c /etc/postfix/hotplug.d/ virtual
|
||||
map-hotplug.sh c /etc/postfix/hotplug.d/ access_sender
|
||||
|
||||
inotifyd map-virtual.sh /etc/postfix/aliases.d/ &
|
||||
inotifyd map-hotplug.sh /etc/postfix/hotplug.d/ &
|
||||
/usr/libexec/postfix/master -c /etc/postfix -d
|
||||
|
|
7
postfix/scripts/map-hotplug.sh
Executable file
7
postfix/scripts/map-hotplug.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
if [ "$1" == "c" ] && [ "$2" == "/etc/postfix/hotplug.d/" ] && ([ "$3" == "virtual" ] || [ "$3" == "access_sender" ]); then
|
||||
cp "/etc/postfix/hotplug.d/$3" "/etc/postfix/$3"
|
||||
chown root:root "/etc/postfix/$3"
|
||||
postmap "/etc/postfix/$3"
|
||||
echo "$(date +"%b %d %H:%M:%H"): remapped $3"
|
||||
fi
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh
|
||||
if [ "$1" == "c" ] && [ "$2" == "/etc/postfix/aliases.d/" ] && [ "$3" == "virtual" ]; then
|
||||
cp /etc/postfix/aliases.d/virtual /etc/postfix/virtual
|
||||
chown root:root /etc/postfix/virtual
|
||||
postmap /etc/postfix/virtual
|
||||
echo "$(date +"%b %d %H:%M:%H"): remapped virtual aliases"
|
||||
fi
|
Reference in a new issue