Variable: imap-kerberos4-program

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

Value

("imtest -m kerberos_v4 -u %l -p %p %s" "imtest -kp %s %p")

Documentation

List of strings containing commands for Kerberos 4 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-kerberos4-program '("imtest -m kerberos_v4 -u %l -p %p %s"
				    "imtest -kp %s %p")
  "List of strings containing commands for Kerberos 4 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))