README.md (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |

Listfix
=======
Listfix is a simple email list manager for the postfix email server. It is
designed with minimal features to be quick to set up, easy to integrate with
postfix, and simple to create and administer lists.
Listfix allows you to create and manage multiple email lists through a simple
command line interface (CLI). Integration with the postfix email server is
generally only a matter of a couple simple configuration changes (this assumes
you already have postfix installed and configured to send and receive email).
Once integrated, postfix will hand off emails to listfix if the recipient is
an address that is configured in listfix as an email list. Listfix will then
filter and/or modify the headers (most importantly, the 'To' header), and
resubmit an new email back to postfix for each recipient stored in its database.
Postfix will then deliver the new email to each recipient.
Listfix does some rewriting of the headers before it replicates an email to the
recipients. Since it is creating a new email, most of the original email
headers are no longer useful and are stripped away. Some of the original headers
are kept, such as 'To', 'Cc', 'Subject', and certain content related headers
that are required to maintain the integrity of a multipart email body. The
'From' header is readdressed so that it contains the same user@domain as the
email list itself. This is necessary to avoid emails being flagged as spam,
because it is almost a certainty that your email server is not listed as an
official sender for the domain name of the original 'From' address.
Listfix uses a json database which allows for simple viewing and direct
manipulation via your preferred text editor. This json format also allows for
easy plugin compatibility via custom written scripts or other software.
Table of Contents
-----------------
1. [Download](#download)
2. [Usage](#usage)
* [Create a new email list](#create-a-new-email-list)
* [List all email lists](#list-all-email-lists)
* [Add a recipient to an email list](#add-a-recipient-to-an-email-list)
* [List all recipients in an email list](#list-all-recipients-in-an-email-list)
* [Remove a recipient in an email list](#remove-a-recipient-in-an-email-list)
* [Destroy an email list](#destroy-an-email-list)
3. [Postfix Integration](#postfix-integration)
* [Configure virtual_alias_maps](#configure-virtual_alias_maps)
* [Configure /etc/aliases](#configure-etcaliases)
4. [License](#license)
5. [Tips](#tips)
Download
--------
#### Requirements:
This project was built using python version 3.7. It has not been tested with
lower versions. I suggest using at least python 3.7 to avoid any potential
issues.
#### Download from git:
```
$ git clone git@github.com:bartobri/listfix.git
```
Usage
-----
Basic Usage: `listfix.py <command> [<arg_1>,<arg_2>,...]`
After downloading the listfix git repo, cd to the listfix directory. Next use
the following commands to create and manage your email list database.
We'll be using the example everyone@smith-family.com for our email list address.
#### Create a new email list
Usage: `listfix.py create <email_list_address> <email_list_name>`
```
$ ./listfix.py create everyone@smith-family.com "Smith Family"
New list (everyone@smith-family.com) added.
$
```
#### List all email lists
Usage: `listfix.py lists`
```
$ ./listfix.py lists
everyone@smith-family.com (Smith Family)
$
```
#### Add a recipient to an email list
Usage: `listfix.py add <email_list_address> <recipient_address> <recipient_name>`
```
$ ./listfix.py add everyone@smith-family.com mom@example.com "Sue Smith"
New recipient (mom@example.com) added to list (everyone@smith-family.com)
$ ./listfix.py add everyone@smith-family.com dad@example.com "Bob Smith"
New recipient (dad@example.com) added to list (everyone@smith-family.com)
$ ./listfix.py add everyone@smith-family.com me@example.com "Joe Smith"
New recipient (me@example.com) added to list (everyone@smith-family.com)
```
#### List all recipients in an email list
Usage: `listfix.py dump <email_list_address>`
```
$ ./listfix.py dump everyone@smith-family.com
mom@example.com (Sue Smith)
dad@example.com (Bob Smith)
me@example.com (Joe Smith)
$
```
#### Remove a recipient in an email list
Usage: `listfix.py remove <email_list_address> <recipient_address>`
```
$ ./listfix.py remove everyone@smith-family.com mom@example.com
Recipient (mom@example.com) removed from list (everyone@smith-family.com)
$
```
#### Destroy an email list
Usage: `listfix.py destroy <email_list_address>`
```
$ ./listfix.py destroy everyone@smith-family.com
Email list (everyone@smith-family.com) destroyed
$
```
Postfix Integration
-------------------
These instructions assume you have the postfix email server set up on a unix or
linux system and you have virtual domain settings enabled. Setting up and
the postfix email server is not within scope for these instructions.
#### Configure virtual_alias_maps
Confirm that the virtual_alias_maps configuration setting exists in the postfix
main.cf config file. If it does not exist, you will have to add it. A common
setting looks something like this:
```
virtual_alias_maps = hash:/etc/postfix/virtual
```
Next add your email list(s) to the file (or resource) that if configured for
virtual_alias_maps. If it is configured similarly to the above example, Open
this file and add a new line for each email list you want to manage via listfix.
Each new line should consist of two parts separated by a space. The first
part is the email address for the list. The second part is a unique id. You can
make the unique id anything you want, but each list must have its own unique id
and it must conform to system userid character requirements. It also can not
match any userid on the system. See the below example:
```
everyone@smith-family.com list-smith-family
```
After you save the changes you will need to rebuild your virtual alias database
and restart postfix:
```
sudo postmap /etc/postfix/virtual
sudo service postfix restart
```
#### Configure /etc/aliases
Next you need to add an entry to the /etc/aliases file for each unique id you
added to the postfix virtual_alias_maps file. Each entry should start with the
unique id, followed by a colon and space, and then a command that pipes data
to listfix. Be sure to use the 'filter' command for listfix followed
by the email address of the list that corresponds to the unique id. See the
example below:
```
list-smith-family: "| /path/to/listfix.py filter everyone@smith-family.com"
```
After saving the changes you will need to rebuild the aliases database:
```
sudo newaliases
```
Now postfix will pipe emails through listfix when it receives an incoming
email addressed to one of the addresses configured in postfix's virtual
alias maps. Postfix will then replicate the contents of the email to all the
recipients for the email list.
License
-------
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License. See [LICENSE](LICENSE) for
more details.
Tips
----
[Tips are always appreciated.](https://github.com/bartobri/tips)
|