{"id":13558745,"url":"https://github.com/tozd/docker-sympa","last_synced_at":"2025-04-28T08:31:21.690Z","repository":{"id":19819888,"uuid":"23080678","full_name":"tozd/docker-sympa","owner":"tozd","description":"Sympa Docker image. Read-only mirror of https://gitlab.com/tozd/docker/sympa","archived":false,"fork":false,"pushed_at":"2023-07-14T21:22:10.000Z","size":72,"stargazers_count":7,"open_issues_count":3,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-11-04T09:37:35.105Z","etag":null,"topics":["docker","docker-image","sympa"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tozd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["plast8","mitar"]}},"created_at":"2014-08-18T17:50:07.000Z","updated_at":"2021-10-31T23:47:35.000Z","dependencies_parsed_at":"2024-01-14T16:09:23.829Z","dependency_job_id":"4c8c85c8-64d5-4556-b812-5394553cdeca","html_url":"https://github.com/tozd/docker-sympa","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tozd%2Fdocker-sympa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tozd%2Fdocker-sympa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tozd%2Fdocker-sympa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tozd%2Fdocker-sympa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tozd","download_url":"https://codeload.github.com/tozd/docker-sympa/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224102265,"owners_count":17256126,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["docker","docker-image","sympa"],"created_at":"2024-08-01T12:05:07.989Z","updated_at":"2024-11-11T12:27:16.032Z","avatar_url":"https://github.com/tozd.png","language":"Shell","funding_links":["https://github.com/sponsors/plast8","https://github.com/sponsors/mitar"],"categories":["Shell","docker"],"sub_categories":[],"readme":"# tozd/sympa\n\n\u003chttps://gitlab.com/tozd/docker/sympa\u003e\n\nAvailable as:\n\n- [`tozd/sympa`](https://hub.docker.com/r/tozd/sympa)\n- [`registry.gitlab.com/tozd/docker/sympa`](https://gitlab.com/tozd/docker/sympa/container_registry)\n\n## Image inheritance\n\n[`tozd/base`](https://gitlab.com/tozd/docker/base) ← [`tozd/dinit`](https://gitlab.com/tozd/docker/dinit) ← [`tozd/nginx`](https://gitlab.com/tozd/docker/nginx) ← [`tozd/nginx-mailer`](https://gitlab.com/tozd/docker/nginx-mailer) ← `tozd/sympa`\n\n## Tags\n\n- `latest`: Sympa 6.2.66\n\n## Volumes\n\n- `/var/log/sympa`: Log files. Logs are **not** rotated.\n- `/etc/sympa/shared`: A volume shared with a Postfix container to provide necessary SSH keys for communication between containers.\n- `/var/spool/sympa`: Persist this volume to not lose state.\n- `/var/lib/sympa`: Persist this volume to not lose state.\n\n## Description\n\nDocker image providing [Sympa](https://www.sympa.org/) mailing list service.\nWhen the container runs Sympa is available at `/lists/` (and `/sympa/`) URLs.\n\nYou should make sure you mount spool and data volumes (`/var/spool/sympa` and `/var/lib/sympa` from this image\nand `/var/spool/nullmailer` from `tozd/nginx-mailer`) so that you do not lose e-mails and mailing lists data\nwhen you are recreating a container.\n\nThe intended use of this image is that it is extended (see [cloyne/sympa](https://github.com/cloyne/docker-sympa)\nfor an example) with customizations for your installation, and used together with\n[tozd/postfix](https://gitlab.com/tozd/docker/postfix) for receiving and sending e-mails.\n`tozd/postfix` container should be configured to use SSH to deliver e-mails to `tozd/sympa`\nand use `REMOTES` environment variable to specify the container (i.e., `tozd/postfix`)\nor server used for sending e-mails.\nSee [cloyne/postfix](https://github.com/cloyne/docker-postfix) for an example how to integrate\nimages together.\n\nThe image is by default configured to be used with [tozd/postgresql](https://gitlab.com/tozd/docker/postgresql)\nPostgreSQL database, running in a container named `pgsql`.\n\n**The image contains only example values and cannot run without extending (or mounting necessary files into it).**\n\nYou should provide one volume `/etc/sympa/shared` and also mount your `sympa.conf` configuration into `/etc/sympa/sympa/sympa.conf`.\nYou can use [image default as a starting point](./etc/sympa/sympa/sympa.conf).\n\nTo create a database for Sympa, `exec` into your PostgreSQL container and run:\n\n```\n$ createuser -U postgres -DRS -PE sympa\n$ createdb -U postgres -O sympa sympa\n```\n\n## GitHub mirror\n\nThere is also a [read-only GitHub mirror available](https://github.com/tozd/docker-sympa),\nif you need to fork the project there.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftozd%2Fdocker-sympa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftozd%2Fdocker-sympa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftozd%2Fdocker-sympa/lists"}