User tools

Website tools


quick install

This is an old version of the document!


Quick installation

With the command call

wget -O - https://www.benno-mailarchiv.de/download/debian-install.sh | bash

A script for installation is downloaded and executed directly. The script carries out the commands specified below to install and configure Benno MailArchiv.

Nach Ausführung des Scripts sollte noch das Passwort für den Adminuser gesetzt werden.

Schritt-für-Schritt Installation

HTTPS packet sources

apt-get update apt-get install apt-transport-https wget gnupg2

Configuring the Benno MailArchive Repository

Konfiguration der Repositories und Einspielen des Signaturschlüssels.

cat - >> /etc/apt/sources.list.d/benno-mailarchiv.list <<EOF deb https://www.benno-mailarchiv.de/download/debian / EOF

GPG Key for Package Management

wget -O - https://www.benno-mailarchiv.de/download/debian/benno.asc | apt-key add -

Install packages

Installing the software packages using apt

apt-get update apt-get -y --install-recommends install benno-archive benno-rest benno-web

Start Benno REST Daemon

/etc/init.d/benno-rest start

Configure users

Set password for admin user

Falls keine LDAP-Anbindung o.ä. vorgesehen ist, erfolgt die Benutzerverwaltung mit dem Kommando benno-useradmin.

benno-useradmin -u admin -p secret

Create user

benno-useradmin -u hansen -p MyPass -n 'Paul Hansen' -e 'hansen@hansen-meyer.de,p.hansen@hansen-meyer.de'

For an auditor with access to all archived emails, the following user could be created:

benno-useradmin -u revisor -p RevisorPass -n 'Revisor' -e '*@*'

Next Steps

Web access via HTTPS

Um das Web-GUI per HTTPS abzusichern, muss der Webserver für HTTPS konfiguriert werden. Hierzu aktivieren Sie das ssl Modul und die Default SSL Website im Apache Webserver.

a2enmod ssl a2ensite default-ssl systemctl restart apache2
quick-install.1607618949.txt.gz · Zuletzt geändert: 2020/12/10 16:49 von lwsystems