https://github.com/andersfugmann/postlist
Small simple mailling list handler
https://github.com/andersfugmann/postlist
Last synced: 11 months ago
JSON representation
Small simple mailling list handler
- Host: GitHub
- URL: https://github.com/andersfugmann/postlist
- Owner: andersfugmann
- Created: 2020-12-11T19:43:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T23:41:38.000Z (over 3 years ago)
- Last Synced: 2024-10-19T01:13:16.340Z (over 1 year ago)
- Language: Shell
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple postfix mail list
After trying to keep mailman running,
and to setup sympia, I created this little script.
Its a very simple script, which will create a simple
dmarc complient mailing list.
## Installation
To install run;
```
$ make install
```
Now edit /etc/postlist.conf
each section defines a mailing list,
and must contain:
```
[]
description = Some description
subscribers = fully qualified addresses of all list subscribers
```
After editing, run
```
$ sudo postlist setup
```
to complete the setup. Every time you make changes to the
configuration, it its adviced to repeat this step.
### Postfix integration
in `/etc/postfix/main.cf` append `hash:/etc/postfix/postlist` (or
whereever you configured the postlist file to be generated)
E.g.:
```
alias_database = hash:/etc/aliases, hash:/etc/postfix/postlist
```
Then load postfix: `postfix reload`
## Archives
All received mails are stored in `//archive`.
There is no webui to read these yet.