Variable: url-proxy-services

url-proxy-services is a customizable variable defined in url-vars.el.gz.

Value

nil

Documentation

An alist of schemes and proxy servers that gateway them.

Looks like (("http" . "hostname:portnumber") ...). This is set up from the ACCESS_proxy environment variables.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-vars.el.gz
(defcustom url-proxy-services nil
  "An alist of schemes and proxy servers that gateway them.
Looks like ((\"http\" . \"hostname:portnumber\") ...).  This is set up
from the ACCESS_proxy environment variables."
  :type '(repeat (cons :format "%v"
		       (string :tag "Protocol")
		       (string :tag "Proxy")))
  :group 'url)