Variable: gnus-global-score-files

gnus-global-score-files is a customizable variable defined in gnus-score.el.gz.

Value

nil

Documentation

List of global score files and directories.

Set this variable if you want to use people's score files. One entry for each score file or each score file directory. Gnus will decide by itself what score files are applicable to which group.

Say you want to use the single score file
"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE" and all
score files in the "/ftp.some-where:/pub/score" directory.

 (setq gnus-global-score-files
       '("/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE"
"/ftp.some-where:/pub/score"))

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defcustom gnus-global-score-files nil
  "List of global score files and directories.
Set this variable if you want to use people's score files.  One entry
for each score file or each score file directory.  Gnus will decide
by itself what score files are applicable to which group.

Say you want to use the single score file
\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\" and all
score files in the \"/ftp.some-where:/pub/score\" directory.

 (setq gnus-global-score-files
       \\='(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\"
	 \"/ftp.some-where:/pub/score\"))"
  :group 'gnus-score-files
  :type '(repeat file))