1
0
镜像自地址 https://github.com/mail-in-a-box/mailinabox.git 已同步 2026-03-27 19:37:22 +01:00

added do nothing option to dialog

这个提交包含在:
ChiefGyk
2016-06-29 14:53:23 -04:00
父节点 1b825f9bc4
当前提交 345fd9e787

查看文件

@@ -5,13 +5,14 @@ WIDTH=80
CHOICE_HEIGHT=4
BACKTITLE="Do you want to block China and/or Korea?"
TITLE="Country Block"
MENU="A lot of spam originates from Korea and China. If you don't plan on having to ever have those countries connect to your server you may block them. \
This will update weekly, and block all IP blocks to those countries \
MENU="A lot of spam, as well as malicious traffic originates from Korea and China. If you don't plan on having to ever have those countries connect to your server you may block them.
This will add a cron that will update weekly, and block all IP blocks to those countries you choose
Choose one of the following options:"
OPTIONS=(1 "China"
2 "Korea"
3 "China and Korea")
3 "China and Korea"
4 "Do nothing")
CHOICE=$(dialog --clear \
--backtitle "$BACKTITLE" \
@@ -50,4 +51,5 @@ case $CHOICE in
time /etc/cron.weekly/sinokorea
apt-get install -y iptables-persistent
;;
4) break;;
esac