Skip to content

Instantly share code, notes, and snippets.

@jniltinho
Last active November 14, 2024 10:43
Show Gist options
  • Save jniltinho/77022d614cc587c7a3666e8ead963898 to your computer and use it in GitHub Desktop.
Save jniltinho/77022d614cc587c7a3666e8ead963898 to your computer and use it in GitHub Desktop.
Install Sogo Webmail
#!/bin/bash
## https://www.sogo.nu/download.html
## https://github.com/iigorr/sogo-puppet/blob/master/puppet/modules/sogo/files/sogo.nginx.conf
## https://linuxhostsupport.com/blog/how-to-install-sogo-on-ubuntu-20-04/
## https://github.com/cha87de/sogo-docker/blob/master/config/nginx.conf.tmpl
## https://github.com/mailcow/mailcow-dockerized/issues/5411
wget -O- "https://keys.openpgp.org/vks/v1/by-fingerprint/74FFC6D72B925A34B5D356BDF8A27B36A6E2EAE9" | gpg --dearmor >/etc/apt/trusted.gpg.d/sogo.gpg
apt update
apt install apt-transport-https
tee /etc/apt/sources.list.d/SOGo.list <<EOF
deb https://packages.sogo.nu/nightly/5/ubuntu/ jammy jammy
EOF
apt update
apt install sogo sogo-activesync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment