Variable: erc-lurker-threshold-time

erc-lurker-threshold-time is a customizable variable defined in erc.el.gz.

Value

86400

Documentation

Nicks from which no PRIVMSGs have been received within this interval (in units of seconds) are considered lurkers by erc-lurker-p and as a result their messages of types in erc-lurker-hide-list will be hidden.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-lurker-threshold-time (* 60 60 24) ; 24h by default
  "Nicks from which no PRIVMSGs have been received within this
interval (in units of seconds) are considered lurkers by
`erc-lurker-p' and as a result their messages of types in
`erc-lurker-hide-list' will be hidden."
  :group 'erc-lurker
  :type 'integer)