We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de28bd commit 5305ce3Copy full SHA for 5305ce3
install/upgrade/versions/1.4.0.sh
@@ -25,11 +25,11 @@ if [ "$MAIL_SYSTEM" == "exim4" ]; then
25
echo "[ * ] Populating HELO/SMTP Banner param for existing IP's..."
26
> /etc/exim4/mailhelo.conf
27
28
- for ip in $(v-list-sys-ips plain | cut -f1); do
+ for ip in $($BIN/v-list-sys-ips plain | cut -f1); do
29
helo=$(is_ip_rdns_valid $ip)
30
31
if [ ! -z "$helo" ]; then
32
- v-change-sys-ip-helo $ip $helo
+ $BIN/v-change-sys-ip-helo $ip $helo
33
fi
34
done
35
0 commit comments