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/man/mblaze.7

205 lines
5.3 KiB
Groff

.Dd January 6, 2018
.Dt MBLAZE 7
8 years ago
.Os
.Sh NAME
.Nm mblaze
.Nd introduction to mblaze
8 years ago
.Sh DESCRIPTION
The
.Nm
8 years ago
message system is a set of Unix utilities to deal with
mail kept in Maildir folders.
.Pp
Its design is roughly inspired by MH, the RAND Message Handling
System, but it is a complete implementation from scratch.
8 years ago
.Pp
.Nm
consists of these Unix tools that each do one job:
8 years ago
.Bl -tag -width 11n -compact
8 years ago
.It Xr maddr 1
extract addresses from mail
8 years ago
.It Xr magrep 1
find mails matching a pattern
.It Xr mbnc 1
bounces mail
.It Xr mcom 1
compose and send mail
8 years ago
.It Xr mdeliver 1
deliver messages or import mailboxes
8 years ago
.It Xr mdirs 1
find Maildir folders
8 years ago
.It Xr mexport 1
export Maildir folders as mailboxes
8 years ago
.It Xr mflag 1
change flags (marks) of mail
7 years ago
.It Xr mflow 1
reflow format=flowed plain text mails
.It Xr mfwd 1
forward mail
.It Xr mgenmid 1
generate Message-IDs
8 years ago
.It Xr mhdr 1
extract mail headers
8 years ago
.It Xr minc 1
incorporate new mail
8 years ago
.It Xr mless 1
conveniently read mail in
8 years ago
.Xr less 1
.It Xr mlist 1
list and filter mail messages
8 years ago
.It Xr mmime 1
create MIME messages
.It Xr mmkdir 1
create new Maildir
.It Xr mpick 1
advanced mail filter
.It Xr mrep 1
reply to mail
8 years ago
.It Xr mscan 1
generate one-line summaries of mail
8 years ago
.It Xr msed 1
manipulate mail headers
8 years ago
.It Xr mseq 1
manipulate mail sequences
8 years ago
.It Xr mshow 1
render mail and extract attachments
8 years ago
.It Xr msort 1
sort mail
8 years ago
.It Xr mthread 1
arrange mail into discussions
8 years ago
.El
.Sh PRINCIPLES
.Nm
is a classic command line MUA and has no features
for receiving or transferring mail;
you are expected to fetch your mail using
8 years ago
.Xr fdm 1 ,
.Xr getmail 1
.Xr offlineimap 1 ,
.Xr procmail 1 ,
or similar ,
8 years ago
and send it using
.Xr dma 8 ,
.Xr msmtp 1 ,
8 years ago
.Xr sendmail 8 ,
as provided by
OpenSMTPD,
Postfix,
or similar.
.Nm
8 years ago
expects your mail to reside in Maildir folders.
.Pp
.Nm
operates directly on Maildir folders and doesn't
use its own caches or databases.
8 years ago
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.
8 years ago
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).
8 years ago
.Pp
.Nm
has been written from scratch and tested on a large corpus of personal mail,
but is not actually 100% RFC-conforming
8 years ago
(which is neither worth it nor desirable).
There may be issues with very old, nonconforming, messages.
.Pp
.Nm
8 years ago
is written in portable C, using only POSIX functions (apart from a tiny
Linux-only optimization),
and has no external dependencies.
8 years ago
It supports MIME and more than 7-bit messages (everything the host
.Xr iconv 3
can decode).
It assumes you work in a UTF-8 environment.
.Nm
8 years ago
works well together with other Unix mail tools such as
.Xr mairix 1 ,
.Xr mu 1 ,
8 years ago
or
.Xr offlineimap 1 .
8 years ago
.Sh EXAMPLES
.Nm
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.
8 years ago
.Pp
For example, you could decide you want to look at all unseen mail in your
INBOX, oldest first.
.Dl mlist -s ~/Maildir/INBOX | msort -d | mscan
.Pp
To operate on a set of mails in multiple steps,
you can save it as a sequence,
e.g. add a call to
8 years ago
.Ql mseq -S
to the above command:
8 years ago
.Dl mlist -s ~/Maildir/INBOX | msort -d | mseq -S | mscan
.Pp
8 years ago
Now mscan will show message numbers and you could look at the first
five mails at once, for example:
.Dl mshow 1:5
.Pp
Likewise, you could decide to incorporate (by moving from
.Pa new
to
.Pa cur )
all new mail in all folders,
thread it and look at it interactively:
8 years ago
.Dl mdirs ~/Maildir | xargs minc | mthread | mless
.Pp
Or you could list the attachments of the 20 largest mails in your INBOX:
.Dl mlist ~/Maildir/INBOX | msort -S | tail -20 | mshow -t
.Pp
8 years ago
Or apply the patches from the current mail:
.Dl mshow -O . '*.diff' | patch
.Pp
8 years ago
As usual with pipes, the sky is the limit.
.Sh CONCEPTS
.Nm
8 years ago
deals with messages (which are files),
folders (which are Maildir folders),
sequences (which are newline-separated lists of messages, possibly saved on disk in
.Pa ${MBLAZE:-$HOME/.mblaze}/seq ) ,
8 years ago
and the current message (kept as a symlink in
.Pa ${MBLAZE:-$HOME/.mblaze}/cur ) .
8 years ago
.Pp
Messages in the saved sequence can be referred to using special
8 years ago
syntax as explained in
.Xr mmsg 7 .
.Pp
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.
.Pp
For configuration, see
.Xr mblaze-profile 5 .
8 years ago
.Sh SEE ALSO
.Xr mailx 1 ,
.Xr mblaze-profile 5 ,
8 years ago
.Xr nmh 7
.Sh AUTHORS
7 years ago
.An Leah Neukirchen Aq Mt leah@vuxu.org
.Pp
There is a mailing list available at
.Mt mblaze@googlegroups.com
(to subscribe, send a mail to
.Mt mblaze+subscribe@googlegroups.com .
Please report security-related bugs directly to the author),
as well as an IRC channel
.Li #vuxu
on irc.freenode.net.
8 years ago
.Sh LICENSE
.Nm
8 years ago
is in the public domain.
.Pp
To the extent possible under law,
the creator of this work
has waived all copyright and related or
neighboring rights to this work.
.Pp
.Lk http://creativecommons.org/publicdomain/zero/1.0/