mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Merge branch 'main' of https://github.com/mail-in-a-box/mailinabox
This commit is contained in:
commit
dd2c8ff879
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,6 +1,35 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Version 71 (January 4, 2025)
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
Upgrades
|
||||||
|
|
||||||
|
* Roundcube upgraded to version 1.6.9.
|
||||||
|
* Z-Push upgraded to version 2.7.5.
|
||||||
|
|
||||||
|
Automated Maintenance
|
||||||
|
|
||||||
|
* Daily automated tasks are now run at 1am in the box's timezone and full backups are now restricted to running only on Saturdays and Sundays at that time.
|
||||||
|
* Backups now exclude the owncloud-backup folder so that we're not backing up backups.
|
||||||
|
* Old TLS certificates are now automatically deleted to improve control panel performance.
|
||||||
|
|
||||||
|
Setup
|
||||||
|
|
||||||
|
* Fixed broken setup if SSH was configured to listen on multiple ports.
|
||||||
|
* Ubuntu MOTD advertisements are now disabled.
|
||||||
|
* Fixed missing Roundcube dependency package if NextCloud isn't installed.
|
||||||
|
|
||||||
|
Control Panel
|
||||||
|
|
||||||
|
* Improved status checks for secondary nameservers.
|
||||||
|
* Spamhaus is now queried for the box's IPv6 address also.
|
||||||
|
* DSA and EC private keys are now accepted for TLS certificates.
|
||||||
|
* Timeouts for loading slow control panel pages are reduced.
|
||||||
|
|
||||||
|
And other minor fixes.
|
||||||
|
|
||||||
Version 70 (August 15, 2024)
|
Version 70 (August 15, 2024)
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
|
@ -294,7 +294,7 @@ def run_network_checks(env, output):
|
|||||||
# by a spammer, or the user may be deploying on a residential network. We
|
# by a spammer, or the user may be deploying on a residential network. We
|
||||||
# will not be able to reliably send mail in these cases.
|
# will not be able to reliably send mail in these cases.
|
||||||
rev_ip4 = ".".join(reversed(env['PUBLIC_IP'].split('.')))
|
rev_ip4 = ".".join(reversed(env['PUBLIC_IP'].split('.')))
|
||||||
zen = query_dns(rev_ip4+'.zen.spamhaus.org', 'A', nxdomain=None, retry = False)
|
zen = query_dns(rev_ip4+'.zen.spamhaus.org', 'A', nxdomain=None)
|
||||||
evaluate_spamhaus_lookup(env['PUBLIC_IP'], 'IPv4', rev_ip4, output, zen)
|
evaluate_spamhaus_lookup(env['PUBLIC_IP'], 'IPv4', rev_ip4, output, zen)
|
||||||
|
|
||||||
if not env['PUBLIC_IPV6']:
|
if not env['PUBLIC_IPV6']:
|
||||||
@ -303,7 +303,7 @@ def run_network_checks(env, output):
|
|||||||
from ipaddress import IPv6Address
|
from ipaddress import IPv6Address
|
||||||
|
|
||||||
rev_ip6 = ".".join(reversed(IPv6Address(env['PUBLIC_IPV6']).exploded.split(':')))
|
rev_ip6 = ".".join(reversed(IPv6Address(env['PUBLIC_IPV6']).exploded.split(':')))
|
||||||
zen = query_dns(rev_ip6+'.zen.spamhaus.org', 'A', nxdomain=None, retry = False)
|
zen = query_dns(rev_ip6+'.zen.spamhaus.org', 'A', nxdomain=None)
|
||||||
evaluate_spamhaus_lookup(env['PUBLIC_IPV6'], 'IPv6', rev_ip6, output, zen)
|
evaluate_spamhaus_lookup(env['PUBLIC_IPV6'], 'IPv6', rev_ip6, output, zen)
|
||||||
|
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ if [ -z "$TAG" ]; then
|
|||||||
if [ "$UBUNTU_VERSION" == "Ubuntu 22.04 LTS" ]; then
|
if [ "$UBUNTU_VERSION" == "Ubuntu 22.04 LTS" ]; then
|
||||||
# This machine is running Ubuntu 22.04, which is supported by
|
# This machine is running Ubuntu 22.04, which is supported by
|
||||||
# Mail-in-a-Box versions 60 and later.
|
# Mail-in-a-Box versions 60 and later.
|
||||||
TAG=v70
|
TAG=v71
|
||||||
elif [ "$UBUNTU_VERSION" == "Ubuntu 18.04 LTS" ]; then
|
elif [ "$UBUNTU_VERSION" == "Ubuntu 18.04 LTS" ]; then
|
||||||
# This machine is running Ubuntu 18.04, which is supported by
|
# This machine is running Ubuntu 18.04, which is supported by
|
||||||
# Mail-in-a-Box versions 0.40 through 5x.
|
# Mail-in-a-Box versions 0.40 through 5x.
|
||||||
|
Loading…
Reference in New Issue
Block a user