Re: Gnus hangs when not used for 5 minutes
NNTP Surfer <[email protected]>
| Newsgroups | gmane.emacs.gnus.general |
|---|---|
| Message-ID | <[email protected]> |
Eric Abrahamsen <[email protected]> writes: > From your username I'm guessing that this is an nntp server. Try setting > `nntp-connection-timeout' to a lowish number of seconds, and see if that > fixes it? Yes, adding (nntp-connection-timeout 10) to every nntp server configuration solves this problem: #+begin_src emacs-lisp gnus-secondary-select-methods '( ;; (nntp "news.eternal-september.org" ;; ... ;; (nntp-connection-timeout 10)) (nntp "news.gwene.org" (nntp-connection-timeout 10)) #+end_src Thank you :)