On Tue, 29 Aug 2000, Ronan Waide wrote:

> Try running vm without BBDB, and do M-x vm-fix-my-summary!!! and then
> restart VM.

With XEmacs you should actually use the following, I guess:

;; Robert Fenk's version
;; fixes the "vm forgets the fixed summary again" problem.
(defun vm-fix-my-summary!!! ()
  (interactive)
  (vm-select-folder-buffer)
  (vm-check-for-killed-summary)
  (vm-error-if-folder-empty)
  (message "Fixing your summary...")
  (let ((mp vm-message-list))
    (while mp
      (vm-set-summary-of (car mp) nil)
      (vm-mark-for-summary-update (car mp))
      (vm-set-modflag-of (car mp) t) ;; this is missing
      (setq mp (cdr mp)))
    (vm-stuff-folder-attributes nil)
    (set-buffer-modified-p t)
    (vm-update-summary-and-mode-line))
  (message "Fixing your summary... done"))

Jochen
--
http://www.Jochen-Kuepper.de

   Einigkeit und Recht und Freiheit
         Libertè, Ègalitè, Fraternitè
             Sex, drugs and rock-n-roll


_______________________________________________
bbdb-info mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/mailman/listinfo/bbdb-info

Reply via email to