{"id":38539273,"url":"https://github.com/ogarcia/docker-davmail","last_synced_at":"2026-01-18T11:36:25.766Z","repository":{"id":43134546,"uuid":"154702913","full_name":"ogarcia/docker-davmail","owner":"ogarcia","description":"[MIRROR] Small docker of DavMail based on Alpine Linux","archived":false,"fork":false,"pushed_at":"2025-12-18T07:39:14.000Z","size":60,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-17T17:31:33.969Z","etag":null,"topics":["davmail","docker","docker-image","owa"],"latest_commit_sha":null,"homepage":"https://gitlab.com/connectical/container/davmail","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ogarcia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-10-25T16:25:35.000Z","updated_at":"2025-12-18T07:27:30.000Z","dependencies_parsed_at":"2024-03-31T10:32:04.778Z","dependency_job_id":"37058756-f021-4c8a-91cd-abcebe62a8e4","html_url":"https://github.com/ogarcia/docker-davmail","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/ogarcia/docker-davmail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ogarcia%2Fdocker-davmail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ogarcia%2Fdocker-davmail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ogarcia%2Fdocker-davmail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ogarcia%2Fdocker-davmail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ogarcia","download_url":"https://codeload.github.com/ogarcia/docker-davmail/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ogarcia%2Fdocker-davmail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28535169,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["davmail","docker","docker-image","owa"],"created_at":"2026-01-17T07:07:20.906Z","updated_at":"2026-01-18T11:36:25.739Z","avatar_url":"https://github.com/ogarcia.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DavMail container\n\n[![forthebadge](https://forthebadge.com/images/badges/built-with-resentment.svg)](https://forthebadge.com)\n[![forthebadge](https://forthebadge.com/images/badges/its-not-a-lie-if-you-believe-it.svg)](https://forthebadge.com)\n[![forthebadge](https://forthebadge.com/images/badges/contains-technical-debt.svg)](https://forthebadge.com)\n\n(c) 2018-2025 [Connectical] Óscar García Amor\n\nRedistribution, modifications and pull requests are welcomed under the terms\nof GPLv3 license.\n\n[DavMail][dm] is a POP/IMAP/SMTP/Caldav/Carddav/LDAP exchange gateway\nallowing users to use any mail/calendar client with an Exchange server, even\nfrom the internet or behind a firewall through Outlook Web Access.\n\nThis container packages **DavMail** under [Alpine Linux][al], a lightweight\nLinux distribution.\n\nVisit [Quay][qu] or [GitLab][gl] to see all available tags.\n\n[dm]: http://davmail.sourceforge.net/\n[al]: https://alpinelinux.org/\n[qu]: https://quay.io/repository/connectical/davmail\n[gl]: https://gitlab.com/connectical/container/davmail/container_registry\n\n## Run\n\nTo run this container, simply exec.\n\n```sh\nalias docker=\"podman\" # If you are using podman\ndocker run -d \\\n  --name=davmail \\\n  -p 1025:1025 \\\n  -p 1389:1389 \\\n  -p 1110:1110 \\\n  -p 1143:1143 \\\n  -p 1080:1080 \\\n  registry.gitlab.com/connectical/container/davmail\n```\n\nDefault config points to [Office 365 EWS][o365].\n\n[o365]: https://outlook.office365.com/EWS/Exchange.asmx\n\n## Volumes\n\nIf you want reconfigure DavMail with your own `davmail.properties` you can\nmount it as a volume.\n\n```sh\nalias docker=\"podman\" # If you are using podman\ndocker run -d \\\n  --name=davmail \\\n  -v /my/own/davmail.properties:/etc/davmail/davmail.properties \\\n  registry.gitlab.com/connectical/container/davmail\n```\n\nIn the same way you can configure a volume to persistent store the logs.\n\n```sh\nalias docker=\"podman\" # If you are using podman\ndocker run -d \\\n  --name=davmail \\\n  -v /my/own/davmail/logdir:/var/log/davmail\n  registry.gitlab.com/connectical/container/davmail\n```\n\nTake note that DavMail is running by `davmail` user (*UID 100*) inside\ncontainer. You must set proper permissions in your external volume to allow\nto this user to write on it.\n\n## Shell run\n\nIf you can run a shell instead DavMail, simply do.\n\n```sh\nalias docker=\"podman\" # If you are using podman\ndocker run -t -i --rm \\\n  --name=davmail \\\n  --user=root \\\n  --entrypoint=/bin/sh \\\n  registry.gitlab.com/connectical/container/davmail\n```\n\nPlease note that the `--rm` modifier destroy the container after shell exit.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogarcia%2Fdocker-davmail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fogarcia%2Fdocker-davmail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogarcia%2Fdocker-davmail/lists"}