			      <Caution>

This directory contains some contributions. I (Kazu Yamamoto) would
merge them maybe but I'm not in charge of them at present.

			  <Local mail spool>

Mew uses POP to fetch received messages by default. If you want to use
local mail spool (e.g mbox, maildir), set 'mew-mailbox-type' to 'mbox.

	(setq mew-mailbox-type 'mbox)

With this configuration, Mew executes 'mew-mbox-command' instead of
POP. There are so many candidates for this value:

<<mbox>>
	MH's "inc":
		(setq mew-mbox-command "inc")
		(setq mew-mbox-command-arg "-truncate -file /path/to/mbox")

	A Perl command "incmbox":
		(setq mew-mbox-command "incmbox")
		(setq mew-mbox-command-arg "-d /path/to/mbox -e /path/to/movemail")

	A Perl command "mewinc":
		(setq mew-mbox-command "mewinc")

	A C command "incm":
		(setq mew-mbox-command "incm")
		;; A file is considered as mbox
		(setq mew-mbox-command-arg "-d /path/to/mbox")

<<maildir>>
	A shell command "incdir":
		(setq mew-mbox-command "incdir")
		(setq mew-mbox-command-arg "-d /path/to/maildir")

	A C command "incm":
		(setq mew-mbox-command "incm")
		;; A directory is considered as maildir
		(setq mew-mbox-command-arg "-d /path/to/maildir")

Read "../00api" for more information.

"incm" is found at:
	ftp://ftp.Mew.org/pub/Mew/incm-0.x.tar.gz
