minimalist
minimalist copied to clipboard
minimalist mailing list manager
=========================== Minimalist =============================
I. Common information
Minimalist is a MINImalist MAiling LIST manager. It is fast, extremely easy to setup and support. It is written in Perl and tested on OpenBSD/OpenSMTPd. However there are no causes not to use Minimalist on any other Unix system, because it doesn't use any system-dependent features.
Minimalist has these features:
. subscribe/unsubscribe users by request * including write-only option of subscription . read-only/closed/mandatory lists . information about list; users, subscribed to list; lists, to which user subscribed . per-user options: * read-only (for open lists) * write allow (for read-only lists)) * maximum message size . susped/resume subscription . archiving lists (internal and external), with maximum size of archived message . multilanguage support . process MIME-encoded messages * including support for local charset (for reports and footer) . hook for bounce processing (using VERP - Variable Envelope Return-Path) . external delivery of processed message . blacklist . logging activity
Minimalist has a notion of 'administrators' (global and per-list). They have full rights to manipulate subscription of other users and get any information, related to lists and users.
Basic language of Minimalist is English, additional translations can be found either in distribution (in directory translations/) or on Web, at https://github.com/madroach/minimalist/tree/master/translations. New translations can easily be created using an existing translation as template. See alse perl Maketext: http://perldoc.perl.org/Locale/Maketext.html
Commands may be either in subject of message (one command per message) or in body (one or more commands, one per line). Batched processing starts when subject either empty or contains command 'body' (without quotes) and stops when either arrives command 'stop' or 'exit' (without quotes) or gets 10 incorrect commands.
Supported commands are:
subscribe [
. If
contains suffix '-writers', user
will be able to write to this
, but will not receive messages
from it.
unsubscribe [
. Can be used with suffix '-writers' (see
above description for subscribe)
auth :
Confirm command, used in response to subscription requests in some cases.
This command isn't standalone, it must be used only in response to a
request by Minimalist.
mode
suspend :
(obsolete) Stop receiving of messages from specified mailing list
resume :
(obsolete) Restore receiving of messages from specified mailing list
maxsize
which [
info [] :
Request information about all existing lists or about
who :
Return the list of users subscribed to
help : Return list of supported commands with brief description about every command
Note, that commands with
{pwd: list_password}
For example:
To: MML Discussion {pwd: password1235} <[email protected]>
This fragment, of course, will be removed from the header before sending message to subscribers.
II. Install
To install, place minimalist.pl somewhere (in /usr/local/sbin for example). This path must be accessible for MTA and minimalist.pl must be executable by your MTA. It is recommended to set the script suid root. Minimalist will then chroot and then drop privileges to the user set in the config file or to its real uid.
Then copy minimalist.conf to /etc/minimalist.conf. If you wish to have it in different location, you will use '-c' command-line directive, followed by full path and name of file, where appropriate config located (for example: minimalist.pl -c /etc/minimalist.conf ). Set variables in config accordingly to your needs (defaults are useful in most cases).
The next step is to create alias for minimalist, which pipes received message to the program. The often place of aliases file is /etc/aliases. Add this line at the end of file:
minimalist: |/usr/local/sbin/minimalist.pl (if your MTA adds a delivered-to: header)
or if it doesn't:
minimalist: "|/usr/local/sbin/minimalist.pl minimalist"
and, if your MTA requires, do all it need to actualize changes.
After this you must create a directory which Minimalist will use for work.
It is defined in the minimalist.conf by directive 'directory'. In this
directory you need at least "lists" and "auth" subdirectorys. Optionally you
can create a "translations" subdirectory where you can put perl Maketext
translation files. Of course all directories need to be readable by
minimalist. The auth directory must also be writable.
III. Creating lists
-
In the "lists" directory, create a directory, named exactly as the list you are creating. In this directory minimalist probably needs write access to files "list", "list-writers" and maybe the directory "archive".
-
Create in the list's directory some files: An example can be found in the distributions "lists/minimalist-example" directory.
a) config Private settings for this list, they override global parameters.
b) info Common information about list, used when user subscribes to the list and requests information about list.
c) footer This file will be appended to any message, passed through list. There are few ways in which footer can be added to message:
* if message is not encoded (i.e. if it's 7bit or 8bit), message's
charset is the same as list's charset or list's charset is default
(us-ascii) and footer doesn't contain any predefined MIME-headers
(see below), then footer will be simply added to the end of the
incoming message.
* else entire message will be converted to MIME-format and footer
will be added as separate entity, with his own charset (from
configuration or from predefined headers).
* if message is already MIME-encoded, then footer will be added as
separate entity, accordingly to structure of incoming message.
It means, that footer will always be visible regardless of attachments
in message or encoding of message or charset, used in message.
If you want to define your own headers, start footer with string
'*hdr: ' (without quotes), followed by headers. Body of footer must be
separated from header with empty line, for example:
+--------------------------------------------------------
|*hdr: Content-Type: text/html; charset=koi8-r
|Content-Transfer-Encoding: 8bit
|
|<html>
|... rest body of header ...
|</html>
+--------------------------------------------------------
It gives ability to use in footer whatever you want, from HTML code,
which has references to some other resources, to animated GIFs or
Flash programs.
There are some useful macros can be used in 'info' and 'footer' files:
\a will be expanded to administrator's email
\d will be expanded to <domain>
\l will be expanded to <list>
\o will be expanded to <list>-owner@<domain>
- Add list's aliases to /etc/aliases file:
minimalist-example: |/usr/local/sbin/minimalist.pl minimalist-example-owner: user@somewhere (if your MTA adds a delivered-to: header)
or if it doesn't:
minimalist-example: "|/usr/local/sbin/minimalist.pl list" minimalist-example-owner: user@somewhere
If you are using VERP for bounce processing (see minimalist.conf for information about directive 'verp'), you must add one more alias, something like to:
minimalist-example-owner-*: |/path/to/bounce_processing_tool.pl
Wildcard mask specifies, that any message, where recipient's address starts on 'list-owner-', will be passed to bounce_processing_tool.pl. Check your MTA documentation on how to create wildcard aliases.
Distribution of Minimalist does not provide bounce processing program for now. You should use any third-party program.
IV. Check configuration
You always can check your configuration with:
minimalist.pl - [listname [listname ... ]]
where 'listname' is existing list's name. If there are errors in they will be reported. It is recommended always check configuration after any changes either in global configuration file or in list's config.
V. Security
Information on how to get administrative privileges may be stored in global and private configs. You must set owner and permissions of this configs to allow minimalist to access these configs, but disallow access for unprivileged users. If run setuid root, minimalist will read the main configuration before chrooting, so you may set more restrictive permissions on that file.
VI. Internals
Subscribers are listed in files 'list' and 'list-writers' in list's directory. Format: e-mail per row. Settings for subscriber are appended to his e-mail through separator '>'. Available values are (without quotes):
'+' - user allowed to write in read only list (mode ... writer)
'-' - user disallowed to write in list (mode ... reader)
'!' - suspended user (suspend/resume, mode ... suspend/resume)
'#ms
Archives are located under list's directory in archive/yyyy./mm./dd./[0-9]* in format one file per one message. DON'T DELETE "SEQUENCE" file in this directory - there is a number of a last archived message!
VII. Enjoy :)
There is mailing list about Minimalist. Please, mail to [email protected] with subject of 'subscribe mml-general' to subscribe on this list.
Vladimir Litovka, [email protected] http://www.mml.org.ua/