Variable: gnus-cloud-synced-files

gnus-cloud-synced-files is a customizable variable defined in gnus-cloud.el.gz.

Value

("~/.authinfo.gpg" "~/.gnus.el"
 (:directory "~/News" :match ".*.SCORE\\'"))

Documentation

List of files that should be kept up-to-date via the cloud.

Each element may be either a string or a property list. The latter should have a :directory element whose value is a string, and a :match element whose value is a regular expression to match against the basename of files in said directory.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-cloud.el.gz
(defcustom gnus-cloud-synced-files
  '(;;"~/.authinfo"
    "~/.authinfo.gpg"
    "~/.gnus.el"
    (:directory "~/News" :match ".*.SCORE\\'"))
  "List of files that should be kept up-to-date via the cloud.
Each element may be either a string or a property list.
The latter should have a :directory element whose value is a string,
and a :match element whose value is a regular expression to match
against the basename of files in said directory."
  :type '(repeat (choice (string :tag "File")
                         (plist :tag "Property list"))))