This is a email server solution with postfix dovecot , rspamd, clamav and postfix admin.
337
This Email solution is dockerized email solution.
Make sure any other application does not use ports that we are going to listen to
$ netstat -tulpn | grep -E -w '25|80|110|143|443|465|587|993|995|4190|11334'
//check each port
$ sudo lsof -i :25
Unblock following ports
| Service | Software | Protocol | Port |
|---|---|---|---|
| SMTP | Postfix | TCP | 25 |
| IMAP | Dovecot | TCP | 143 |
| SMTPS | Postfix | TCP | 465 |
| Submission | Postfix | TCP | 587 |
| IMAPS | Dovecot | TCP | 993 |
$ git clone https://github.com/tharangar/EmailSolution.git
Build and run the image
cd emailserver
docker build -t emailserver .
docker run -p 127.0.0.1:25:25 143:143 587:587 --name emailserver -d emailserver
Run the application using docker composer.
$ docker-compose build
$ docker-compose up -d
This email solution user baed is openldap by default. But it is expected to improve it with postfixadmin stufs. Openldap solution is not included hear. It has to be built externally.
Email solution initiated by Prabod Rathnayaka. url :
https://github.com/prabod/email-solution/tree/master/docker
Email solution with rspamd https://github.com/tomav
openLdap solutions https://github.com/osixia/docker-openldap#quick-start
Content type
Image
Digest
Size
195 MB
Last updated
over 7 years ago
docker pull tharangarajapaksha/emailserver