* mu4e.texi: add another refiling example

This commit is contained in:
djcb 2013-01-03 23:08:57 +02:00
parent 90929f9db8
commit 459f87d887
1 changed files with 6 additions and 0 deletions

View File

@ -1911,6 +1911,12 @@ message. An example should clarify this:
((string-match "football\\|soccer"
(mu4e-message-field msg :subject))
"/football")
;; messages sent by me go to the sent folder
((find-if
(lambda (addr)
(mu4e-message-contact-field-matches msg :from addr))
mu4e-user-mail-address-list)
mu4e-sent-folder)
;; everything else goes to /archive
;; important to have a catch-all at the end!
(t "/archive"))))