SpamHaus DNSBL removed from exim4

This commit is contained in:
myvesta 2025-02-27 22:51:44 +01:00 committed by GitHub
parent 32aae7dbff
commit 039dc4a561
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,8 @@
Version 0.9.9-0-12 [28-Feb-2025]
==================================================
* SpamHaus DNSBL removed from exim4
* A lot of small bugs fixed
Version 0.9.9-0-11 [30-May-2024] Version 0.9.9-0-11 [30-May-2024]
================================================== ==================================================
* Introducing v-run-wp-cli command ( @isscbta ) * Introducing v-run-wp-cli command ( @isscbta )

View file

@ -1,2 +1 @@
bl.spamcop.net bl.spamcop.net
zen.spamhaus.org

View file

@ -1,2 +1 @@
bl.spamcop.net bl.spamcop.net
zen.spamhaus.org

View file

@ -1,2 +1 @@
bl.spamcop.net bl.spamcop.net
zen.spamhaus.org

View file

@ -1,2 +1 @@
bl.spamcop.net bl.spamcop.net
zen.spamhaus.org

View file

@ -1,2 +1 @@
bl.spamcop.net bl.spamcop.net
zen.spamhaus.org

View file

@ -2037,6 +2037,7 @@ touch /usr/local/vesta/data/upgrades/enable_cookie_httponly
touch /usr/local/vesta/data/upgrades/fix_exim_494_autoreply touch /usr/local/vesta/data/upgrades/fix_exim_494_autoreply
touch /usr/local/vesta/data/upgrades/freshclam_start touch /usr/local/vesta/data/upgrades/freshclam_start
touch /usr/local/vesta/data/upgrades/barracuda_rbl touch /usr/local/vesta/data/upgrades/barracuda_rbl
touch /usr/local/vesta/data/upgrades/spamhaus_dnsbl_removed
# Secret URL # Secret URL
secretquery='' secretquery=''

View file

@ -1 +1 @@
vesta-0.9.9-0-11 vesta-0.9.9-0-12

View file

@ -25,6 +25,12 @@ fi
echo "1" > /usr/local/vesta/data/upgrades/show_changelog echo "1" > /usr/local/vesta/data/upgrades/show_changelog
chmod a=rw /usr/local/vesta/data/upgrades/show_changelog chmod a=rw /usr/local/vesta/data/upgrades/show_changelog
# Removing SpamHaus DNSBL
if [ ! -f "/usr/local/vesta/data/upgrades/spamhaus_dnsbl_removed" ]; then
sed -i '/zen.spamhaus.org/d' /etc/exim4/dnsbl.conf
touch /usr/local/vesta/data/upgrades/spamhaus_dnsbl_removed
fi
# Fixing 'dh key too small' in dovecot # Fixing 'dh key too small' in dovecot
if [ -f "/var/log/dovecot.log.1" ] && [ -f "/etc/dovecot/conf.d/10-ssl.conf" ] && [ -f "/usr/share/dovecot/dh.pem" ]; then if [ -f "/var/log/dovecot.log.1" ] && [ -f "/etc/dovecot/conf.d/10-ssl.conf" ] && [ -f "/usr/share/dovecot/dh.pem" ]; then
if grep -q 'dh key too small' /var/log/dovecot.log.1; then if grep -q 'dh key too small' /var/log/dovecot.log.1; then