如何在索引屏幕上让mutt显示邮件的日期字段?


Answers:


18

您可以将index_format变量设置为包括有关每条消息的各种方式的各种详细信息。特别是,你可能想要的%d格式字符串,其中插入根据的值设置格式的日期date_format,或其他日期格式字符串中的一个,比如%{fmt}%[fmt]等等。作为一个例子,这里是我的默认index_format设置:

set 'index_format="%4C %Z %{%b %d} %-15.15L (%4l) %s"'

请查看文档,以获取有关可以配置的内容以及扩展日期格式字符串代表的内容的更多详细信息。


9
请注意,如果您在index_format中使用了%d(发件人的时区)或%D(您的时区),请不要将其放在大括号中。例如,如果在.muttrc中具有set date_format="%d %b %R",则需要使用set index_format="%4C %Z %D %-15.15L (%4l) %s"而不是"%4C %Z %{%D} %-15.15L (%4l) %s"。否则,您将获得%dor 的strftime解释%D。正如strftime的手册页所述:“ Yecch”。(-:
Steve HHH 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.