1

Topic: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

Hi,
I have a problem, maybe not just me, that the iRedMail-1.5.1 installation script doesn't offer the SOGo Groupware option (missing), although I would need it because of ActiveSync.
I've already tried it with three Linux distributions: Rocky Linux 8, Debian GNU / Linux 11, and most recently Ubuntu 20.04 LTS, but all three systems have the same bug!
See also the attached screenshot.
Solution? Maybe the iRedMail.sh script is wrong or something?
Help in advance Thank you!
Best regards:
Attila Valastyan
Senior Linux System Administrator
==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.5.1 (latest)
- Deployed with iRedMail Easy or the downloadable installer? downloadable installer
- Linux/BSD distribution name and version: Ubuntu 20.04 LTS, Debian 11, Rocky 8
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL (MariaDB)
- Web server (Apache or Nginx): NGINX
- Manage mail accounts with iRedAdmin-Pro? No (Free Only)
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue: See the screenshot (attached)!
====

----

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.5.1 (opensource): The SOGo Groupware option is missing!

Sorry, the screenshot has been forgotten!

Post's attachments

SOGoWhereis.png
SOGoWhereis.png 28.05 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

3

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

Hi!

Today i was tried the install (by the latest downloadable installer), and it works the SOGo option. smile

Thanks for the fixing!

Regards:
Attila Valastyan
Senior Linux System Administrator

Post's attachments

SOGo_OK.png
SOGo_OK.png 66.79 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

4 (edited by chc-pr 2022-01-12 18:54:10)

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

I don't want to hijack this thread, but I downloaded the installer above yesterday and while the SOGo option is there, the install fails to load SOGo with a pgp key error.

Today I tried to install this, but SOGo fails the install. When I try to install it with Roundcube only - it installs perfectly.

OS is a fresh Ubuntu 20.04 LTS last updated 10/1/22 if that is relevant.

Here is the relevant response following execution of: apt update && apt upgrade

W: GPG error: https://packages.inverse.ca/SOGo/nightly/5/ubuntu focal InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 19CDA6A9810273C4
E: The repository 'https://packages.inverse.ca/SOGo/nightly/5/ubuntu focal InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

This is from 1050 on 12/01/21022 GMT.

5

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

Import the apt key manually, then launch the iRedMail installer again:

apt-key adv --keyserver keyserver.ubuntu.com --recv-key 0x810273C4

6 (edited by chc-pr 2022-01-28 20:46:40)

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

Latest update ...
Please ignore what follows below - I found the error - firewall restriction.

Thank you


ZhangHuangbin wrote:

Import the apt key manually, then launch the iRedMail installer again:

apt-key adv --keyserver keyserver.ubuntu.com --recv-key 0x810273C4

Nope, here is what I got ...

Ran apt update && apt upgrade which finished with ...

W: GPG error: https://packages.inverse.ca/SOGo/nightly/5/ubuntu focal InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 19CDA6A9810273C4
E: The repository 'https://packages.inverse.ca/SOGo/nightly/5/ubuntu focal InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.


Then ran your code as below getting ..

root@mx4:~# apt-key adv --keyserver keyserver.ubuntu.com --recv-key 0x810273C4
Executing: /tmp/apt-key-gpghome.8VySWchIvY/gpg.1.sh --keyserver keyserver.ubuntu.com --recv-key 0x810273C4
gpg: keyserver receive failed: Connection timed out

Any ideas?

7

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

Replace "keyserver.ubuntu.com" by "pgp.mit.edu" and try again.

8 (edited by UstaR 2022-06-12 19:13:32)

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

An error with apt-key is found more often here in the forum. Mostly it is because apt-key can not reach the key server via port 11371 because a firewall or proxy prevents this.

The solution in this case is very simple and I wonder why this is not changed in the appropriate script, after all, there was the error here nice often and a corresponding solution can be found here in the forum already.

In case of the 1.6.0 installation package the following change must be made in the file 'iRedMail-1.6.0/functions/packages.sh'.

Line 379

Original:

apt-key adv --keyserver keyserver.ubuntu.com --recv-key ${SOGO_PKG_MIRROR_APT_KEY}

Edit:

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-key ${SOGO_PKG_MIRROR_APT_KEY}


Line 383

Original:

apt-key adv --keyserver pgp.mit.edu --recv-key ${SOGO_PKG_MIRROR_APT_KEY}

Edit:

apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-key ${SOGO_PKG_MIRROR_APT_KEY}


This will make the script work without problems behind a firewall or proxy.

@ZhangHuangbin it is possible to include this in one of the next versions. The function of the script should not be affected by this and there is one problem less in certain installation scenarios.

9

Re: iRedMail-1.5.1 (opensource): The SOGo Groupware option is missing!

UstaR wrote:

This will make the script work without problems behind a firewall or proxy.

This has been fixed recently. Thanks for the contribution. smile
https://github.com/iredmail/iRedMail/co … 96bc55edc4