[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 0.129, sending mail
Jason L. Wright <jason@thought.net> writes:
> I'm using nnimap-0.129, pgnus-0.96, and emacs-20.3.1, and I've got a
> problem saving mail to one of my folders. Enclosed is all of the debugging
> information that seems pertanent, but I can generate more if needed. Any
> thoughts?
Thanks for the report, try this patch. 0.130 should hopefully be out
soon...
--- nnimap-0.129/imap.el Sat Aug 21 21:05:20 1999
+++ imap.el Mon Aug 30 18:03:14 1999
@@ -1143,7 +1143,8 @@
(prog1
(and (imap-fetch "*" "UID")
(list (imap-mailbox-get-1 'uidvalidity mailbox)
- (max (imap-message-map (lambda (uid prop) uid) 'UID))))
+ (apply 'max (imap-message-map
+ (lambda (uid prop) uid) 'UID))))
(if old-mailbox
(imap-mailbox-select old-mailbox (eq state 'examine))
(imap-mailbox-unselect)))))))
@@ -1183,7 +1184,8 @@
(prog1
(and (imap-fetch "*" "UID")
(list (imap-mailbox-get-1 'uidvalidity mailbox)
- (max (imap-message-map (lambda (uid prop) uid) 'UID))))
+ (apply 'max (imap-message-map
+ (lambda (uid prop) uid) 'UID))))
(if old-mailbox
(imap-mailbox-select old-mailbox (eq state 'examine))
(imap-mailbox-unselect)))))))