info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

running one gnus in offline and periodically fetch mail with agent


From: Alexander Kotelnikov
Subject: running one gnus in offline and periodically fetch mail with agent
Date: Thu, 02 Apr 2009 15:01:15 -0700
User-agent: Gnus/5.110009 (No Gnus v0.9) Emacs/22.3 (darwin)

Yet another question.

Does anyone use such practice, is there any problems (say, can you
really run two gnuses concurrently?). Once upon a time I used

(defun gnus-agent-batch-cycle()
  "Periodically retrieve/send mail and news"
  (let ((i 0)
        (delay 90)
        )
    (while t
      (setq i (+ i 1))
      (gnus-agent-batch)
      (if (= i 1) (gnus-demon-cancel))
      (message 
       "gnus-agent-batch-cycle (%d) sleeping for %d seconds at %s" 
       i delay (current-time-string))
      (sleep-for delay)
      )
    )
  )

and I remember, I had certain problem.

A





reply via email to

[Prev in Thread] Current Thread [Next in Thread]