Variable: nnimap-keepalive-intervals
nnimap-keepalive-intervals is a variable defined in nnimap.el.gz.
Value
(900 . 300)
Documentation
Configuration for the nnimap keepalive timer.
The value is a cons of two integers (each representing a number of seconds): the first is how often to run the keepalive function, the second is the seconds of inactivity required to send the actual keepalive command.
Set to nil to disable keepalive commands altogether.
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-keepalive-intervals (cons (* 60 15)
(* 60 5))
"Configuration for the nnimap keepalive timer.
The value is a cons of two integers (each representing a number
of seconds): the first is how often to run the keepalive
function, the second is the seconds of inactivity required to
send the actual keepalive command.
Set to nil to disable keepalive commands altogether.")