Variable: newsticker-retrieval-interval

newsticker-retrieval-interval is a customizable variable defined in newst-backend.el.gz.

Value

3600

Documentation

Time interval for retrieving new news items (seconds).

If this value is not positive (i.e. less than or equal to 0) items are retrieved only once! Please note that some feeds, e.g. Slashdot, will ban you if you make it less than 1800 seconds (30 minutes)!

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defcustom newsticker-retrieval-interval
  3600
  "Time interval for retrieving new news items (seconds).
If this value is not positive (i.e. less than or equal to 0)
items are retrieved only once!
Please note that some feeds, e.g. Slashdot, will ban you if you
make it less than 1800 seconds (30 minutes)!"
  :type '(choice :tag "Interval"
                 (const   :tag "No automatic retrieval" 0)
                 (const   :tag "Hourly" 3600)
                 (const   :tag "Daily" 86400)
                 (const   :tag "Weekly" 604800)
                 (integer :tag "Interval"))
  :set #'newsticker--set-customvar-retrieval
  :group 'newsticker-retrieval)