Variable: nnimap-shell-program
nnimap-shell-program is a variable defined in nnimap.el.gz.
Value
"ssh %s imapd"
Documentation
What command to execute to connect to an IMAP server.
This will only be used if the connection type is shell. See
the open-network-stream documentation for an explanation of
the format.
This is a Gnus server variable. See Info node (gnus)Select Methods.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnimap.el.gz
(defvoo nnimap-shell-program (if (boundp 'imap-shell-program)
(if (listp imap-shell-program)
(car imap-shell-program)
imap-shell-program)
"ssh %s imapd")
"What command to execute to connect to an IMAP server.
This will only be used if the connection type is `shell'. See
the `open-network-stream' documentation for an explanation of
the format.")