mblaze/README

117 lines
5.2 KiB
Plaintext
Raw Normal View History

2016-08-01 17:33:25 +00:00
MBLAZE(7) Miscellaneous Information Manual MBLAZE(7)
2016-07-25 15:10:21 +00:00
NAME
2016-08-01 17:33:25 +00:00
mblaze introduction to mblaze
2016-07-25 15:10:21 +00:00
DESCRIPTION
2016-08-01 17:33:25 +00:00
The mblaze message system is a set of Unix utilities to deal with mail
2016-07-25 15:10:21 +00:00
kept in Maildir folders.
Its design is roughly inspired by MH, the RAND Message Handling System,
but its is a complete implementation from scratch.
2016-08-01 17:33:25 +00:00
mblaze consists of a set of Unix tools that each do one job:
2016-07-26 15:54:27 +00:00
maddr(1) to extract addresses from mail
2016-08-02 13:50:30 +00:00
magrep(1) to find mails matching a pattern
mcom(1) to write and send mail
2016-07-26 15:54:27 +00:00
mdeliver(1) to deliver messages or import mailboxes
mdirs(1) to find Maildirs
2016-08-19 15:53:40 +00:00
mexport(1) to export mailboxes
2016-07-26 15:54:27 +00:00
mflag(1) to change flags (marks) of mail
2016-08-01 15:22:51 +00:00
mgenmid(1) to generate Message-IDs
2016-07-26 15:54:27 +00:00
mhdr(1) to extract mail headers
minc(1) to incorporate new mail
mless(1) to conveniently read mail in less(1)
mlist(1) to list and filter mail messages
mmime(1) to create MIME messages
2016-07-28 16:09:31 +00:00
mpick(1) to filter mail
mrep(1) to reply to mail
2016-07-26 15:54:27 +00:00
mscan(1) to generate single line summaries of mail
2016-08-01 12:55:34 +00:00
msed(1) to manipulate mail headers
2016-07-26 15:54:27 +00:00
mseq(1) to manipulate mail sequences
mshow(1) to render mail and extract attachments
msort(1) to sort mail
mthread(1) to arrange mail into discussions
2016-07-25 15:10:21 +00:00
PRINCIPLES
2016-08-01 17:33:25 +00:00
mblaze is a classic command line MUA with no features related to
2016-07-25 15:10:21 +00:00
receiving and transferring mail. You are expected to fetch your mail
using offlineimap(1), fdm(1), procmail(1), getmail(1) or similar and send
it using sendmail(8), as provided by OpenSMTPD, Postfix, msmtp(1), dma(8)
2016-08-01 17:33:25 +00:00
or similar. mblaze expects your mail to reside in Maildir folders.
2016-07-25 15:10:21 +00:00
2016-09-05 10:54:07 +00:00
mblaze operates directly on Maildir and doesn't use own caches or
databases. There is no setup needed for many uses. All tools have been
written with performance in mind. Enumeration of all mails in a Maildir
is avoided unless necessary, and then optimized to use few syscalls.
Parsing mail metadata is optimized to use few I/O requests. Initial
operations on big Maildir may feel slow, but as soon as they are in file
system cache, everything is blazing fast. The tools are written to be
memory efficient (i.e. not wasteful), but whole messages are assumed to
fit into RAM easily (at a time).
2016-07-25 15:10:21 +00:00
2016-08-01 17:33:25 +00:00
mblaze has been written from scratch and tested on a big pile of personal
mail, but is not actually 100% RFC conforming (which is neither worth it
nor desirable). There may be issues with very old, nonconforming,
messages.
2016-07-25 15:10:21 +00:00
2016-08-01 17:33:25 +00:00
mblaze is written in portable C, using only POSIX functions (apart from a
tiny Linux-only optimization), and has no external dependencies. It
2016-08-01 12:55:34 +00:00
supports MIME and more than 7-bit messages (everything the host iconv(3)
2016-08-01 17:33:25 +00:00
can decode). It assumes you work in a UTF-8 environment. mblaze works
2016-08-01 12:55:34 +00:00
well together with other Unix mail tools such as offlineimap(1),
mairix(1), or mu(1).
2016-07-25 15:10:21 +00:00
EXAMPLES
2016-08-01 17:33:25 +00:00
mblaze tools are designed to be composed together into a pipe. It is
2016-07-25 15:10:21 +00:00
suitable for interactive use and for scripting. It integrates well into
a Unix workflow.
For example, you could decide you want to look at all unseen mail in your
INBOX, oldest first.
mlist -s ~/Maildir/INBOX | msort -d | mscan
To operate on a set of mails in multiple steps, you can save a list of
2016-07-26 14:39:10 +00:00
mail as a sequence. E.g. add a call to mseq -S to above command:
mlist -s ~/Maildir/INBOX | msort -d | mseq -S | mscan
2016-07-25 15:10:21 +00:00
Now mscan will show message numbers and you could look at the first five
mails at once, for example:
mshow 1:5
Likewise, you could decide to look at all freshly received mail in all
folders, thread it and look at it interactively:
mdirs ~/Maildir | xargs minc | mthread | mless
Or you could look at the attachments of the 20 largest mails in your
INBOX:
mlist ~/Maildir/INBOX | msort -s | tail -20 | mshow -t
Or apply the patches from the current mail:
mshow -O. '*.diff' | patch
As usual with pipes, the sky is the limit.
CONCEPTS
2016-08-01 17:33:25 +00:00
mblaze deals with messages (which are files), folders (which are Maildir
2016-07-25 22:27:28 +00:00
folders), sequences (which are newline-separated lists of messages,
2016-09-02 21:55:13 +00:00
possibly persisted on disk in ${MBLAZE:-$HOME/.mblaze}/seq), and the
current message (kept as a symlink in ${MBLAZE:-$HOME/.mblaze}/cur).
2016-07-25 15:10:21 +00:00
Messages in the persisted sequence can be referred to using special
syntax as explained in mmsg(7).
Many utilities have a default behavior when used interactively from a
terminal (e.g. operate on the current message or the current sequence).
For scripting, you must make these arguments explicit.
SEE ALSO
mailx(1), nmh(7)
AUTHORS
2017-01-21 16:17:12 +00:00
Leah Neukirchen <leah@vuxu.org>
2016-07-25 15:10:21 +00:00
LICENSE
2016-08-01 17:33:25 +00:00
mblaze is in the public domain.
2016-07-25 15:10:21 +00:00
To the extent possible under law, the creator of this work has waived all
copyright and related or neighboring rights to this work.
http://creativecommons.org/publicdomain/zero/1.0/
Void Linux July 22, 2016 Void Linux