You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mblaze/README

135 lines
5.9 KiB
Plaintext

MBLAZE(7) Miscellaneous Information Manual MBLAZE(7)
8 years ago
NAME
6 years ago
mblaze introduction to the mblaze message system
8 years ago
DESCRIPTION
6 years ago
The mblaze message system is a set of Unix utilities for processing and
interacting with mail messages which are stored in maildir folders.
8 years ago
Its design is roughly inspired by MH, the RAND Message Handling System,
but it is a complete implementation from scratch.
8 years ago
6 years ago
mblaze consists of these Unix utilities that each do one job:
maddr(1) extract mail addresses from messages
magrep(1) search messages matching a pattern
mbnc(1) bounce messages
mcom(1) compose and send messages
mdeliver(1) deliver messages or import mbox file
mdirs(1) list maildir folders, recursively
mexport(1) export messages as mbox file
mflag(1) manipulate maildir message flags
6 years ago
mflow(1) reflow format=flowed plain text messages
mfwd(1) forward messages
mgenmid(1) generate a Message-ID
mhdr(1) print message headers
minc(1) incorporate new messages
mless(1) conveniently read messages in less(1)
mlist(1) list and filter messages
7 years ago
mmime(1) create MIME messages
6 years ago
mmkdir(1) create new maildir folders
mpick(1) advanced message filter
6 years ago
mrefile(1) move or copy messages between maildir folders
6 years ago
mrep(1) reply to messages
mscan(1) generate one-line message summaries
msed(1) manipulate message headers
mseq(1) manipulate message sequences
mshow(1) render messages and extract MIME parts
msort(1) sort messages
mthread(1) arrange messages into discussions
7 years ago
mblaze is a classic command line MUA and has no features for receiving or
6 years ago
transferring messages; you can operate on messages in a local maildir
spool, or fetch your messages using fdm(1), getmail(1), offlineimap(1),
or similar utilities, and send it using dma(8), msmtp(1), sendmail(8), as
provided by OpenSMTPD, Postfix, or similar.
mblaze operates directly on maildir folders and doesn't use its own
caches or databases. There is no setup needed for many uses. All
utilities have been written with performance in mind. Enumeration of all
messages in a maildir is avoided unless necessary, and then optimized to
limit syscalls. Parsing message 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 utilities 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 is now well tested, but it is
not 100% RFC-conforming (which is neither worth it, nor desirable).
There may be issues with very old, nonconforming, messages.
8 years ago
mblaze is written in portable C, using only POSIX functions (apart from a
tiny Linux-only optimization), and has no external dependencies. It
8 years ago
supports MIME and more than 7-bit messages (everything the host iconv(3)
can decode). It assumes you work in a UTF-8 environment. mblaze works
6 years ago
well with other Unix utilities such as mairix(1), mu(1), or
7 years ago
offlineimap(1).
8 years ago
EXAMPLES
6 years ago
mblaze utilities 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.
8 years ago
6 years ago
For example, you could decide you want to look at all unseen messages in
your INBOX, oldest first.
8 years ago
mlist -s ~/Maildir/INBOX | msort -d | mscan
7 years ago
6 years ago
To operate on a set of messages in multiple steps, you can save it as a
7 years ago
sequence, e.g. add a call to mseq -S to the above command:
8 years ago
mlist -s ~/Maildir/INBOX | msort -d | mseq -S | mscan
7 years ago
8 years ago
Now mscan will show message numbers and you could look at the first five
6 years ago
messages at once, for example:
8 years ago
mshow 1:5
7 years ago
Likewise, you could decide to incorporate (by moving from new to cur) all
6 years ago
new messages in all folders, thread it and look at it interactively:
8 years ago
mdirs ~/Maildir | xargs minc | mthread | mless
7 years ago
6 years ago
Or you could list the attachments of the 20 largest messages in your
INBOX:
7 years ago
mlist ~/Maildir/INBOX | msort -S | tail -20 | mshow -t
6 years ago
Or apply the patches from the current message:
8 years ago
mshow -O. '*.diff' | patch
7 years ago
8 years ago
As usual with pipes, the sky is the limit.
CONCEPTS
6 years ago
mblaze deals with messages (which are files), folders (which are maildir
8 years ago
folders), sequences (which are newline-separated lists of messages,
7 years ago
possibly saved on disk in ${MBLAZE:-$HOME/.mblaze}/seq), and the current
message (kept as a symlink in ${MBLAZE:-$HOME/.mblaze}/cur).
8 years ago
7 years ago
Messages in the saved sequence can be referred to using special syntax as
explained in mmsg(7).
8 years ago
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.
7 years ago
For configuration, see mblaze-profile(5).
8 years ago
SEE ALSO
7 years ago
mailx(1), mblaze-profile(5), nmh(7)
8 years ago
AUTHORS
7 years ago
Leah Neukirchen <leah@vuxu.org>
8 years ago
There is a mailing list available at mblaze@googlegroups.com (to
4 years ago
subscribe, send a message to mblaze+subscribe@googlegroups.com); archives
are available at https://inbox.vuxu.org/mblaze/. There also is an IRC
channel #vuxu on irc.libera.chat. Please report security-related bugs
4 years ago
directly to the author.
8 years ago
LICENSE
mblaze is in the public domain.
8 years ago
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/
8 years ago
4 years ago
Void Linux January 18, 2020 Void Linux