diff --git a/CHANGELOG.md b/CHANGELOG.md index f7334d5e..ace80c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,8 @@ Version 62 (May 20, 2023) Package updates: -* Nextcloud updated to 23.0.12 (and its apps also updated). +* Nextcloud updated to 25.0.06 (and its apps also updated). * Roundcube updated to 1.6.1. -* Z-Push to 2.7.0, which has compatibility for Ubuntu 22.04, so it works again. Mail: diff --git a/README.md b/README.md index 74cbbc89..5c8aee42 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Functionality changes and additions * Configure domain names for which only www will be hosted Edit /etc/miabwwwdomains.conf to configure. The box will handle incoming traffic asking for these domain names. The DNS entries are entered in an external DNS provider! If you want this box to handle the DNS entries, simply add a mail alias. (existing functionality of the vanilla Mail-in-a-Box) * Add some munin plugins -* Update nextcloud to 24.0.0 +* Update nextcloud to 25.0.6 And updated apps * Add nextcloud notes app * Add roundcube context menu plugin diff --git a/management/email_administrator.py b/management/email_administrator.py index da8ba470..331dd1f3 100755 --- a/management/email_administrator.py +++ b/management/email_administrator.py @@ -46,7 +46,9 @@ msg['From'] = "\"%s\" <%s>" % (env['PRIMARY_HOSTNAME'], admin_addr) msg['To'] = admin_addr msg['Subject'] = "[%s] %s" % (env['PRIMARY_HOSTNAME'], subject) -content_html = '
{}
'.format(html.escape(content)) +#content_html = '
{}
'.format(html.escape(content)) +content_html = '
{}
'.format(html.escape(content)) +#content_html = '
{}
'.format(html.escape(content)) msg.attach(MIMEText(content, 'plain')) msg.attach(MIMEText(content_html, 'html'))