Variable: org-feed-retrieve-method

org-feed-retrieve-method is a customizable variable defined in org-feed.el.gz.

Value

url-retrieve-synchronously

Documentation

The method to be used to retrieve a feed URL.

This can be curl or wget to call these external programs, or it can be an Emacs Lisp function that will return a buffer containing the content of the file pointed to by the URL.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-feed.el.gz
(defcustom org-feed-retrieve-method 'url-retrieve-synchronously
  "The method to be used to retrieve a feed URL.
This can be `curl' or `wget' to call these external programs, or it can be
an Emacs Lisp function that will return a buffer containing the content
of the file pointed to by the URL."
  :group 'org-feed
  :type '(choice
	  (const :tag "Internally with url.el" url-retrieve-synchronously)
	  (const :tag "Externally with curl" curl)
	  (const :tag "Externally with wget" wget)
	  (function :tag "Function")))