Variable: imap-gssapi-program

imap-gssapi-program is a customizable variable defined in imap.el.gz.

Value

("gsasl %s %p --mechanism GSSAPI --authentication-id %l"
 "imtest -m gssapi -u %l -p %p %s")

Documentation

List of strings containing commands for GSSAPI (krb5) authentication.

%s is replaced with server hostname, %p with port to connect to, and
%l with the value of imap-default-user. The program should accept
IMAP commands on stdin and return responses to stdout. Each entry in the list is tried until a successful connection is made.

Source Code

;; Defined in /usr/src/emacs/lisp/net/imap.el.gz
(defcustom imap-gssapi-program (list
				(concat "gsasl %s %p "
					"--mechanism GSSAPI "
					"--authentication-id %l")
				"imtest -m gssapi -u %l -p %p %s")
  "List of strings containing commands for GSSAPI (krb5) authentication.
%s is replaced with server hostname, %p with port to connect to, and
%l with the value of `imap-default-user'.  The program should accept
IMAP commands on stdin and return responses to stdout.  Each entry in
the list is tried until a successful connection is made."
  :type '(repeat string))