mirror of
https://git.myvelabs.com/docker/myvemail.git
synced 2025-12-18 07:46:18 +00:00
9 lines
216 B
Bash
Executable file
9 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Install postwhite
|
|
if [ ! -s /etc/postfix/postscreen_spf_whitelist.cidr ]
|
|
then
|
|
/usr/local/bin/postwhite/postwhite
|
|
fi
|
|
|
|
# Permissions
|
|
chown root:root /etc/postfix/postscreen_spf_whitelist.cidr
|