On Mon, Nov 13, 2000 at 03:00:52PM -0500, Josh Huber wrote:
> > set index_format = "%4C %Z %[%b %d] %-15.15n (%4l) %s"
> > ^^^^^^^^
> >
> > The default format string has "%-15.15L" instead of "%-15.15n". The
> > "n" expands to the author's real name (or address if the real name
> > isn't known). I believe the numbers have to do with the field length.
>
> Yep, ok. Thanks.
FYI using that will break your outbox (if you use one) showing who the
outbound mail is to. So I'd use it like this:
folder-hook . 'set index_format = "%4C %Z %[%b %d] %-15.15n (%4l) %s"'
# Set the outbox index different, I want to see who I'm sending to.
folder-hook out 'set index_format = "%4C %Z %[%b %d] %-15.15L (%4l) %s"'
And also BTW the default is:
set index_format = "%4C %Z %{%b %d} %-15.15n (%4l) %s"
^^^^^^^^
Note the difference between {} and [].
{} transforms the date to the senders localtime.
[] transforms the date to your localtime.
--
Ben Reser <[EMAIL PROTECTED]>
http://ben.reser.org
Maslow's Maxim: If the only tool you have is a hammer,
you treat everything like a nail.