unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH v2] Allow content preference based on message content.
@ 2016-01-29 17:27 David Edmondson
  2016-01-29 17:27 ` [PATCH v2] emacs: Allow part preferences to depend " David Edmondson
  0 siblings, 1 reply; 4+ messages in thread
From: David Edmondson @ 2016-01-29 17:27 UTC (permalink / raw)
  To: notmuch


Allow content preference based on message content.

An example configuration might be:

  (defun dme:determine-discouraged (msg)
    (let* ((headers (plist-get msg :headers))
	   (from (plist-get headers :From)))
      (cond
       ((string-match "9195404@capita-intouch.co.uk" from)
	'("text/plain"))
       (t
	'("text/html" "multipart/related")))))

   (setq notmuch-multipart/alternative-discouraged
   	 'dme:determine-discouraged)

This would discourage text/html and multipart/related generally, but
discourage text/plain should the message be sent from
9195404@capita-intouch.co.uk.

v2:
- Remove the simple evaluation variant based on feedback.


David Edmondson (1):
  emacs: Allow part preferences to depend on message content.

 emacs/notmuch-lib.el  | 20 ++++++++++++++++----
 emacs/notmuch-mua.el  |  2 +-
 emacs/notmuch-show.el |  2 +-
 3 files changed, 18 insertions(+), 6 deletions(-)

-- 
2.6.3

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-04-03 16:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-29 17:27 [PATCH v2] Allow content preference based on message content David Edmondson
2016-01-29 17:27 ` [PATCH v2] emacs: Allow part preferences to depend " David Edmondson
2016-03-24 11:05   ` David Bremner
2016-04-03 16:05     ` David Edmondson

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).