Function: nnimap-map-port
nnimap-map-port is a byte-compiled function defined in nnimap.el.gz.
Signature
(nnimap-map-port PORT)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnimap.el.gz
;; This is only needed for Windows XP or earlier
(defun nnimap-map-port (port)
(declare-function x-server-version "xfns.c" (&optional terminal))
(if (and (eq system-type 'windows-nt)
(<= (car (x-server-version)) 5)
(equal port "imaps"))
"993"
port))