Variable: gnus-article-time-format

gnus-article-time-format is a customizable variable defined in gnus-art.el.gz.

Value

"%a, %d %b %Y %T %Z"

Documentation

Format for display of Date headers in article bodies.

See format-time-string for the possible values.

The variable can also be function, which should return a complete Date header. The function is called with one argument, the time, which can be fed to format-time-string.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-article-time-format "%a, %d %b %Y %T %Z"
  "Format for display of Date headers in article bodies.
See `format-time-string' for the possible values.

The variable can also be function, which should return a complete Date
header.  The function is called with one argument, the time, which can
be fed to `format-time-string'."
  :type '(choice string function)
  :link '(custom-manual "(gnus)Article Date")
  :group 'gnus-article-washing)