1

Topic: iRedMail-1.8.0 has been released.

Dear all,

iRedMail-1.8.0 has been released.

Here's major changes since iRedMail-1.7.4:

Supports new distribution releases
Dropped distribution release
  • Ubuntu 22.04

  • OpenBSD 7.7

Improvements
  • Install binary packages on FreeBSD, saves a lot of time compared to installing packages from ports tree.

Updated packages
  • Roundcube 1.6.15 (security fixes)

  • netdata 2.10.1

  • iRedAPD 6.1. supports secure (ssl) sql connection.

  • mlmmjadmin 3.6.2, supports secure (ssl) sql connection.

  • iRedAdmin 2.8

  • uwsgi 2.0.31 (OpenBSD only)

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: iRedMail-1.8.0 has been released.

The link for Debian 13 is wrong, https://docs.iredmail.org/upgrade.debian.11-12.html
It should be this one : https://docs.iredmail.org/upgrade.debian.12-13.html

3

Re: iRedMail-1.8.0 has been released.

b.cherrier wrote:

The link for Debian 13 is wrong, https://docs.iredmail.org/upgrade.debian.11-12.html
It should be this one : https://docs.iredmail.org/upgrade.debian.12-13.html

fixed. Thanks for the feedback. smile

4

Re: iRedMail-1.8.0 has been released.

And on debian 12, upgrading iRedAdmin to 2.8 gets done with an error.
It requires the python3-more-itertools to be installed

5

Re: iRedMail-1.8.0 has been released.

b.cherrier wrote:

And on debian 12, upgrading iRedAdmin to 2.8 gets done with an error.
It requires the python3-more-itertools to be installed

Fixed. Thanks for the feedabck.

Customers who downloaded iRedAdmin-Pro package later than this forum post should not have this issue anymore.

6

Re: iRedMail-1.8.0 has been released.

Thank you, Zhang!

ZhangHuangbin wrote:

Dear all,

iRedMail-1.8.0 has been released.

Here's major changes since iRedMail-1.7.4:

Supports new distribution releases
Dropped distribution release
  • Ubuntu 22.04

  • OpenBSD 7.7

Improvements
  • Install binary packages on FreeBSD, saves a lot of time compared to installing packages from ports tree.

Updated packages
  • Roundcube 1.6.15 (security fixes)

  • netdata 2.10.1

  • iRedAPD 6.1. supports secure (ssl) sql connection.

  • mlmmjadmin 3.6.2, supports secure (ssl) sql connection.

  • iRedAdmin 2.8

  • uwsgi 2.0.31 (OpenBSD only)

7

Re: iRedMail-1.8.0 has been released.

Updated on Ubuntu 22.04.5, no issues... Thanks!

May be it's worth to include IRedAdmin Update in Upgrade notes too.

8

Re: iRedMail-1.8.0 has been released.

Bronko wrote:

May be it's worth to include IRedAdmin Update in Upgrade notes too.

Fixed. Thanks for the feedback. smile

9

Re: iRedMail-1.8.0 has been released.

Thank you, Zhang!

10

Re: iRedMail-1.8.0 has been released.

Hi,

There is a typo in the website Download:

STABLE
1.8.0 (APR, 2025)

should be:

STABLE
1.8.0 (APR, 2026)

Thank you!

11

Re: iRedMail-1.8.0 has been released.

alss wrote:

1.8.0 (APR, 2026)

Fixed. Thanks for the feedback.

12

Re: iRedMail-1.8.0 has been released.

SOGo does support Debian 13 but they moved the repository to a different url.

I changed the contents of my /etc/apt/sources.list.d/sogo-nightly.list to

deb https:packagingv2.sogo.nu/sogo-nightly-debian/ trixie main

After that I did an apt full-upgrade

This command installs the new sogo packages for debian 13.

I am running nginx as webserver and sogo did not work as expected after the upgrade. I found out that the sogo templates in /etc/nginx/templates pointed to the wrong directories.

In sogo.tmpl I commented out the old config and added the new config:

#location /SOGo.woa/WebServerResources/ {
#    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
#    expires max;
#}
#location /SOGo/WebServerResources/ {
#    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
#    expires max;
#}
#location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
#    alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
#    expires max;
#}

location /SOGo.woa/WebServerResources/ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/WebServerResources/;
    expires max;
}
location /SOGo/WebServerResources/ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/WebServerResources/;
    expires max;
}
location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/$1.SOGo/Resources/$2;
    expires max;
}

I also updated the sogo-subdomain.tmpl:

#location /SOGo.woa/WebServerResources/ {
#    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
#    expires max;
#}
#location /SOGo/WebServerResources/ {
#    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
#    expires max;
#}
#location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
#    alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
#    expires max;
#}
#location (^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$) {
#    alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
#    expires max;
#}

location /SOGo.woa/WebServerResources/ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/WebServerResources/;
    expires max;
}
location /SOGo/WebServerResources/ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/WebServerResources/;
    expires max;
}
location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/$1.SOGo/Resources/$2;
    expires max;
}
location (^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$) {
    alias /usr/lib/x86_64-linux-gnu/GNUstep/SOGo/$1.SOGo/Resources/$2;
    expires max;
}

Restarted nginx and Sogo is now working om Debian 13!

13

Re: iRedMail-1.8.0 has been released.

Updated SOGo section moment ago, thanks for the feedback. smile
https://docs.iredmail.org/upgrade.debia … -groupware