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,
|
2017-03-13 15:12:31 +00:00
|
|
|
|
but it is a complete implementation from scratch.
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
2017-03-13 15:12:31 +00:00
|
|
|
|
mblaze consists of these Unix tools that each do one job:
|
2017-07-01 16:27:29 +00:00
|
|
|
|
maddr(1) extract addresses from mail
|
|
|
|
|
magrep(1) find mails matching a pattern
|
2018-01-06 18:17:49 +00:00
|
|
|
|
mbnc(1) bounces mail
|
2017-07-01 16:27:29 +00:00
|
|
|
|
mcom(1) compose and send mail
|
|
|
|
|
mdeliver(1) deliver messages or import mailboxes
|
|
|
|
|
mdirs(1) find Maildir folders
|
|
|
|
|
mexport(1) export Maildir folders as mailboxes
|
|
|
|
|
mflag(1) change flags (marks) of mail
|
2017-07-26 15:23:01 +00:00
|
|
|
|
mflow(1) reflow format=flowed plain text mails
|
2017-07-01 16:27:29 +00:00
|
|
|
|
mfwd(1) forward mail
|
|
|
|
|
mgenmid(1) generate Message-IDs
|
|
|
|
|
mhdr(1) extract mail headers
|
|
|
|
|
minc(1) incorporate new mail
|
|
|
|
|
mless(1) conveniently read mail in less(1)
|
|
|
|
|
mlist(1) list and filter mail messages
|
|
|
|
|
mmime(1) create MIME messages
|
|
|
|
|
mmkdir(1) create new Maildir
|
|
|
|
|
mpick(1) advanced mail filter
|
|
|
|
|
mrep(1) reply to mail
|
|
|
|
|
mscan(1) generate one-line summaries of mail
|
|
|
|
|
msed(1) manipulate mail headers
|
|
|
|
|
mseq(1) manipulate mail sequences
|
|
|
|
|
mshow(1) render mail and extract attachments
|
|
|
|
|
msort(1) sort mail
|
|
|
|
|
mthread(1) arrange mail into discussions
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
PRINCIPLES
|
2017-07-01 16:27:29 +00:00
|
|
|
|
mblaze is a classic command line MUA and has no features for receiving or
|
|
|
|
|
transferring mail; you are expected to fetch your mail using fdm(1),
|
|
|
|
|
getmail(1) offlineimap(1), procmail(1), or similar , and send it using
|
|
|
|
|
dma(8), msmtp(1), sendmail(8), as provided by OpenSMTPD, Postfix, or
|
|
|
|
|
similar. mblaze expects your mail to reside in Maildir folders.
|
|
|
|
|
|
|
|
|
|
mblaze operates directly on Maildir folders and doesn't use its 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 limit
|
|
|
|
|
syscalls. Parsing mail metadata is optimized to limit I/O requests.
|
|
|
|
|
Initial operations on a large Maildir may feel slow, but as soon as they
|
|
|
|
|
are in the file system cache, everything is blazingly fast. The tools
|
|
|
|
|
are written to be memory efficient (i.e. not wasteful), but whole
|
|
|
|
|
messages are assumed to fit into RAM easily (one at a time).
|
|
|
|
|
|
|
|
|
|
mblaze has been written from scratch and tested on a large corpus 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
|
2017-07-01 16:27:29 +00:00
|
|
|
|
well together with other Unix mail tools such as mairix(1), mu(1), or
|
|
|
|
|
offlineimap(1).
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
EXAMPLES
|
2017-07-01 16:27:29 +00:00
|
|
|
|
mblaze tools are designed to be composed together in a pipe. They are
|
|
|
|
|
suitable for interactive use and for scripting, and integrate well into a
|
|
|
|
|
Unix workflow.
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
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
|
2017-07-01 16:27:29 +00:00
|
|
|
|
|
|
|
|
|
To operate on a set of mails in multiple steps, you can save it as a
|
|
|
|
|
sequence, e.g. add a call to ‘mseq -S’ to the above command:
|
2016-07-26 14:39:10 +00:00
|
|
|
|
mlist -s ~/Maildir/INBOX | msort -d | mseq -S | mscan
|
2017-07-01 16:27:29 +00:00
|
|
|
|
|
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
|
2017-07-01 16:27:29 +00:00
|
|
|
|
|
|
|
|
|
Likewise, you could decide to incorporate (by moving from new to cur) all
|
|
|
|
|
new mail in all folders, thread it and look at it interactively:
|
2016-07-25 15:10:21 +00:00
|
|
|
|
mdirs ~/Maildir | xargs minc | mthread | mless
|
2017-07-01 16:27:29 +00:00
|
|
|
|
|
|
|
|
|
Or you could list the attachments of the 20 largest mails in your INBOX:
|
|
|
|
|
mlist ~/Maildir/INBOX | msort -S | tail -20 | mshow -t
|
|
|
|
|
|
2016-07-25 15:10:21 +00:00
|
|
|
|
Or apply the patches from the current mail:
|
|
|
|
|
mshow -O. '*.diff' | patch
|
2017-07-01 16:27:29 +00:00
|
|
|
|
|
2016-07-25 15:10:21 +00:00
|
|
|
|
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,
|
2017-06-30 14:27:05 +00:00
|
|
|
|
possibly saved 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
|
|
|
|
|
2017-06-30 14:27:05 +00:00
|
|
|
|
Messages in the saved sequence can be referred to using special syntax as
|
|
|
|
|
explained in mmsg(7).
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
2017-02-20 14:40:01 +00:00
|
|
|
|
For configuration, see mblaze-profile(5).
|
|
|
|
|
|
2016-07-25 15:10:21 +00:00
|
|
|
|
SEE ALSO
|
2017-02-20 14:40:01 +00:00
|
|
|
|
mailx(1), mblaze-profile(5), nmh(7)
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
AUTHORS
|
2017-01-21 16:17:12 +00:00
|
|
|
|
Leah Neukirchen <leah@vuxu.org>
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
2017-06-30 14:34:13 +00:00
|
|
|
|
There is a mailing list available at mblaze@googlegroups.com (to
|
|
|
|
|
subscribe, send a mail to mblaze+subscribe@googlegroups.com. Please
|
2017-06-23 17:31:02 +00:00
|
|
|
|
report security-related bugs directly to the author), as well as an IRC
|
|
|
|
|
channel #vuxu on irc.freenode.net.
|
|
|
|
|
|
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.
|
|
|
|
|
|
2018-01-06 18:17:49 +00:00
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
2016-07-25 15:10:21 +00:00
|
|
|
|
|
2018-01-06 18:17:49 +00:00
|
|
|
|
Void Linux January 6, 2018 Void Linux
|