all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* After attempting Excape x rmail-summary-by-regexp what does it mean when you get... You must set `rmail-search-mime-header-function'
@ 2014-02-06  4:19 Don Saklad
  0 siblings, 0 replies; only message in thread
From: Don Saklad @ 2014-02-06  4:19 UTC (permalink / raw
  To: help-gnu-emacs, dsaklad

          After attempting Escape Control-s what does it mean when you get...
          You must set `rmail-search-mime-header-function'
     
     That you are running a too old Emacs version (23.x, right?).  Time to
     upgrade, this problem is fixed in Emacs 24.
     Alternatively, change this fragment from rmailsum.el:
       (if rmail-enable-mime
           (if rmail-search-mime-header-function
               (funcall rmail-search-mime-header-function msg regexp (point))
             (error "You must set `rmail-search-mime-header-function'"))
         (re-search-forward regexp nil t)))
     to say this instead:
       (if (and rmail-enable-mime
                rmail-search-mime-header-function)
           (funcall rmail-search-mime-header-function msg regexp (point))
         (re-search-forward regexp nil t)))
     and then recompile rmailsum.el and reload rmailsum.elc.


Trying to do that isn't a familiar thing for neophytes, or even for intermediate types!... a?) Any easier, simpler way to handle it when you get
You must set `rmail-search-mime-header-function'

b?) After attempting Escape x rmail-summary-by-regexp what does it mean when you get...
You must set `rmail-search-mime-header-function'



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-06  4:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-06  4:19 After attempting Excape x rmail-summary-by-regexp what does it mean when you get... You must set `rmail-search-mime-header-function' Don Saklad

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.