+2002-01-17 Kenichi OKADA <okada@opaopa.org>
+
+ * im-wl.el (wl-draft-send-with-imput-async): Use `wl-message-id-function'
+
2002-01-07 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* bbdb-wl.el (bbdb-wl-ignore-folder-regexp): New variable.
(when (and wl-insert-message-id
(not (re-search-forward "^Message-ID[ \t]*:" nil t)))
(insert (concat "Message-ID: "
- (wl-draft-make-message-id-string) "\n")))
+ (funcall wl-message-id-function) "\n")))
;; Insert date field.
(goto-char (point-min))
(or (re-search-forward "^Date[ \t]*:" nil t)
2002-01-17 Kenichi OKADA <okada@opaopa.org>
+ * wl-utils.el (wl-message-id-function): New variable.
+ * wl-draft.el (wl-draft-insert-required-fields):
+ Use `wl-message-id-function'.
+
+2002-01-17 Kenichi OKADA <okada@opaopa.org>
+
* wl-vars.el (wl-message-id-use-wl-from): New variable.
* wl-utils.el (wl-draft-make-message-id-string):
Use `wl-from' for domain part of Message-ID
wl-insert-message-id)
(not (re-search-forward "^Message-ID[ \t]*:" nil t)))
(insert (concat "Message-ID: "
- (wl-draft-make-message-id-string)
+ (funcall wl-message-id-function)
"\n")))
;; Insert date field.
(goto-char (point-min))
;; might otherwise generate the same ID via another algorithm.
wl-unique-id-suffix)))
+(defvar wl-message-id-function 'wl-draft-make-message-id-string)
(defun wl-draft-make-message-id-string ()
"Return Message-ID field value."
(concat "<" (wl-unique-id)