-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
# SimpleList | ||
|
||
A simple mailing list tool designed for Postfix. Re-inventing the wheel for a mailing list, but MailMan seemed like overkill for a simple announcement mailing list. | ||
A simple mailing list tool designed for Postfix. Re-inventing the wheel for a mailing list, but MailMan seemed like overkill for a simple announcement mailing list. | ||
|
||
## Installation | ||
|
||
|
||
* Copy over `simplelist.py` to a location of your choice, `/etc/postfix` will be used for further examples. | ||
* Copy `simplelist.yaml` to `/etc/postfix`. | ||
* If you have SELinux configured, run `chcon -v -t postfix_local_exec_t /etc/postfix/simplelist.py` | ||
|
||
## Setup A Mailing List | ||
|
||
* Add a line to your `/etc/aliases` for the mailing list: | ||
|
||
``` | ||
sysop: "|/etc/postfix/simplelist.py sysop" | ||
``` | ||
|
||
* Run `newalias` | ||
* Edit `simplelist.yaml` to your needs. | ||
* `gid` sends the mail to all members of that Group ID | ||
* `users` is a list of email addresses | ||
* `allowed_users` is the mail address of users allowed to send to the list. |