Variable: gnus-agent-synchronize-flags
gnus-agent-synchronize-flags is a customizable variable defined in
gnus-agent.el.gz.
Value
nil
Documentation
Indicate if flags are synchronized when you plug in.
If this is ask the hook will query the user.
This variable was added, or its default value changed, in Emacs 21.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(defcustom gnus-agent-synchronize-flags nil
"Indicate if flags are synchronized when you plug in.
If this is `ask' the hook will query the user."
;; If the default switches to something else than nil, then the function
;; should be fixed not be exceedingly slow. See 2005-09-20 ChangeLog entry.
:version "21.1"
:type '(choice (const :tag "Always" t)
(const :tag "Never" nil)
(const :tag "Ask" ask))
:group 'gnus-agent)