I found a small problem about $write_inc.
If $write_inc variable is set,
the number of mails be written is printed
when writing the mbox or MMDF mailbox.
But its function does not work on the MH and Maildir mailbox.
It seems that mutt-unstable-20000121, the current version of mutt,
has same problem.
The following patch may make it worked.
This patch is for mutt-1.0pre3, but can be apllied to any version.
*** mh.c.orig Fri Jan 21 18:27:56 2000
--- mh.c Fri Jan 21 19:56:37 2000
***************
*** 736,741 ****
--- 736,744 ----
for (i = 0; i < ctx->msgcount; i++)
{
+ if (!ctx->quiet && WriteInc && ((i % WriteInc) == 0 || i == 1))
+ mutt_message (_("Writing messages... %d"), i);
+
if (ctx->hdrs[i]->deleted)
{
snprintf (path, sizeof (path), "%s/%s", ctx->path, ctx->hdrs[i]->path);
--
NAKATA, Junya
School of Information Science
Japan Advanced Institute of Science and Technology
Email: [EMAIL PROTECTED]