* wl-draft.el (wl-draft-reply): Set only message-id string to In-Reply-To field.
+2000-10-04 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl.el (wl): Don't check servers if arg is non-nil.
+
+ * wl-draft.el (wl-draft-reply): Set only message-id string to
+ In-Reply-To field.
+
2000-10-03 Yuuichi Teranishi <teranisi@gohome.org>
* wl-summary.el (wl-summary-pick): Rewrite.
subject)
0)))
(setq subject (concat wl-reply-subject-prefix subject)))
- (and (setq in-reply-to (std11-field-body "Message-Id"))
- (setq in-reply-to
- (format "In your message of \"%s\"\n\t%s"
- (or (std11-field-body "Date") "some time ago")
- in-reply-to)))
+ (setq in-reply-to (std11-field-body "Message-Id"))
(setq references (nconc
(std11-field-bodies '("References" "In-Reply-To"))
(list in-reply-to)))
(wl-plugged-init (wl-folder arg))
(sit-for 0))
(unwind-protect
- (progn
+ (unless arg
(run-hooks 'wl-auto-check-folder-pre-hook)
(wl-folder-auto-check)
(run-hooks 'wl-auto-check-folder-hook))
- (wl-biff-start)
+ (unless arg (wl-biff-start))
(run-hooks 'wl-hook)))
;; Define some autoload functions WL might use.