Eigenen E-Mail Server auf Linux installieren – Einsteiger Variante mit Docker und MailCow


In diesem Video erfährst du, wie du ganz einfach einen eignen E-Mail Server auf deinem Linux Server konfigurieren kannst mit Hilfe von Docker und Mailcow.

MailCow: https://mailcow.email
MailCow Dokumentation: https://mailcow.github.io/mailcow-dockerized-docs/
MailCow Community: https://community.mailcow.email

Eine weitere sehr gute Schritt-für-Schritt Anleitung für die Einrichtung von MailCow findet ihr bei den Kollegen von dogado.
Hier der zum Beitrag: Mailserver Mailcow auf VPS installieren 

 

 

### Install MailCow Server via Docker ### 

## Set DNS Settings on Domain ## 
https://mailcow.github.io/mailcow-dockerized-docs/prerequisite-dns/ 

## Test Settings ## 
https://mxtoolbox.com/SuperTool.aspx 

## Install Packeges ## 
apt install curl apt install netstat apt install git 

## Check Ports on System ## 
netstat -tulpn | grep -E -w '25|80|110|143|443|465|587|993|995|4190' 
netstat -pulten 

## Install Docker ## 
apt install docker.io 
systemctl enable docker.service 
systemctl start docker.service 

## Install Docker-Compose ## 
curl -L https://github.com/docker/compose/releases/download/$(curl -Ls https://www.servercow.de/docker-compose/latest.php)/docker-compose-$(uname -s)-$(uname -m) > /usr/local/bin/docker-compose 
chmod +x /usr/local/bin/docker-compose 

## check umask ## 
umask 
//0022 # <- Verify it is 0022 

## get mailcow ## 
cd /opt git clone 
https://github.com/mailcow/mailcow-dockerized cd mailcow-dockerized 

## Generate a configuration file ##
./generate_config.sh 
Timezone: Europe/Berlin 

## open mailcow.comnf and adjust if necessary ## 
nano mailcow.conf 

## pull the images and run the compose file ## 
docker-compose pull docker-compose up -d

 

apfelcast Support

Du benötigst Unterstützung bei deinem Projekt oder hast Fragen zur Umsetzung?
Dann melde ich gern bei uns!

[button link=“https://apfelcast.com/kontakt“ type=“big“ class=“ custom-button“] Kontaktieren[/button]

apfelcast Support

Du benötigst Unterstützung bei deinem Projekt oder hast Fragen zur Umsetzung?
Dann melde ich gern bei uns!

Ähnliche Beiträge