Go to file
Christian Neukirchen 95e9cf99a0 add README
2016-07-25 17:10:21 +02:00
contrib add contrib/menter 2016-07-25 17:07:14 +02:00
man maddr.1: quoting 2016-07-25 17:10:09 +02:00
blaze822_priv.h blaze822_priv.h: add isfws 2016-07-13 16:00:20 +02:00
blaze822.c blaze822: blaze822_addr: return 0 when no address is found 2016-07-25 13:10:35 +02:00
blaze822.h seq: add blaze822_loop1 for easier argument overriding 2016-07-23 00:25:18 +02:00
COPYING add COPYING 2016-07-25 16:29:41 +02:00
filter.example filter.example: use $PIPE_CHARSET for lynx 2016-07-20 14:49:01 +02:00
flags.c various code that may end up as a mail client 2016-07-10 20:27:27 +02:00
maddr.c add maddr: show mail addresses in messages 2016-07-25 13:11:33 +02:00
Makefile add README 2016-07-25 17:10:21 +02:00
mcomp mcomp: cleanup 2016-07-22 18:35:29 +02:00
mdirs.c mdirs: need <limits.h> 2016-07-23 00:47:51 +02:00
mflag.c mflag: use blaze822_loop1 2016-07-23 00:28:06 +02:00
mhdr.c mhdr: use blaze822_loop1 2016-07-23 00:29:38 +02:00
minc.c add minc 2016-07-21 23:17:49 +02:00
mless mless: more robust id detection 2016-07-25 00:07:58 +02:00
mlist.c mlist: cleanup 2016-07-22 18:12:56 +02:00
mmime.c mmime: encode headers when neccessary 2016-07-25 15:19:19 +02:00
mnext add mprev/mnext to call mless with appropriate offset 2016-07-20 15:43:53 +02:00
mprev add mprev/mnext to call mless with appropriate offset 2016-07-20 15:43:53 +02:00
mrepl add mrepl 2016-07-20 16:58:37 +02:00
mscan.c blaze822: blaze822_addr: return 0 when no address is found 2016-07-25 13:10:35 +02:00
mseq.c mseq: -r to strip indentation 2016-07-22 16:51:47 +02:00
msetseq msetseq: save previous map 2016-07-20 19:21:53 +02:00
mshow.c mshow: display relative date 2016-07-24 23:17:16 +02:00
msort.c msort: remove diagnostics 2016-07-25 16:50:05 +02:00
mthread.c mthread: use blaze822_loop1 2016-07-23 00:29:11 +02:00
mystrverscmp.c msort: allow multiple orderings (first different wins) 2016-07-25 16:28:48 +02:00
README add README 2016-07-25 17:10:21 +02:00
rfc2045.c mshow: extract file name logic 2016-07-20 23:11:13 +02:00
rfc2047.c rfc2047: blaze822_decode_rfc2047: initialize dec and decchunk. 2016-07-21 20:16:10 +02:00
seq.c seq: fix parsing of plain . 2016-07-24 23:10:58 +02:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

MINTRO(7)              Miscellaneous Information Manual              MINTRO(7)

NAME
     mintro  Santoku introduction

DESCRIPTION
     The Santoku message system is a set of Unix utilities to deal with mail
     kept in Maildir folders.

     Its design is roughly inspired by MH, the RAND Message Handling System,
     but its is a complete implementation from scratch.

     Santoku consists of a set of Unix tools that each do one job:
     maddr(1)    to extract addresses from mail
     mcomp(1)    to write and send mail
     mdirs(1)    to find Maildirs
     mflag(1)    to change flags (marks) of mail
     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
     mrepl(1)    to reply to mail
     mscan(1)    to generate single line summaries of mail
     mseq(1)     to deal with mail sequences
     msetseq(1)  to set the mail sequence
     mshow(1)    to render mail and extract attachments
     msort(1)    to sort mail
     mthread(1)  to arrange mail into discussions

PRINCIPLES
     Santoku is a classic command line MUA with no features related to
     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)
     or similar.  Santoku expects your mail to reside in Maildir folders.

     Santoku operates directly on Maildir and doesn't use caches or database.
     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 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).

     Santoku 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.

     Santoku is written in portable C, using only POSIX functions (apart from
     a tiny Linux-only optimization).  It supports MIME and more than 7-bit
     messages (everything the host iconv(3) can decode).  It assumes you work
     in a UTF-8 environment.  Santoku works well together with other Unix mail
     tools such as offlineimap(1), mairix(1), or mu(1).

EXAMPLES
     Santoku tools are designed to be composed together into a pipe.  It is
     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
     mail as a sequence.  E.g. add a call to msetseq to above command:
           mlist -s ~/Maildir/INBOX | msort -d | msetseq | mscan
     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
     Santoku deals with messages (which are files), folders (which are Maildir
     folders), sequences (which are newline-seperated lists of messages,
     possibly persisted on disk in ~/.santoku/map), and the current message
     (kept as a symlink in ~/.santoku/cur).

     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
     Christian Neukirchen <chneukirchen@gmail.com>

LICENSE
     Santoku is in the public domain.

     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