mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-25 07:47:05 +00:00
Disable Postgrey service if it is not being used
This commit is contained in:
parent
bb96ee8269
commit
99776c1513
@ -231,7 +231,7 @@ tools/editconf.py /etc/default/postgrey \
|
|||||||
tools/editconf.py /etc/postfix/main.cf \
|
tools/editconf.py /etc/postfix/main.cf \
|
||||||
message_size_limit=134217728
|
message_size_limit=134217728
|
||||||
|
|
||||||
if [ $POSTSRSD == "1" ]; then
|
if [ $POSTSRSD == 1 ]; then
|
||||||
# Setup SRS
|
# Setup SRS
|
||||||
postconf -e \
|
postconf -e \
|
||||||
sender_canonical_maps=tcp:localhost:10001 \
|
sender_canonical_maps=tcp:localhost:10001 \
|
||||||
@ -262,4 +262,13 @@ ufw_allow submission
|
|||||||
# Restart services
|
# Restart services
|
||||||
|
|
||||||
restart_service postfix
|
restart_service postfix
|
||||||
|
|
||||||
|
if [ $POSTGREY == 1 ]; then
|
||||||
|
hide_output systemctl enable postgrey
|
||||||
|
hide_output systemctl restart postgrey
|
||||||
|
else
|
||||||
|
hide_output systemctl disable postgrey
|
||||||
|
hide_output systemctl stop postgrey
|
||||||
|
fi
|
||||||
|
|
||||||
restart_service postgrey
|
restart_service postgrey
|
||||||
|
Loading…
Reference in New Issue
Block a user