Variable: ffap-machine-p-unknown

ffap-machine-p-unknown is a customizable variable defined in ffap.el.gz.

Value

reject

Documentation

What ffap-machine-p does with hostnames that have an unknown domain.

Value should be a symbol, one of ping, accept, and reject. See mail-extr.el for the known domains.

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-machine-p-unknown 'reject
  "What `ffap-machine-p' does with hostnames that have an unknown domain.
Value should be a symbol, one of `ping', `accept', and `reject'.
See `mail-extr.el' for the known domains."
  :type '(choice (const ping)
		 (const accept)
		 (const reject))
  :safe #'ffap-accept-or-reject-p
  :group 'ffap)