+2001-01-12 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * elmo-imap4.el (elmo-imap4-read-msg): Use "BODY[]" instead of
+ "RFC822" (because RFC822.PEEK is obsolete).
+ (Adviced by IMAI Takeshi <imai@on.rim.or.jp>)
+
+2001-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * elmo-archive.el (elmo-archive-call-process): Don't check for
+ the exit status when Nemacs is running.
+
2001-01-09 Yuuichi Teranishi <teranisi@gohome.org>
* elmo-net.el (elmo-network-session-password-key): Don't set default to
(` (cdr (assq (, type)
elmo-archive-file-regexp-alist))))
-(defsubst elmo-archive-call-process (prog args &optional output)
- (= (apply 'call-process prog nil output nil args) 0))
+(if (boundp 'NEMACS)
+ (defsubst elmo-archive-call-process (prog args &optional output)
+ (apply 'call-process prog nil output nil args)
+ 0)
+ (defsubst elmo-archive-call-process (prog args &optional output)
+ (= (apply 'call-process prog nil output nil args) 0)))
(defsubst elmo-archive-call-method (method args &optional output)
(cond
(elmo-imap4-send-command-wait session
(format
(if elmo-imap4-use-uid
- "uid fetch %s rfc822%s"
- "fetch %s rfc822%s")
+ "uid fetch %s body%s[]"
+ "fetch %s body%s[]")
msg
(if leave-seen-flag-untouched
".peek" ""))))
- (and (setq response (elmo-imap4-response-value
+ (and (setq response (elmo-imap4-response-bodydetail-text
(elmo-imap4-response-value-all
- response 'fetch )
- 'rfc822))
+ response 'fetch )))
(with-current-buffer outbuf
(erase-buffer)
(insert response)
+2001-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * wl-nemacs.el (elmo-archive-call-process): Moved to
+ elmo-archive.el.
+
2001-01-02 TAKAHASHI Kaoru <kaoru@kaisei.org>
* wl-draft.el (wl-draft-reply-list-symbol): New function.
(defmacro wl-defface (face spec doc &rest args)
(` (defvar (, face) (, spec) (, doc))))
-(defsubst elmo-archive-call-process (prog args &optional output)
- (apply 'call-process prog nil output nil args)
- 0)
-
(defun wl-draft-mode-setup ()
(defalias 'wl-draft-mode 'mail-mode))
(defun wl-draft-key-setup ())