Variable: gnus-add-timestamp-to-message
gnus-add-timestamp-to-message is a customizable variable defined in
gnus-util.el.gz.
Value
nil
Documentation
Non-nil means add timestamps to messages that Gnus issues.
If it is log, add timestamps to only the messages that go into
the "*Messages*" buffer. If it is neither nil nor log, add
timestamps not only to log messages but also to the ones
displayed in the echo area.
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defcustom gnus-add-timestamp-to-message nil
"Non-nil means add timestamps to messages that Gnus issues.
If it is `log', add timestamps to only the messages that go into
the \"*Messages*\" buffer. If it is neither nil nor `log', add
timestamps not only to log messages but also to the ones
displayed in the echo area."
:version "23.1" ;; No Gnus
:group 'gnus-various
:type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
(const :tag "Logged messages only" log)
(sexp :tag "All messages"
:match (lambda (widget value) value)
:value t)
(const :tag "No timestamp" nil)))