2010-09-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
+ * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
+ culprit is more visible.
+
+ * mail-source.el (mail-source-delete-crash-box): Really only check the
+ incoming files once in a while.
+
* pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
* mail-source.el (mail-source-delete-crash-box): Only check the
(> (time-to-seconds
(time-since mail-source-incoming-last-checked-time))
(* 24 60 60)))
- (setq mail-source-incoming-last-checked-time (current-time)))
- (let ((incoming
- (mm-make-temp-file
- (expand-file-name
- mail-source-incoming-file-prefix
- mail-source-directory))))
- (unless (file-exists-p (file-name-directory incoming))
- (make-directory (file-name-directory incoming) t))
- (rename-file mail-source-crash-box incoming t)
- ;; remove old incoming files?
- (when (natnump mail-source-delete-incoming)
- (mail-source-delete-old-incoming
- mail-source-delete-incoming
- mail-source-delete-old-incoming-confirm))))))
+ (setq mail-source-incoming-last-checked-time (current-time))
+ (let ((incoming
+ (mm-make-temp-file
+ (expand-file-name
+ mail-source-incoming-file-prefix
+ mail-source-directory))))
+ (unless (file-exists-p (file-name-directory incoming))
+ (make-directory (file-name-directory incoming) t))
+ (rename-file mail-source-crash-box incoming t)
+ ;; remove old incoming files?
+ (when (natnump mail-source-delete-incoming)
+ (mail-source-delete-old-incoming
+ mail-source-delete-incoming
+ mail-source-delete-old-incoming-confirm)))))))
(defun mail-source-movemail (from to)
"Move FROM to TO using movemail."
buffer)))
(defun nnml-save-nov ()
+ (message "nnml saving nov...")
(save-excursion
(while nnml-nov-buffer-alist
(when (buffer-name (cdar nnml-nov-buffer-alist))
nnml-nov-buffer-file-name nil 'nomesg))
(set-buffer-modified-p nil)
(kill-buffer (current-buffer)))
- (setq nnml-nov-buffer-alist (cdr nnml-nov-buffer-alist)))))
+ (setq nnml-nov-buffer-alist (cdr nnml-nov-buffer-alist))))
+ (message "nnml saving nov...done"))
;;;###autoload
(defun nnml-generate-nov-databases (&optional server)
(defun pop3-send-streaming-command (process command count total-size)
(erase-buffer)
(let ((i 1))
- (while (>= (1+ count) i)
+ (while (>= count i)
(process-send-string process (format "%s %d\r\n" command i))
;; Only do 100 messages at a time to avoid pipe stalls.
(when (zerop (% i 100))
;; delete it.
(when (eolp)
(delete-char 1))
- (write-region (point-min) (point-max) file)))))
+ (write-region (point-min) (point-max) file nil 'nomesg)))))
(defun pop3-number-of-responses (endp)
(let ((responses 0))