+2012-02-20 Lars Ingebrigtsen <larsi@gnus.org>
+
+ * nnimap.el (nnimap-log-command): Add the IMAP address to the log
+ buffer. Suggested by Herbert Valerio Riedel.
+ (nnimap-request-move-article): Delete the message from the correct IMAP
+ server.
+
2012-02-19 Vida Gábor <vidagabor@gmail.com> (tiny change)
* gnus-demon.el (gnus-demon-init): Don't multiply time twice.
;; Move the article to a different method.
(let ((result (eval accept-form)))
(when result
+ (nnimap-possibly-change-group group server)
(nnimap-delete-article article)
result)))))))
(when nnimap-record-commands
(with-current-buffer (get-buffer-create "*imap log*")
(goto-char (point-max))
- (insert (format-time-string "%H:%M:%S") " "
+ (insert (format-time-string "%H:%M:%S")
+ " [" nnimap-address "] "
(if nnimap-inhibit-logging
"(inhibited)\n"
command))))