(elmo-msgdb-get-message-id-from-buffer): Use
authorteranisi <teranisi>
Thu, 9 Sep 2004 13:47:32 +0000 (13:47 +0000)
committerteranisi <teranisi>
Thu, 9 Sep 2004 13:47:32 +0000 (13:47 +0000)
unibyte string of the current buffer for the argument of `md5'
(Reported by Yoichi NAKAYAMA <yoichi@geiin.org>).

elmo/ChangeLog
elmo/elmo-util.el

index b632320..8e7434d 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-09  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * elmo-util.el (elmo-msgdb-get-message-id-from-buffer): Use
+       unibyte string of the current buffer for the argument of `md5'
+       (Reported by Yoichi NAKAYAMA <yoichi@geiin.org>).
+
 2004-09-05  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * modb-legacy.el (modb-legacy-flag-list): New constant.
index 38b07cf..0e51f1e 100644 (file)
@@ -2026,7 +2026,7 @@ If ALIST is nil, `elmo-obsolete-variable-alist' is used."
       (concat "<"
              (if (elmo-unfold-field-body "date")
                  (timezone-make-date-sortable (elmo-unfold-field-body "date"))
-                (md5 (current-buffer) (point-min) (point-max)))
+               (md5 (string-as-unibyte (buffer-string))))
              (nth 1 (eword-extract-address-components
                      (or (elmo-field-body "from") "nobody"))) ">"))))