mirror of
https://github.com/myvesta/vesta
synced 2025-07-05 04:26:23 -07:00
SpamHaus DNSBL removed from exim4
This commit is contained in:
parent
32aae7dbff
commit
039dc4a561
9 changed files with 13 additions and 6 deletions
|
@ -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]
|
||||
==================================================
|
||||
* Introducing v-run-wp-cli command ( @isscbta )
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
bl.spamcop.net
|
||||
zen.spamhaus.org
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
bl.spamcop.net
|
||||
zen.spamhaus.org
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
bl.spamcop.net
|
||||
zen.spamhaus.org
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
bl.spamcop.net
|
||||
zen.spamhaus.org
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
bl.spamcop.net
|
||||
zen.spamhaus.org
|
||||
|
|
|
@ -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/freshclam_start
|
||||
touch /usr/local/vesta/data/upgrades/barracuda_rbl
|
||||
touch /usr/local/vesta/data/upgrades/spamhaus_dnsbl_removed
|
||||
|
||||
# Secret URL
|
||||
secretquery=''
|
||||
|
|
|
@ -1 +1 @@
|
|||
vesta-0.9.9-0-11
|
||||
vesta-0.9.9-0-12
|
|
@ -25,6 +25,12 @@ fi
|
|||
echo "1" > /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
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue