GitXplorerGitXplorer
r

pop3-imap

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
0e819a2406e249ebe13f0e022533efc8a0c28ac4

Updated README.md

committed 6 years ago
Unverified
6f17ae5056147c541bd77b4fc7a93408ab6dd620

Introduced variables and SSL

committed 6 years ago
Unverified
c18078e9161af5966fad258fab1b549431f3472e

initial commit

committed 6 years ago
Verified
18448f23188ebce55aa2db037072ae3b31e2228c

Initial commit

rraedle committed 6 years ago

README

The README file for this repository.

pop3-imap

Docker image that maps pop3 requests to imap

Setup SSL

It is possible to set up the pop3-imap with SSL. For example, the docker-letsencrypt-nginx-proxy-companion offers support for letsencrypt certificates that automatically renew. Follow the instructions on docker-letsencrypt-nginx-proxy-companion on how to set up the nginx container as well as the nginx-proxy-companion.

Run the container

When the nginx-proxy-companion is set up, run a pop3-imap docker container with the following command (adjust path accordingly).

docker run -dit \
    --name pop3-imap-instance \
    --restart=always \
    -p 995:995 \
    -e "VIRTUAL_HOST=pop3-imap.example.com" \
    -e "LETSENCRYPT_HOST=pop3-imap.example.com" \
    -e "LETSENCRYPT_EMAIL=contact@example.com" \
    -e "EF_IMAP_SERVER=imap.another-example.com" \
    -e "EF_SSL_KEY=/certs/key.pem" \
    -e "EF_SSL_CERT=/certs/fullchain.pem" \
    -v /path/to/certs:/certs:ro \
    raedle/pop3-imap