0

I am using neomutt and configure the way the senders name is displayed. (not altering display name in outgoing mails)

index_format can do that, and it's defeault is

%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s

L means author's name.

I like to control author's name and want that nickname I've set with alias will be displayed.

Is this possible?

auditory
  • 165
  • 6

1 Answers1

1

You need to set reverse_alias and define aliases for people You want to display with nickname. This will affect displaying on index only as You want - no changes in pager or anywhere else.

Example:

set reverse_alias = yes

alias boss My boss <my.boss@exmaple.org>

reverse_alias in docs: neomutt, mutt

Jakub Jindra
  • 551
  • 6
  • 12
  • thanks. In addition, for utf-8 names, `set config_charset = "utf-8"` was needed, and nickname is needed to be quoted. – auditory Mar 19 '21 at 09:18