mu/mu4e/mu4e.texi

4066 lines
152 KiB
Plaintext
Raw Normal View History

@documentencoding UTF-8
\input texinfo.tex @c -*-texinfo-*-
@include texi.texi
@c %**start of header
@setfilename mu4e.info
2013-04-17 20:04:42 +02:00
@settitle mu4e @value{mu-version} user manual
2012-09-30 19:12:07 +02:00
@c Use proper quote and backtick for code sections in PDF output
@c Cf. Texinfo manual 14.2
@set txicodequoteundirected
@set txicodequotebacktick
@c %**end of header
2012-10-20 11:51:19 +02:00
@copying
2015-07-05 12:04:57 +02:00
Copyright @copyright{} 2012-2015 Dirk-Jan C. Binnema
@quotation
Permission is granted to copy, distribute and/or modify this document
2012-01-01 21:48:11 +01:00
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
2012-01-01 21:48:11 +01:00
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
copy of the license is included in the section entitled ``GNU Free
Documentation License.''
@end quotation
@end copying
2012-09-28 16:12:09 +02:00
@titlepage
2013-03-17 18:43:12 +01:00
@title @t{mu4e} - an e-mail client for Emacs
@subtitle version @value{mu-version}
2012-09-30 19:12:07 +02:00
@author Dirk-Jan C. Binnema
2012-09-28 16:12:09 +02:00
2012-09-30 19:12:07 +02:00
@c The following two commands start the copyright page.
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
2012-09-28 16:12:09 +02:00
@dircategory Emacs
@direntry
2013-03-17 18:43:12 +01:00
* mu4e: (mu4e). An email client for Emacs.
2012-09-28 16:12:09 +02:00
@end direntry
@contents
2012-09-30 19:12:07 +02:00
@ifnottex
@node Top
2012-09-30 19:12:07 +02:00
@top mu4e manual
@end ifnottex
@iftex
@node Welcome to mu4e
@unnumbered Welcome to mu4e
@end iftex
2013-04-17 20:04:42 +02:00
Welcome to @t{mu4e} @value{mu-version}!
2011-12-29 00:26:43 +01:00
2014-05-25 03:15:43 +02:00
@t{mu4e} (@t{mu}-for-emacs) is an e-mail client for GNU-Emacs version 24
(version 23 may works as well, but is not tested as much), built on top
of the @t{mu}@footnote{@url{http://www.djcbsoftware.nl/code/mu}} e-mail
2014-05-25 03:15:43 +02:00
search engine. @t{mu4e} is optimized for fast handling of large amounts
of e-mail.
2011-12-19 08:07:03 +01:00
2013-05-25 18:26:54 +02:00
Some of @t{mu4e}'s highlights:
2012-06-26 21:47:25 +02:00
@itemize
2012-10-11 16:50:32 +02:00
@item Fully search-based: there are no folders@footnote{that is, instead of
2013-07-06 09:47:15 +02:00
folders, you use queries that match messages in a particular folder}, only
queries.
2012-06-26 21:47:25 +02:00
@item Fully documented, with example configurations
2012-10-11 16:50:32 +02:00
@item User-interface optimized for speed, with quick key strokes for common actions
@item Support for non-English languages (so ``angstrom'' will match ``Angström'')
2013-07-06 09:47:15 +02:00
@item Asynchronous: heavy actions don't block @command{emacs}@footnote{currently,
2013-03-17 18:43:12 +01:00
the only exception to this is @emph{sending mail}; there are solutions for
that though - see the @ref{FAQ}}
2012-09-28 16:12:09 +02:00
@item Support for crypto
2013-03-17 18:43:12 +01:00
@item Address auto-completion based on the contacts in your messages
@item Extendable with your own snippets of elisp
2012-06-26 21:47:25 +02:00
@end itemize
2012-10-14 16:00:25 +02:00
In this manual, we go through the installation of @t{mu4e}, do some basic
2012-10-11 16:50:32 +02:00
configuration and explain its daily use. We also show you how you can
2012-10-03 11:53:24 +02:00
customize @t{mu4e} for your needs.
2013-03-17 18:43:12 +01:00
At the end of the manual, there are some example configurations, to get you up
to speed quickly: @ref{Example configurations}. There's also an @ref{FAQ},
which should help you with some common questions.
@menu
2012-06-26 21:47:25 +02:00
* Introduction:: How it all began
2012-06-20 10:29:57 +02:00
* Getting started:: Setting things up
* Main view:: Where we go when starting @t{mu4e}
* Headers view:: Lists of message headers
* Message view:: Viewing specific messages
* Editor view:: Creating / editing messages
2012-06-26 21:47:25 +02:00
* Searching:: Some more background on searching/queries
* Marking:: Marking messages and performing actions
* Dynamic folders:: Folders that depend on the context
2012-06-12 09:21:44 +02:00
* Actions:: Defining and using custom actions
2012-10-11 16:50:32 +02:00
* Extending mu4e:: Writing code for @t{mu4e}
2012-01-01 21:48:11 +01:00
Appendices
2012-10-03 20:54:34 +02:00
* Interaction with other tools:: mu4e and the rest of the world
* Example configurations:: Some examples to set you up quickly
2012-10-14 16:00:25 +02:00
* FAQ:: Common questions and answers
* Tips and Tricks:: Useful tips
* How it works:: Some notes about the implementation of @t{mu4e}
* Logging and debugging:: How to debug problems in @t{mu4e}
* GNU Free Documentation License:: The license of this manual
@end menu
@node Introduction
@chapter Introduction
2011-12-19 08:07:03 +01:00
@menu
2012-09-29 12:30:49 +02:00
* Why another e-mail client::
* Other mail clients::
2012-06-26 21:47:25 +02:00
* What mu4e does not do::
2012-10-14 16:00:25 +02:00
* Becoming a mu4e user::
2011-12-19 08:07:03 +01:00
@end menu
2012-09-29 12:30:49 +02:00
@node Why another e-mail client
2011-12-22 23:39:32 +01:00
@section Why another e-mail client?
2012-06-26 21:47:25 +02:00
Fair question.
I'm not sure the world needs yet another e-mail client, but perhaps
@emph{I} do!
I (the author) spend a @emph{lot} of time dealing with e-mail, both
professionally and privately. Having an efficient e-mail client is
essential. Since none of the existing ones worked the way I wanted, I
created my own. @command{emacs} is an integral part of my workflow, so
it made a lot of sense to use it for e-mail as well. And as I already
had written an e-mail search engine (@t{mu}), it seemed only logical to
use that as a basis.
@node Other mail clients
@section Other mail clients
2012-06-12 09:21:44 +02:00
Under the hood, @t{mu4e} is fully search-based, similar to programs like
@t{notmuch}@footnote{@url{http://notmuchmail.org}},
@t{md}@footnote{@url{https://github.com/nicferrier/md} (inactive)} and
@t{sup}@footnote{@url{http://sup.rubyforge.org/}
(unreachable)}. However, @t{mu4e}'s user-interface is quite
different. @t{mu4e}'s mail handling (deleting, moving etc.) is inspired
by @emph{Wanderlust}@footnote{@url{http://www.gohome.org/wl/}} (another
2012-10-14 16:00:25 +02:00
@code{emacs}-based e-mail client),
@t{mutt}@footnote{@url{http://www.mutt.org/}} and @t{dired}.
2011-12-23 15:48:29 +01:00
2012-04-24 21:37:50 +02:00
@t{mu4e} tries to keep all the 'state' in your maildirs, so you can easily
2012-06-26 21:47:25 +02:00
switch between clients, synchronize over @abbr{IMAP}, backup with @t{rsync}
and so on. If you delete the database, you won't lose any information.
2012-06-26 21:47:25 +02:00
@node What mu4e does not do
2012-10-14 16:00:25 +02:00
@section What @t{mu4e} does not do
2011-12-22 23:39:32 +01:00
2012-10-14 16:00:25 +02:00
There are a number of things that @t{mu4e} does @emph{not} do:
@itemize
2013-05-25 18:26:54 +02:00
@item @t{mu}/@t{mu4e} do @emph{not} get your e-mail messages from
2012-04-30 16:48:07 +02:00
a mail server. That task is delegated to other tools, such as
@t{offlineimap}@footnote{@url{http://offlineimap.org/}},
@t{isync/mbsync}@footnote{@url{http://isync.sourceforge.net/}} or
@t{fetchmail}@footnote{@url{http://www.fetchmail.info/}}. As long as the
messages end up in a maildir, @t{mu4e} and @t{mu} are happy to deal with
them.
2012-10-14 16:00:25 +02:00
@item @t{mu4e} also does @emph{not} implement sending of messages; instead, it
2012-10-11 16:50:32 +02:00
depends on @t{smptmail} (@inforef{Top,,smtpmail}), which is part of
2012-10-14 16:00:25 +02:00
@command{emacs}. In addition, @t{mu4e} piggybacks on Gnus' message editor;
2012-10-11 16:50:32 +02:00
@inforef{Top,,message}.
2012-10-14 16:00:25 +02:00
@end itemize
Thus, many of the things an e-mail client traditionally needs to do, are
2012-04-30 16:48:07 +02:00
delegated to other tools. This leaves @t{mu4e} to concentrate on what it does
best: quickly finding the mails you are looking for, and handle them as
2012-04-24 21:37:50 +02:00
efficiently as possible.
2012-10-14 16:00:25 +02:00
@node Becoming a mu4e user
@section Becoming a @t{mu4e} user
If @t{mu4e} looks like something for you, give it a shot! We've been
trying hard to make it as easy as possible to set up and use; and while
you can use elisp in various places to augment @t{mu4e}, a lot of
knowledge about programming or elisp shouldn't be required. The idea is
to provide sensible defaults, and allow for customization.
2012-10-14 16:00:25 +02:00
When you take @t{mu4e} into use, it's a good idea to subscribe to the
@t{mu}/@t{mu4e}-mailing
2013-03-17 18:43:12 +01:00
list@footnote{@url{http://groups.google.com/group/mu-discuss}}.
If you have suggestions for improvements or bug reports, please use the
GitHub issues list@footnote{@url{https://github.com/djcb/mu/issues}}. In
bug reports, please clearly specify the versions of @t{mu}/@t{mu4e} and
@command{emacs} you are using, as well as any other relevant
details. Also, if it is about the behavior for specific messages, please
attach the raw message (that is, the message file as it exists in your
maildir); you can of course strip off any personal information.
2013-05-25 18:26:54 +02:00
If you are new to all this, the somewhat paternalistic @emph{``How to ask
questions the smart
way''}@footnote{@url{http://www.catb.org/esr/faqs/smart-questions.html}} may
2013-03-17 18:43:12 +01:00
be a good read.
2012-10-14 16:00:25 +02:00
2011-12-17 10:33:50 +01:00
@node Getting started
@chapter Getting started
In this chapter, we go through the installation of @t{mu4e} and its
basic setup. After we have succeeded in @ref{Getting mail}, and
@pxref{Indexing your messages}, we discuss @ref{Basic configuration}.
2012-03-26 20:19:11 +02:00
2012-10-01 15:42:37 +02:00
After these steps, @t{mu4e} should be ready to go!
2011-12-19 08:07:03 +01:00
@menu
2012-10-14 16:00:25 +02:00
* Requirements:: What is needed
* Installation:: How to install @t{mu} and @t{mu4e}
* Getting mail:: Getting mail from a server
* Indexing your messages:: Creating and maintaining the index
* Basic configuration:: Settings for @t{mu4e}
* Folders:: Setting up standard folders
2012-10-01 15:42:37 +02:00
* Retrieval and indexing:: Doing it from mu4e
* Sending mail:: How to send mail
2012-09-28 16:12:09 +02:00
* Running mu4e:: Overview of the @t{mu4e} views
2012-04-24 21:37:50 +02:00
2011-12-19 08:07:03 +01:00
@end menu
2012-10-14 16:00:25 +02:00
@node Requirements
@section Requirements
@t{mu}/@t{mu4e} are known to work on a wide variety of Unix- and Unix-like
systems, including many Linux distributions, MacOS and
2013-05-25 18:26:54 +02:00
FreeBSD. @command{emacs} 23 or 24 (recommended) is required, as well as
2012-10-14 16:00:25 +02:00
Xapian@footnote{@url{http://xapian.org/}} and
2013-03-17 18:43:12 +01:00
GMime@footnote{@url{http://spruce.sourceforge.net/gmime/}}.
2013-05-25 18:26:54 +02:00
@t{mu} has optional support for the Guile 2.x (Scheme) programming
language. There are also some GUI-tools, which require GTK+ 3.x and
Webkit.
2013-03-17 18:43:12 +01:00
2013-05-25 18:26:54 +02:00
If you intend to compile @t{mu} yourself, you need to have the typical
development tools, such as C and C++ compilers (both @command{gcc} and
@command{clang} should work), GNU Autotools and @command{make}, and the
development packages for GMime, GLib and Xapian. Optionally (if you use them),
you also need the development packages for GTK+, Webkit and Guile.
2012-10-14 16:00:25 +02:00
2011-12-19 08:07:03 +01:00
@node Installation
@section Installation
2011-12-17 10:33:50 +01:00
2012-09-30 19:12:07 +02:00
@t{mu4e} is part of @t{mu} - by installing the latter, the former is installed
2012-10-01 15:42:37 +02:00
as well. Some Linux distributions provide packaged versions of
@t{mu}/@t{mu4e}; if you can use those, there is no need to compile anything
2012-10-14 16:00:25 +02:00
yourself. However, if there are no packages for your distribution, if they are
outdated, or if you want to use the latest development versions, you can
follow the steps below.
2012-10-11 16:50:32 +02:00
First, you need make sure you have the necessary dependencies; the details
depend on your distribution. If you're using another distribution (or another
OS), the below at least be helpful in identifying the packages to install.
2012-10-14 16:00:25 +02:00
We provide some instructions for Debian, Ubuntu and Fedora; if those do not
apply to you, you can follow either @ref{Building from a release tarball} or
@ref{Building from git}.
2012-10-14 16:00:25 +02:00
2012-10-11 16:50:32 +02:00
@subsection Dependencies for Debian/Ubuntu
@example
2012-10-01 20:18:59 +02:00
$ sudo apt-get install libgmime-2.6-dev libxapian-dev
2012-10-01 15:42:37 +02:00
# if libgmime-2.6-dev is not available, try libgmime-2.4-dev
2012-10-11 16:50:32 +02:00
# get emacs 23 or 24 if you don't have it yet
2013-05-25 18:26:54 +02:00
$ sudo apt-get install emacs24
2012-10-01 15:42:37 +02:00
# optional
2012-10-01 20:18:59 +02:00
$ sudo apt-get install guile-2.0-dev html2text xdg-utils
2012-10-01 15:42:37 +02:00
# optional: only needed for msg2pdf and mug (toy gtk+ frontend)
2012-10-01 20:18:59 +02:00
$ sudo apt-get install libwebkit-dev
@end example
2012-10-11 16:50:32 +02:00
@subsection Dependencies for Fedora
@example
$ sudo yum install gmime-devel xapian-core-devel
# get emacs 23 or 24 if you don't have it yet
$ sudo yum install emacs
# optional
$ sudo yum install html2text xdg-utils
# optional: only needed for msg2pdf and mug (toy gtk+ frontend)
$ sudo yum install webkitgtk3-devel
2012-10-11 16:50:32 +02:00
@end example
2012-10-14 16:00:25 +02:00
@subsection Building from a release tarball
@anchor{Building from a release tarball}
2012-10-11 16:50:32 +02:00
2012-09-29 13:24:58 +02:00
Using a release-tarball (as available from
GoogleCode@footnote{@url{http://code.google.com/p/mu0/downloads/list}},
2013-05-25 18:26:54 +02:00
installation follows the typical steps:
2012-04-30 16:48:07 +02:00
@example
2011-12-17 10:33:50 +01:00
$ tar xvfz mu-<version>.tar.gz # use the specific version
2011-12-19 08:07:03 +01:00
$ cd mu-<version>
2012-10-14 20:42:51 +02:00
# On the BSDs: use gmake instead of make
$ ./configure && make
$ sudo make install
@end example
2012-10-14 16:00:25 +02:00
Xapian, GMime and their dependencies must be installed.
2012-10-11 16:50:32 +02:00
@subsection Building from git
2012-10-14 16:00:25 +02:00
@anchor{Building from git}
2012-10-11 16:50:32 +02:00
2012-10-01 15:42:37 +02:00
Alternatively, if you build from the git repository or use a tarball like the
2012-10-01 20:18:59 +02:00
ones that @t{github} produces, the instructions are slightly different, and
2013-11-19 06:44:18 +01:00
require you to have @t{autotools} (Autoconf, Automake, Libtool, and friends)
installed:
@example
2012-10-01 20:18:59 +02:00
# get from git (alternatively, use a github tarball)
2012-10-03 11:53:24 +02:00
$ git clone git://github.com/djcb/mu.git
2012-10-01 15:42:37 +02:00
2012-10-01 20:18:59 +02:00
$ cd mu
$ autoreconf -i && ./configure && make
2012-10-14 20:42:51 +02:00
# On the BSDs: use gmake instead of make
$ sudo make install
@end example
2012-10-14 16:00:25 +02:00
(Xapian, GMime and their dependencies must be installed).
After this, @t{mu} and @t{mu4e} should be installed @footnote{there's a hard
dependency between versions of @t{mu4e} and @t{mu} - you cannot combine
different versions} on your system, and be available from the command line
2012-10-14 16:00:25 +02:00
in @command{emacs}.
2012-04-24 21:37:50 +02:00
2012-10-14 16:00:25 +02:00
You may need to restart @command{emacs}, so it can find @t{mu4e} in its
2012-10-14 20:42:51 +02:00
@code{load-path}. If, even after restarting, @command{emacs} cannot find
2013-08-24 10:17:00 +02:00
@t{mu4e}, you may need to add it to your @code{load-path} explicitly; check
where @t{mu4e} is installed, and add something like the following to your
2012-10-14 20:42:51 +02:00
configuration before trying again:
@lisp
;; the exact path may differ -- check it
(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu4e")
@end lisp
2011-12-17 10:33:50 +01:00
@subsection mu4e and emacs customization
2012-10-14 16:00:25 +02:00
There is some support for using the @command{emacs} customization system in
2012-10-01 20:18:59 +02:00
@t{mu4e}, but for now, we recommend setting the values manually. Please refer
2012-10-03 20:54:34 +02:00
to @ref{Example configurations} for a couple of examples of this; here we go
2012-10-01 20:18:59 +02:00
through things step-by-step.
2011-12-19 08:07:03 +01:00
@node Getting mail
@section Getting mail
2011-12-17 10:33:50 +01:00
2012-06-12 09:21:44 +02:00
In order for @t{mu} (and, by extension, @t{mu4e}) to work, you need to have
2012-10-01 20:18:59 +02:00
your e-mail messages stored in a
2012-10-14 16:00:25 +02:00
@emph{maildir}@footnote{@url{http://en.wikipedia.org/wiki/Maildir}; in this
manual we use the term 'maildir' for both the standard and the hierarchy of
maildirs that store your messages} - a specific directory structure with
one-file-per-message. If you are already using a maildir, you are lucky. If
not, some setup is required:
2012-10-01 15:42:37 +02:00
2012-10-11 16:50:32 +02:00
@itemize
2012-10-16 20:43:49 +02:00
@item @emph{Using an external IMAP or POP server} - if you are using an
@abbr{IMAP} or @abbr{POP} server, you can use tools like @t{getmail},
@t{fetchmail}, @t{offlineimap} or @t{isync} to download your messages into a
maildir (@file{~/Maildir}, often). Because it is such a common case, there is
a full example of setting @t{mu4e} up with @t{offlineimap} and Gmail;
@pxref{Gmail configuration}.
@item @emph{Using a local mail server} - if you are using a local mail-server
2012-10-16 20:43:49 +02:00
(such as @t{postfix} or @t{qmail}), you can teach them to deliver into a
maildir as well, maybe in combination with @t{procmail}. A bit of googling
should be able to provide you with the details.
2012-10-11 16:50:32 +02:00
@end itemize
2011-12-17 10:33:50 +01:00
2011-12-19 08:07:03 +01:00
@node Indexing your messages
@section Indexing your messages
After you have succeeded in @ref{Getting mail}, we need to @emph{index} the
2013-08-24 10:17:00 +02:00
messages. That is - we need to scan the messages in the maildir and store the
information about them in a special database. We can do that from @t{mu4e} --
@ref{Main view}, but the first time, it is a good idea to run it from the
command line, which makes it easier to verify that everything works correctly.
2011-12-17 10:33:50 +01:00
2013-08-24 10:17:00 +02:00
Assuming that your maildir is at @file{~/Maildir}, we issue the following
2012-10-01 20:18:59 +02:00
command:
2011-12-17 10:33:50 +01:00
@example
$ mu index --maildir=~/Maildir
@end example
2012-02-05 09:56:37 +01:00
This should scan your @file{~/Maildir}@footnote{In most cases, you do not even
2012-10-01 20:18:59 +02:00
need to provide the @t{--maildir=~/Maildir} since it is the default; see the
@t{mu-index} man-page for details} and fill the database, and give progress
information while doing so.
2012-04-24 21:37:50 +02:00
The indexing process may take a few minutes the first time you do it
(for thousands of e-mails); afterwards it is much faster, since @t{mu}
only scans messages that are new or have changed. Indexing is discussed
in full detail in the @t{mu-index} man-page.
2011-12-17 10:33:50 +01:00
2012-04-24 21:37:50 +02:00
After the indexing process has finished, you can quickly test if everything
2012-10-11 16:50:32 +02:00
worked, by trying some command-line searches, for example
2011-12-17 10:33:50 +01:00
@example
$ mu find hello
@end example
2012-04-24 21:37:50 +02:00
2013-08-24 10:17:00 +02:00
which lists all messages that match @t{hello}. For more examples of searches,
see @ref{Queries}, or check the @t{mu-find} and @t{mu-easy} man pages. If all
of this worked well, we are well on our way setting things up; the next step
is to do some basic configuration for @t{mu4e}.
2012-04-24 21:37:50 +02:00
@node Basic configuration
@section Basic configuration
2012-10-14 16:00:25 +02:00
Before we can start using @t{mu4e}, we need to tell @command{emacs} to load
it. So, add to your @file{~/.emacs} (or its moral equivalent, such as
@file{~/.emacs.d/init.el}) something like:
2012-04-24 21:37:50 +02:00
2012-10-01 20:18:59 +02:00
@lisp
2012-04-24 21:37:50 +02:00
(require 'mu4e)
2012-10-01 20:18:59 +02:00
@end lisp
2012-04-24 21:37:50 +02:00
2012-10-14 16:00:25 +02:00
If @command{emacs} complains that it cannot find @t{mu4e}, check your
@code{load-path} and make sure that @t{mu4e}'s installation directory is part
of it. If not, you can add it:
@lisp
(add-to-list 'load-path MU4E-PATH)
@end lisp
with @t{MU4E-PATH} replaced with the actual path.
2012-04-24 21:37:50 +02:00
@node Folders
@section Folders
The next step is to tell @t{mu4e} where it can find your Maildir, and
some special folders. So, for example@footnote{Note that the folders
(@t{mu4e-sent-folder}, @t{mu4e-drafts-folder}, @t{mu4e-trash-folder} and
@t{mu4e-refile-folder}) can also be @emph{functions} that are evaluated
at runtime. This allows for dynamically changing them depending on the
context. See @ref{Dynamic folders} for details.}:
2012-04-24 21:37:50 +02:00
@lisp
2012-10-14 16:00:25 +02:00
;; these are actually the defaults
2012-04-24 21:37:50 +02:00
(setq
mu4e-maildir "~/Maildir" ;; top-level Maildir
2012-09-28 16:12:09 +02:00
mu4e-sent-folder "/sent" ;; folder for sent messages
mu4e-drafts-folder "/drafts" ;; unfinished messages
mu4e-trash-folder "/trash" ;; trashed messages
mu4e-refile-folder "/archive") ;; saved messages
2012-04-24 21:37:50 +02:00
@end lisp
Note, @code{mu4e-maildir} takes an actual filesystem-path, the other
folder names are all relative to @code{mu4e-maildir}. Also note that
this must @emph{not} be a symbolic link.
2012-10-01 15:42:37 +02:00
@node Retrieval and indexing
@section Retrieval and indexing with mu4e
2012-10-01 15:42:37 +02:00
As we have seen, we can do all of the mail retrieval @emph{outside} of
2012-10-14 16:00:25 +02:00
@command{emacs}/@t{mu4e}. However, you can also do it from within
@t{mu4e}.
@subsection Basics
To set up mail-retrieval from withing @t{mu4e}, set the variable
@code{mu4e-get-mail-command} to the program or shell command you want to
use for retrieving mail. You can then get your e-mail using @kbd{M-x
mu4e-update-mail-and-index}, or @kbd{C-S-u} in all @t{mu4e}-views;
alternatively, you can use @kbd{C-c C-u}, which may be more convenient
if you use emacs in a terminal.
You can interrupt the (foreground) update process with @kbd{q}.
It is possible to update your mail and index periodically in the
background, by setting the variable @code{mu4e-update-interval} to the
number of seconds between these updates. If set to @code{nil}, it won't
update at all. After you make changes to @code{mu4e-update-interval},
@t{mu4e} must be restarted before the changes take effect.
@subsection Handling errors during mail retrieval
If the mail-retrieval process returns with a non-zero exit code,
@t{mu4e} will show a warning (unless
@code{mu4e-index-update-error-warning} is set to @code{nil}), but then
try to index your maildirs anyway (unless
@code{mu4e-index-update-error-continue} is set to @code{nil}).
Reason for these defaults is that some of the mail-retrieval programs
may return non-zero, even when the updating process succeeded; however,
it is hard to tell such pseudo-errors from real ones like 'login
failed'.
If you need more refinement, it may be useful to wrap the mail-retrieval
program in a shell-script, for example @t{fetchmail} returns 1 to
indicate 'no mail'; we can handle that with:
@lisp
(setq mu4e-get-mail-command "fetchmail -v || [ $? -eq 1 ]")
@end lisp
A similar approach can be used with other mail retrieval programs,
although not all of them have their exit codes documented.
@subsection Implicit mail retrieval
If you don't have a specific command for getting mail, for example
because you are running your own mail-server, you can leave
@code{mu4e-get-mail-command} at @t{"true"} (the default), in which case
@t{mu4e} won't try to get new mail, but still re-index your messages.
@subsection Example setup
2012-10-01 15:42:37 +02:00
2012-10-01 20:18:59 +02:00
A simple setup could look something like:
2012-10-01 15:42:37 +02:00
@lisp
2012-10-03 11:53:24 +02:00
(setq
2012-10-01 15:42:37 +02:00
mu4e-get-mail-command "offlineimap" ;; or fetchmail, or ...
mu4e-update-interval 300) ;; update every 5 minutes
@end lisp
A hook @code{mu4e-update-pre-hook} is available which is run right
before starting the process. That can be useful, for example, to
influence, @code{mu4e-get-mail-command} based on the the current
situation (location, time of day, ...).
It is possible to get notifications when the indexing process does any
updates - for example when receiving new mail. See
@code{mu4e-index-updated-hook} and some tips on its usage in the
@ref{FAQ}.
2011-12-20 07:45:07 +01:00
@node Sending mail
@section Sending mail
2012-10-11 19:04:18 +02:00
@t{mu4e} re-uses Gnu's @code{message-mode} (@inforef{Top,,message}) for
writing mail and inherits the setup for sending mail as well.
2012-04-24 21:37:50 +02:00
2012-10-01 20:18:59 +02:00
For sending mail using @abbr{SMTP}, @t{mu4e} uses @t{smtpmail}
2012-10-14 16:00:25 +02:00
(@inforef{Top,,smtpmail}). This package supports many different ways to send
2012-10-01 20:18:59 +02:00
mail; please refer to its documentation for the details.
2012-04-24 21:37:50 +02:00
2012-10-11 19:04:18 +02:00
Here, we only provide some simple examples - for more, see @ref{Example
2012-10-03 20:54:34 +02:00
configurations}.
2011-12-20 07:45:07 +01:00
2012-10-11 19:04:18 +02:00
A very minimal setup:
2011-12-20 07:45:07 +01:00
2012-03-26 20:19:11 +02:00
@lisp
2011-12-20 07:45:07 +01:00
;; tell message-mode how to send mail
(setq message-send-mail-function 'smtpmail-send-it)
;; if our mail server lives at smtp.example.org; if you have a local
;; mail-server, simply use 'localhost' here.
2011-12-20 07:45:07 +01:00
(setq smtpmail-smtp-server "smtp.example.org")
2012-03-26 20:19:11 +02:00
@end lisp
2011-12-20 07:45:07 +01:00
2012-09-30 19:12:07 +02:00
Since @t{mu4e} (re)uses the same @t{message mode} and @t{smtpmail} that Gnus
uses, many settings for those also apply to @t{mu4e}.
2011-12-20 07:45:07 +01:00
2012-10-01 20:18:59 +02:00
@subsection Dealing with sent messages
2012-10-11 19:04:18 +02:00
By default, @t{mu4e} puts a copy of messages you sent in the folder determined
2012-10-14 16:00:25 +02:00
by @code{mu4e-sent-folder}. In some cases, this may not be what you want -
2012-10-11 19:04:18 +02:00
for example, when using Gmail-over-@abbr{IMAP}, this interferes with Gmail's
2012-10-11 16:50:32 +02:00
handling of the sent messages folder, and you may end up with duplicate
messages.
2013-07-06 09:47:15 +02:00
You can use the variable @code{mu4e-sent-messages-behavior} to customize what
happens with sent messages. The default is the symbol @code{sent} which, as
mentioned, causes the message to be copied to your sent-messages folder. Other
possible values are the symbols @code{trash} (the sent message is moved to the
trash-folder (@code{mu4e-trash-folder}), and @code{delete} to simply discard
the sent message altogether (so Gmail can deal with it).
2012-10-11 19:04:18 +02:00
For Gmail-over-@abbr{IMAP}, you could add the following to your settings:
@verbatim
2012-09-30 19:12:07 +02:00
;; don't save messages to Sent Messages, Gmail/IMAP takes care of this
2012-10-11 16:50:32 +02:00
(setq mu4e-sent-messages-behavior 'delete)
@end verbatim
2012-10-01 20:18:59 +02:00
And that's it! We should now be ready to go.
2011-12-17 10:33:50 +01:00
For more complex needs, @code{mu4e-sent-messages-behavior} can also be
a a parameter-less function that returns one of the mentioned symbols;
see the built-in documentation for the variable.
2013-04-21 11:49:26 +02:00
2011-12-19 08:07:03 +01:00
@node Running mu4e
@section Running mu4e
2011-12-19 08:07:03 +01:00
After following the steps in this chapter, we now (hopefully!) have a
working @t{mu4e} setup. Great! In the next chapters, we walk you
through the various views in @t{mu4e}.
2011-12-19 08:07:03 +01:00
For your orientation, the diagram below shows how the views relate to each
2012-10-11 16:50:32 +02:00
other, and the default key-bindings to navigate between them.
2011-12-19 08:07:03 +01:00
2012-10-11 16:50:32 +02:00
@cartouche
@verbatim
2012-10-11 16:50:32 +02:00
[C] +--------+ [RFCE]
--------> | editor | <--------
/ +--------+ \
/ [RFCE]^ \
/ | \
+-------+ [sjbB]+---------+ [RET] +---------+
| main | <---> | headers | <----> | message |
+-------+ [q] +---------+ [qbBjs]+---------+
[sjbB] ^
[.] | [q]
V
+-----+
| raw |
+-----+
2012-10-11 16:50:32 +02:00
Default bindings
----------------
R: Reply s: search .: raw view (toggle)
F: Forward j: jump-to-maildir q: quit
C: Compose b: bookmark-search
E: Edit B: edit bookmark-search
@end verbatim
@end cartouche
2011-12-19 08:07:03 +01:00
@node Main view
2012-09-30 19:12:07 +02:00
@chapter The main view
After you have installed @t{mu4e} (@pxref{Getting started}), you can start it
2012-10-14 16:00:25 +02:00
with @kbd{M-x mu4e}. @t{mu4e} does some checks to ensure everything is set up
correctly, and then shows you the @t{mu4e} main view. Its major mode is
@code{mu4e-main-mode}.
2011-12-19 08:07:03 +01:00
2013-09-24 21:20:25 +02:00
2012-09-29 12:30:49 +02:00
@menu
* Overview: MV Overview.
2012-09-29 12:30:49 +02:00
* Basic actions::
2013-09-24 21:20:25 +02:00
* Bookmarks: MV Bookmarks.
2012-09-29 12:30:49 +02:00
* Miscellaneous::
@end menu
@node MV Overview
@section Overview
The main view looks something like the following:
2011-12-17 10:33:50 +01:00
2012-10-11 16:50:32 +02:00
@cartouche
2011-12-17 10:33:50 +01:00
@verbatim
2012-10-17 22:36:35 +02:00
* mu4e - mu for emacs version x.x CG
2012-10-11 16:50:32 +02:00
Basics
2012-10-11 16:50:32 +02:00
* [j]ump to some maildir
* enter a [s]earch query
* [C]ompose a new message
2012-10-11 16:50:32 +02:00
Bookmarks
2012-10-11 16:50:32 +02:00
* [bu] Unread messages
* [bt] Today's messages
* [bw] Last 7 days
* [bp] Messages with images
Misc
2012-10-11 16:50:32 +02:00
* [U]pdate email & database
* toggle [m]ail sending mode (direct)
* [f]lush queued mail
2012-10-11 16:50:32 +02:00
* [A]bout mu4e
* [H]elp
* [q]uit mu4e
2011-12-17 10:33:50 +01:00
@end verbatim
2012-10-11 16:50:32 +02:00
@end cartouche
2012-10-17 22:36:35 +02:00
In the example above, you can see the letters ``@t{CG}'', which indicate:
@itemize
@item @t{C}: support for decryption of encrypted messages, and verifying
signatures. See @ref{MSGV Crypto} in the @ref{Message view} for details.
@item @t{G}: support for the Guile 2.0 programming language
@end itemize
Whether you see both, one or none of these letters depends on the way @t{mu}
is built.
2012-09-29 12:30:49 +02:00
2012-10-17 22:36:35 +02:00
Let's walk through the menu.
2012-10-22 19:27:49 +02:00
2012-09-29 12:30:49 +02:00
@node Basic actions
@section Basic actions
2011-12-17 10:33:50 +01:00
First, the @emph{Basics}:
@itemize
2012-09-30 19:12:07 +02:00
@item @t{[j]ump to some maildir}: after pressing @key{j} (``jump''),
@t{mu4e} asks you for a maildir to visit. These are the maildirs you set in
@ref{Basic configuration} and any of your own. If you choose @key{o}
(``other'') or @key{/}, you can choose from all maildirs under
2012-10-14 16:00:25 +02:00
@code{mu4e-maildir}. After choosing a maildir, the messages in that maildir
2012-10-11 16:50:32 +02:00
are listed, in the @ref{Headers view}.
2012-09-30 19:12:07 +02:00
@item @t{enter a [s]earch query}: after pressing @key{s}, @t{mu4e} asks
you for a search query, and after entering one, shows the results in the
@ref{Headers view}.
2012-10-11 16:50:32 +02:00
@item @t{[C]ompose a new message}: after pressing @key{C}, you are dropped in
the @ref{Editor view} to write a new message.
2011-12-19 08:07:03 +01:00
@end itemize
2012-09-29 12:30:49 +02:00
@node MV Bookmarks
@section Bookmarks
2012-10-11 16:50:32 +02:00
The next item in the Main view is @emph{Bookmarks}. Bookmarks are predefined
queries with a descriptive name and a shortcut - in the example above, we see
2012-10-14 16:00:25 +02:00
the default bookmarks. You can view the list of messages matching a certain
bookmark by pressing @key{b} followed by the bookmark's shortcut. If you'd
like to edit the bookmarked query first before invoking it, use @key{B}.
2012-10-11 16:50:32 +02:00
2012-10-14 16:00:25 +02:00
Bookmarks are stored in the variable @code{mu4e-bookmarks}; you can add your
2012-10-11 16:50:32 +02:00
own and/or replace the default ones; @xref{Bookmarks}.
2011-12-19 08:07:03 +01:00
2012-09-29 12:30:49 +02:00
@node Miscellaneous
@section Miscellaneous
2012-06-12 09:21:44 +02:00
Finally, there are some @emph{Misc} (miscellaneous) actions:
2011-12-19 08:07:03 +01:00
@itemize
2012-10-14 16:00:25 +02:00
@item @t{[U]pdate email & database} executes the shell-command in the variable
@code{mu4e-get-mail-command}, and afterwards updates the @t{mu} database;
see @ref{Indexing your messages} and @ref{Getting mail} for details.
2012-09-30 19:12:07 +02:00
@item @t{toggle [m]ail sending mode (direct)} toggles between sending
2011-12-19 08:07:03 +01:00
mail directly, and queuing it first (for example, when you are offline), and
2012-09-30 19:12:07 +02:00
@t{[f]lush queued mail} flushes any queued mail. This item is visible only
2012-10-14 16:00:25 +02:00
if you have actually set up mail-queuing. @ref{Queuing mail}
@item @t{[A]bout mu4e} provides general information about the program
@item @t{[H]elp} shows help information for this view
@item Finally, @t{[q]uit mu4e} quits your @t{mu4e}-session
2011-12-19 08:07:03 +01:00
@end itemize
@node Headers view
2012-09-30 19:12:07 +02:00
@chapter The headers view
2011-12-19 08:07:03 +01:00
The headers view shows the results of a query. The header-line shows
the names of the fields. Below that, there is a line with those
fields, for each matching message, followed by a footer line. The
major-mode for the headers view is @code{mu4e-headers-mode}.
2012-09-29 12:30:49 +02:00
@menu
2013-09-24 21:20:25 +02:00
* Overview: HV Overview.
2012-09-29 12:30:49 +02:00
* Keybindings::
* Marking messages::
* Sort order and threading::
* HV Custom headers::
2012-09-29 12:30:49 +02:00
* HV Actions::
* Split view::
@end menu
@node HV Overview
@section Overview
2012-10-14 16:00:25 +02:00
An example headers view:
2012-10-11 16:50:32 +02:00
@cartouche
2011-12-19 08:07:03 +01:00
@verbatim
Date V Flgs From/To List Subject
2013-04-21 11:49:26 +02:00
06:32 Nu To Edmund Dantès GstDev + Re: Gstreamer-V4L...
15:08 Nu Abbé Busoni GstDev + Re: Gstreamer-V...
18:20 Nu Pierre Morrel GstDev \ Re: Gstreamer...
2013-03-18 S Jacopo EmacsUsr + emacs server on win...
2013-03-18 S Mercédès EmacsUsr \ RE: emacs server ...
2013-03-18 S Beachamp EmacsUsr + Re: Copying a whole...
22:07 Nu Albert de Moncerf EmacsUsr \ Re: Copying a who...
2013-03-18 S Gaspard Caderousse GstDev | Issue with GESSimpl...
2013-03-18 Ss Baron Danglars GuileUsr | Guile-SDL 0.4.2 ava...
2011-12-19 08:07:03 +01:00
End of search results
@end verbatim
2012-10-11 16:50:32 +02:00
@end cartouche
2011-12-19 08:07:03 +01:00
2012-04-06 10:00:39 +02:00
Some notes to explain what you see in the example:
2011-12-19 08:07:03 +01:00
@itemize
@item The fields shown in the headers view can be influenced by customizing
2012-10-14 16:00:25 +02:00
the variable @code{mu4e-headers-fields}; see @code{mu4e-header-info} for the
list of built-in fields. Apart from the built-in fields, you can also create
custom fields using @code{mu4e-header-info-custom}; see @ref{HV Custom
headers} for details.
@item By default, the date is shown with the @t{:human-date} field, which
shows the @emph{time} for today's messages, and the @emph{date} for older
messages. If you want to distinguish between 'today' and 'older', you can use
the @t{:date} field instead.
@item You can customize the date and time formats with the variable
2012-10-22 19:27:49 +02:00
@code{mu4e-headers-date-format} and @code{mu4e-headers-time-format},
respectively. In the example, we use @code{:human-date}, which shows when the
time when the message was sent today, and the date otherwise.
@item By default, the subject is shown using the @t{:subject} field;
however, it is also possible to use @t{:thread-subject}, which shows
the subject of a thread only once, similar to the display of the
@t{mutt} e-mail client.
2012-10-11 16:50:32 +02:00
@item The header field used for sorting is indicated by ``@t{V}'' or
``@t{^}''@footnote{or you can use little graphical triangles; see
variable @code{mu4e-use-fancy-chars}}, corresponding to the sort order
(descending or ascending, respectively). You can influence this by a
mouse click, or @key{O}. Not all fields allow sorting.
2012-05-02 21:14:54 +02:00
@item Instead of showing the @t{From:} and @t{To:} fields separately, you
2012-10-14 16:00:25 +02:00
can use From/To (@t{:from-or-to} in @code{mu4e-headers-fields} as a more
2012-05-02 21:14:54 +02:00
compact way to convey the most important information: it shows @t{From:}
@emph{except} when the e-mail was sent by the user (i.e., you) - in that case
it shows @t{To:} (prefixed by @t{To}@footnote{You can customize this by
2012-10-14 16:00:25 +02:00
changing the variable @code{mu4e-headers-from-or-to-prefix} (a cons cell)}, as
in the example above). To determine whether a message was sent by you,
@t{mu4e} uses the variable @code{mu4e-user-mail-address-list}, a list of
your e-mail addresses.
@item The 'List' field shows the mailing-list a message is sent to;
@code{mu4e} tries to create a convenient shortcut for the mailing-list name;
the variables @code{mu4e-user-mailing-lists} and
@code{mu4e-mailing-list-patterns} can be used to add your own shortcuts.
2012-10-14 16:00:25 +02:00
@item The letters in the 'Flags' field correspond to the following: D=@emph{draft},
2012-10-16 20:43:49 +02:00
F=@emph{flagged} (i.e., 'starred'), N=@emph{new}, P=@emph{passed} (i.e.,
forwarded), R=@emph{replied}, S=@emph{seen}, T=@emph{trashed},
a=@emph{has-attachment}, x=@emph{encrypted}, s=@emph{signed},
u=@emph{unread}. The tooltip for this field also contains this information.
2012-10-14 16:00:25 +02:00
@item The subject field also indicates the discussion threads @footnote{using
Jamie Zawinski's mail threading algorithm,
@url{http://www.jwz.org/doc/threading.html}}.
@item The headers view is @emph{automatically updated} if any changes are
2013-06-12 09:09:19 +02:00
found during the indexing process, and if there is no current
user-interaction. If you do not want such automatic updates, set
@code{mu4e-headers-auto-update} to @code{nil}.
@item There is a hook-function @code{mu4e-headers-found-hook} available which
is invoked just after @t{mu4e} has completed showing the messages in the
headers-view.
2011-12-17 10:33:50 +01:00
@end itemize
2012-09-29 12:30:49 +02:00
@node Keybindings
@section Keybindings
2012-10-14 16:00:25 +02:00
Using the below key bindings, you can do various things with these messages;
these actions are also listed in the @t{Headers} menu in the @command{emacs}
menu bar.
2011-12-17 10:33:50 +01:00
@verbatim
key description
===========================================================
n,p view the next, previous message
],[ move to the next, previous unread message
2012-04-09 10:52:49 +02:00
y select the message view (if it's visible)
RET open the message at point in the message view
searching
---------
s search
S edit last query
/ narrow the search
b search bookmark
B edit bookmark before search
2012-04-01 23:59:55 +02:00
j jump to maildir
M-left,\ previous query
M-right next query
O change sort order
P toggle threading
Q toggle full-search
V toggle skip-duplicates
W toggle include-related
2012-04-01 23:59:55 +02:00
marking
-------
2012-04-01 23:59:55 +02:00
d mark for moving to the trash folder
= mark for removing trash flag ('untrash')
DEL,D mark for complete deletion
2012-04-01 23:59:55 +02:00
m mark for moving to another maildir folder
r mark for refiling
+,- mark for flagging/unflagging
2012-09-28 16:12:09 +02:00
?,! mark message as unread, read
2012-04-01 23:59:55 +02:00
u unmark message at point
U unmark *all* messages
2012-04-24 21:37:50 +02:00
% mark based on a regular expression
T,t mark whole thread, subthread
2012-04-24 21:37:50 +02:00
<insert>,* mark for 'something' (decide later)
# resolve deferred 'something' marks
x execute actions for the marked messages
composition
-----------
2012-04-01 23:59:55 +02:00
R,F,C reply/forward/compose
E edit (only allowed for draft messages)
misc
----
a execute some custom action on a header
| pipe message through shell command
C-+,C-- increase / decrease the number of headers shown
H get help
C-S-u update mail & reindex
2012-04-09 10:52:49 +02:00
q,z leave the headers buffer
@end verbatim
2011-12-19 08:07:03 +01:00
2012-09-29 12:30:49 +02:00
@node Marking messages
@section Marking messages
2013-08-24 10:17:00 +02:00
You can @emph{mark} messages for a certain action, such as deletion or
move. After one or more messages are marked, you can then execute
(@code{mu4e-mark-execute-all}, @key{x}) these actions. This two-step
mark-execute sequence is similar to what e.g. @t{dired} does. It is how
@t{mu4e} tries to be as quick as possible, while avoiding accidents.
2012-10-11 16:50:32 +02:00
The mark/unmark commands support the @emph{region} (i.e., ``selection'') --
so, for example, if you select some messages and press @key{DEL}, all messages
in the region are marked for deletion.
2011-12-17 10:33:50 +01:00
You can mark all messages that match a certain pattern with @key{%}. In
addition, you can mark all messages in the current thread (@key{T}) or
sub-thread (@key{t}).
2012-10-14 16:00:25 +02:00
When you do a new search or refresh the headers buffer while you still have
marked messages, you are asked what to do with those marks -- whether to
@emph{apply} them before leaving, or @emph{ignore} them. This behavior can be
influenced with the variable @code{mu4e-headers-leave-behavior}.
2012-10-11 16:50:32 +02:00
For more information about marking, see @ref{Marking}.
2012-09-29 12:30:49 +02:00
@node Sort order and threading
@section Sort order and threading
By default, @t{mu4e} sorts messages by date, in descending order: the most
2012-06-12 09:21:44 +02:00
recent messages are shown at the top. In addition, the messages are
2012-10-14 16:00:25 +02:00
@emph{threaded}, i.e., shown in the context of a discussion thread; this also
2012-06-12 09:21:44 +02:00
affects the sort order.
2012-10-11 16:50:32 +02:00
The header field used for sorting is indicated by ``@t{V}'' or
``@t{^}''@footnote{or you can use little graphical triangles; see variable
2012-10-14 16:00:25 +02:00
@code{mu4e-use-fancy-chars}}, indicating the sort order (descending or
ascending, respectively).
2012-10-11 16:50:32 +02:00
You can change the sort order by clicking the corresponding field with the
2012-10-14 16:00:25 +02:00
mouse, or with @kbd{M-x mu4e-headers-change-sorting} (@key{O}); note that not
2012-10-11 16:50:32 +02:00
all fields can be used for sorting. You can toggle threading on/off using
2012-10-14 16:00:25 +02:00
@kbd{M-x mu4e-headers-toggle-threading} or @key{P}. For both of these functions,
2012-10-11 16:50:32 +02:00
unless you provide a prefix argument (@key{C-u}), the current search is
updated immediately using the new parameters. You can toggle full-search
2012-10-14 16:00:25 +02:00
(@ref{Searching}) using @kbd{M-x mu4e-headers-toggle-full-search} or @key{Q}.
If you want to change the defaults for these settings, you can use the
2012-10-14 16:00:25 +02:00
variables @code{mu4e-headers-sortfield} and @code{mu4e-headers-show-threads}.
@node HV Custom headers
@section Custom headers
Sometimes the normal headers that @t{mu4e} offers (Date, From, To, Subject
etc.) may not be enough. For these cases, @t{mu4e} offers @emph{custom
headers} in both the headers-view and the message-view.
You can do so by adding a description of your custom header to
@code{mu4e-header-info-custom}, which is a list of custom headers.
Let's look at an example -- suppose we want to add a custom header that shows
the number of recipients for a message, i.e., the sum of the number of
recipients in the To: and Cc: fields. Let's further suppose that our function
takes a message-plist as its argument (@ref{Message functions}).
@lisp
(add-to-list 'mu4e-header-info-custom
'(:recipnum .
( :name "Number of recipients" ;; long name, as seen in the message-view
:shortname "Recip#" ;; short name, as seen in the headers view
:help "Number of recipients for this message" ;; tooltip
:function
(lambda (msg)
(format "%d"
(+ (length (mu4e-message-field msg :to))
(length (mu4e-message-field msg :cc))))))))
@end lisp
Or, let's get the full mailing-list name:
@lisp
(add-to-list 'mu4e-header-info-custom
'(:full-mailing-list .
( :name "Mailing-list" ;; long name, as seen in the message-view
:shortname "ML" ;; short name, as seen in the headers view
:help "Full name for mailing list" ;; tooltip
:function
(lambda (msg)
(or (mu4e-message-field msg :mailing-list) "")))))
@end lisp
You can then add the custom header to your @code{mu4e-headers-fields},
just like the built-in headers. After evaluation, you headers-view
should include a new header @t{Recip#} with the number of recipients,
and/or @t{ML} with the full mailing-list name.
This function can be used in both the headers-view and the message-view;
if you need something specific for one of these, you can check for the
mode in your function, or create separate functions.
2012-09-29 12:30:49 +02:00
@node HV Actions
@section Actions
2012-06-12 09:21:44 +02:00
@code{mu4e-headers-action} (@key{a}) lets you pick custom actions to perform
on the message at point. You can specify these actions using the variable
2012-10-11 16:50:32 +02:00
@code{mu4e-headers-actions}. See @ref{Actions} for the details.
2012-10-14 16:00:25 +02:00
@t{mu4e} defines some default actions. One of those is for @emph{capturing} a
message: @key{a c} 'captures' the current message. Next, when you're editing
some message, you can include the previously captured message as an
attachment, using @code{mu4e-compose-attach-captured-message}. See
@file{mu4e-actions.el} in the @t{mu4e} source distribution for more example
actions.
2012-09-29 12:30:49 +02:00
@node Split view
@section Split view
2012-06-12 09:21:44 +02:00
Using the @emph{Split view}, we can see the @ref{Headers view} and the
2012-10-14 16:00:25 +02:00
@ref{Message view} next to each other, with the message selected in the
former, visible in the latter. You can influence the way the splitting is done
by customizing the variable @code{mu4e-split-view}. Possible values are:
@itemize
@item @t{horizontal} (this is the default): display the message view below the
2012-10-14 16:00:25 +02:00
header view. Use @code{mu4e-headers-visible-lines} the set the number of lines
shown (default: 8).
2012-04-11 01:11:47 +02:00
@item @t{vertical}: display the message view on the
2012-10-14 16:00:25 +02:00
right side of the header view. Use @code{mu4e-headers-visible-columns} to set
the number of visible columns (default: 30).
2012-04-09 10:52:49 +02:00
@item anything else: don't do any splitting
@end itemize
2012-10-14 16:00:25 +02:00
@noindent
Some useful key bindings in the split view:
@itemize
@item @key{C-+} and @key{C--}: interactively change the number of columns or
headers shown
@item You can change the selected window from the
headers-view to the message-view and vice-versa with
@code{mu4e-select-other-view}, bound to @key{y}
@end itemize
2011-12-19 08:07:03 +01:00
@node Message view
2012-09-30 19:12:07 +02:00
@chapter The message view
2011-12-17 10:33:50 +01:00
2012-10-14 16:00:25 +02:00
After selecting a message in the @ref{Headers view}, it appears in a message
2013-08-24 10:17:00 +02:00
view window, which shows the message headers, followed by the message
body. Its major mode is @code{mu4e-view-mode}.
2012-10-14 16:00:25 +02:00
2012-09-29 12:30:49 +02:00
@menu
2013-09-24 21:20:25 +02:00
* Overview: MSGV Overview.
* Keybindings: MSGV Keybindings.
2012-09-29 12:30:49 +02:00
* Opening and saving attachments::
* Viewing images inline::
* Displaying rich-text messages::
2013-09-24 21:20:25 +02:00
* Crypto: MSGV Crypto.
* Custom headers: MSGV Custom headers
2013-09-24 21:20:25 +02:00
* Actions: MSGV Actions.
2012-09-29 12:30:49 +02:00
@end menu
@node MSGV Overview
@section Overview
2012-10-14 16:00:25 +02:00
An example message view:
2012-02-05 09:56:37 +01:00
2012-10-11 16:50:32 +02:00
@cartouche
2011-12-19 08:07:03 +01:00
@verbatim
2012-10-14 16:00:25 +02:00
From: randy@epiphyte.com
To: julia@eruditorum.org
Subject: Re: some pics
2012-10-11 16:50:32 +02:00
Flags: (seen attach)
Date: Mon 19 Jan 2004 09:39:42 AM EET
Maildir: /inbox
Attachments(2): [1]DSCN4961.JPG(1.3M), [2]DSCN4962.JPG(1.4M)
2012-10-14 16:00:25 +02:00
Hi Julia,
Some pics from our trip to Cerin Amroth. Enjoy!
2012-10-14 16:00:25 +02:00
All the best,
Randy.
2012-10-14 16:00:25 +02:00
On Sun 21 Dec 2003 09:06:34 PM EET, Julia wrote:
2012-10-11 16:50:32 +02:00
[....]
2011-12-19 08:07:03 +01:00
@end verbatim
2012-10-11 16:50:32 +02:00
@end cartouche
2011-12-19 08:07:03 +01:00
Some notes:
@itemize
@item The variable @code{mu4e-view-fields} determines the header fields to be
shown; see @code{mu4e-header-info} for a list of built-in fields. Apart from
the built-in fields, you can also create custom fields using
@code{mu4e-header-info-custom}; see @ref{MSGV Custom headers}.
2012-10-14 16:00:25 +02:00
@item You can set the date format with the variable
@code{mu4e-date-format-long}.
@item By default, only the names of contacts in address fields are visible
(see @code{mu4e-view-show-addresses} to change this). You can view the e-mail
addresses by clicking on the name, or pressing @key{M-RET}.
@item You can compose a message for the contact at point by either clicking
@key{[mouse-2]} or pressing @key{C}.
@item The body text can be line-wrapped using @t{visual-line-mode}. @t{mu4e}
defines @key{w} to toggle between the wrapped and unwrapped state. If you want
to do this automatically when viewing a message, invoke @code{visual-line-mode}
2012-10-14 16:00:25 +02:00
in your @code{mu4e-view-mode-hook}.
2012-10-11 16:50:32 +02:00
@item You can hide cited parts in messages (the parts starting with ``@t{>}'')
using @code{mu4e-view-hide-cited}, bound to @key{h}. If you want to do this
automatically for every message, invoke the function in your
2012-10-14 16:00:25 +02:00
@code{mu4e-view-mode-hook}.
@item For search-related operations, see @ref{Searching}.
@item You can scroll down the message using @key{SPC}; if you do this at the
end of a message,it automatically takes you to the next one. If you want to
prevent this behavior, set @code{mu4e-view-scroll-to-next} to @code{nil}.
2011-12-19 08:07:03 +01:00
@end itemize
2012-09-29 12:30:49 +02:00
@node MSGV Keybindings
@section Keybindings
2011-12-19 08:07:03 +01:00
You can find most things you can do with this message in the @emph{View} menu,
2012-02-06 18:48:33 +01:00
or by using the keyboard; the default bindings are:
2011-12-19 08:07:03 +01:00
@verbatim
key description
==============================================================
n,p view the next, previous message
],[ move to the next, previous unread message
2012-04-09 10:52:49 +02:00
y select the headers view (if it's visible)
2012-04-01 23:59:55 +02:00
RET scroll down
M-RET open URL at point / attachment at point
SPC scroll down, if at end, move to next message
S-SPC scroll up
searching
---------
s search
e edit last query
/ narrow the search
b search bookmark
B edit bookmark before search
2012-04-01 23:59:55 +02:00
j jump to maildir
M-left previous query
M-right next query
2012-04-01 23:59:55 +02:00
marking
-------
d mark for moving to the trash folder
= mark for removing trash flag ('untrash')
DEL,D mark for complete deletion
m mark for moving to another maildir folder
r mark for refiling
+,- mark for flagging/unflagging
u unmark message at point
U unmark *all* messages
2012-04-24 21:37:50 +02:00
% mark based on a regular expression
T,t mark whole thread, subthread
2012-04-24 21:37:50 +02:00
<insert>,* mark for 'something' (decide later)
# resolve deferred 'something' marks
x execute actions for the marked messages
composition
-----------
R,F,C reply/forward/compose
E edit (only allowed for draft messages)
actions
-------
g go to (visit) numbered URL (using `browse-url')
(or: <mouse-1> or M-RET with point on url)
C-u g visits multiple URLs
k save the numbered URL in the kill-ring.
2015-03-21 15:11:11 +01:00
C-u k saves multiple URLs
e extract (save) attachment (asks for number)
(or: <mouse-2> or S-RET with point on attachment)
2012-09-30 19:12:07 +02:00
C-u e extracts multiple attachments
o open attachment (asks for number)
(or: <mouse-1> or M-RET with point on attachment)
a execute some custom action on the message
A execute some custom action on an attachment
misc
----
c copy address at point (with C-u copy long version)
w toggle line wrapping
h toggle showing cited parts
v show details about the cryptographic signature
. show the raw message view. 'q' takes you back.
C-+,C-- increase / decrease the number of headers shown
H get help
C-S-u update mail & reindex
2012-04-09 10:52:49 +02:00
q,z leave the message view
@end verbatim
2011-12-19 08:07:03 +01:00
For the marking commands, please refer to @ref{Marking messages}.
2011-12-19 08:07:03 +01:00
2012-09-29 12:30:49 +02:00
@node Opening and saving attachments
@section Opening and saving attachments
2012-10-03 11:53:24 +02:00
By default, @t{mu4e} uses the @t{xdg-open}-program
@footnote{@url{http://portland.freedesktop.org/wiki/}} or (on MacOS) the
@t{open} program for opening attachments. If you want to use another program,
you do so by setting the @t{MU_PLAY_PROGRAM} environment variable to the
program to be used.
2011-12-19 08:07:03 +01:00
2012-10-14 16:00:25 +02:00
The default directory for extracting (saving) attachments is your home
directory (@file{~/}); you can change this using the variable
@code{mu4e-attachment-dir}, for example:
2012-03-28 18:00:26 +02:00
@lisp
2012-10-03 11:53:24 +02:00
(setq mu4e-attachment-dir "~/Downloads")
@end lisp
2012-10-14 16:00:25 +02:00
For more flexibility, @code{mu4e-attachment-dir} can also be a user-provided
2012-10-03 11:53:24 +02:00
function. This function receives two parameters: the file-name and the
2013-08-24 10:17:00 +02:00
mime-type as found in the e-mail message@footnote{sadly, often
@t{application/octet-stream} is used for the mime-type, even if a better type
is available} of the attachment, either or both of which can be @t{nil}. For
example:
2012-10-03 11:53:24 +02:00
@lisp
(setq mu4e-attachment-dir
(lambda (fname mtype)
(cond
;; docfiles go to ~/Desktop
((and fname (string-match "\\.doc$" fname)) "~/Desktop")
2012-10-14 16:00:25 +02:00
;; ... other cases ...
2012-10-03 11:53:24 +02:00
(t "~/Downloads")))) ;; everything else
2012-03-28 18:00:26 +02:00
@end lisp
2012-10-14 16:00:25 +02:00
You can extract multiple attachments at once by prefixing the extracting
command by @key{C-u}; so @kbd{C-u e} asks you for a range of attachments to
extract (for example, @kbd{1 3-6 8}). The range "@samp{a}" is a shortcut for
@emph{all} attachments.
2012-09-29 12:30:49 +02:00
@node Viewing images inline
@section Viewing images inline
It is possible to show images inline in the message view buffer if you run
2012-10-14 16:00:25 +02:00
@command{emacs} in GUI-mode. You can enable this by setting the variable
@code{mu4e-view-show-images} to @t{t}. Since @command{emacs} does not always
handle images correctly, this is not enabled by default. If you are using
@command{emacs} 24 with
@emph{ImageMagick}@footnote{@url{http://www.imagemagick.org}} support, make
sure you call @code{imagemagick-register-types} in your configuration, so it
is used for images.
@lisp
;; enable inline images
2012-06-05 14:43:18 +02:00
(setq mu4e-view-show-images t)
;; use imagemagick, if available
(when (fboundp 'imagemagick-register-types)
(imagemagick-register-types))
@end lisp
2012-09-29 12:30:49 +02:00
@node Displaying rich-text messages
@section Displaying rich-text messages
2012-10-14 16:00:25 +02:00
@t{mu4e} normally prefers the plain-text version for messages that consist of
2013-06-12 09:09:19 +02:00
both a plain-text and html (rich-text) versions of the body-text. You can
change this by setting @code{mu4e-view-prefer-html} to @t{t}.
2012-04-30 16:48:07 +02:00
If there is only an html-version, or if the plain-text version is too
short in comparison with the html part@footnote{this is for the case
where the text-part only warns that you should use the html-version},
@t{mu4e} tries to convert the html into plain-text for display.
The default way to do that is to use the @command{emacs} built-in
@code{html2text} function. However, you can set the variable
@code{mu4e-html2text-command} to a either a shell command or a function
instead.
@subsection Html2text commands
If @code{mu4e-html2text-command} is a shell command, it is expected to
take html from standard input and write plain text in @t{UTF-8} encoding
on standard output.
An example of such a program is the program that is actually
@emph{called}
2012-10-14 16:00:25 +02:00
@t{html2text}@footnote{@url{http://www.mbayer.de/html2text/}}. After
installation, you can set it up with something like the following:
@lisp
(setq mu4e-html2text-command "html2text -utf8 -width 72")
@end lisp
2012-10-03 11:53:24 +02:00
An alternative to this is the Python @t{python-html2text} package; after
installing that, you can tell @t{mu4e} to use it with something like:
2012-04-30 16:48:07 +02:00
@lisp
2012-09-29 12:30:49 +02:00
(setq mu4e-html2text-command
"html2markdown | grep -v '&nbsp_place_holder;'")
2012-04-30 16:48:07 +02:00
@end lisp
OS X, there is a program called @t{textutil} as yet another alternative:
2013-07-06 17:57:32 +02:00
@lisp
(setq mu4e-html2text-command
"textutil -stdin -format html -convert txt -stdout")
@end lisp
@subsection Html2text functions
@anchor{Html2text functions}
If @code{mu4e-html2text-command} refers to an elisp function, it is
expected to take the current buffer in html as input, and transform it
into text (just like the @code{html2text} function).
For example, emacs 24.4 and later versions include the @code{eww}
browser which uses the @code{shr} html renderer; @t{mu4e} includes a
little snippet to uses this with @code{mu4e-html2text-command}; for
this, add the following to your configuration:
@lisp
(require 'mu4e-contrib)
(setq mu4e-html2text-command 'mu4e-shr2text)
@end lisp
If you use the @code{mu4e-shr2text}, it might be useful to emulate some
of the @t{shr} key bindings, with something like:
@lisp
(add-hook 'mu4e-view-mode-hook
(lambda()
;; try to emulate some of the eww key-bindings
(local-set-key (kbd "<tab>") 'shr-next-link)
(local-set-key (kbd "<backtab>") 'shr-previous-link)))
@end lisp
2012-09-29 12:30:49 +02:00
@node MSGV Crypto
@section Crypto
2012-10-11 16:50:32 +02:00
The @t{mu4e} message view supports@footnote{Crypto-support in @t{mu4e}
2014-10-19 11:04:11 +02:00
requires @t{mu} to have been build with crypto-support; see the
@ref{FAQ}} decryption of encrypted messages, as well as verification of
signatures. For signing/encrypting messages your outgoing messages, see
@ref{Signing and encrypting}.
2012-09-30 19:12:07 +02:00
Currently, only PGP/MIME is supported; PGP-inline and S/MIME are not.
2014-10-19 11:04:11 +02:00
For all of this to work, @command{gpg-agent} must be running, and it
must set the environment variable @t{GPG_AGENT_INFO}. You can check from
@command{emacs} with @key{M-x getenv GPG_AGENT_INFO}.
In many mainstream Linux/Unix desktop environments, everything works
out-of-the-box, but if your environment does not automatically start
@command{gpg-agent}, you can do so by hand:
@verbatim
$ eval $(gpg-agent --daemon)
@end verbatim
@noindent
This starts the daemon, and sets the environment variable.
2012-09-30 19:12:07 +02:00
2012-09-13 20:12:38 +02:00
@subsection Decryption
@anchor{Decryption}
If you receive messages that are encrypted (using PGP/MIME), @t{mu4e} can try
to decrypt them, base on the setting of @code{mu4e-decryption-policy}. If you
set it to @t{t}, @t{mu4e} attempts to decrypt messages automatically; this is
the default. If you set it to @t{nil}, @t{mu4e} @emph{won't} attempt to
decrypt anything. Finally, if you set it to @t{'ask}, it asks you what to do,
each time an encrypted message is encountered.
2012-09-13 20:12:38 +02:00
2012-10-14 16:00:25 +02:00
When opening an encrypted message, @t{mu} consults @t{gpg-agent} to see if it
already has unlocked the key needed to decrypt the message; if not, it prompts
you for a password (typically with a separate top-level window). This is only
needed once per session.
2012-09-13 20:12:38 +02:00
@subsection Verifying signatures
2012-09-13 20:12:38 +02:00
@anchor{Verifying signatures}
Some e-mail messages are cryptographically signed, and @t{mu4e} can check the
2012-10-14 16:00:25 +02:00
validity of these signatures. If a message has one or more signatures, the
message view shows an extra header @t{Signature:} (assuming it is part of your
@code{mu4e-view-fields}), and one or more 'verdicts' of the signatures found;
2012-10-11 16:50:32 +02:00
either @t{verified}, @t{unverified} or @t{error}. For instance:
@verbatim
2012-09-13 20:12:38 +02:00
Signature: unverified (Details)
@end verbatim
You can see the details of the signature verification by activating the
2012-09-30 19:12:07 +02:00
@t{Details} or pressing @key{v}. This pops up a little window with the
details of the signatures found and whether they could be verified or not.
2012-10-14 16:00:25 +02:00
For more information, see the @command{mu-verify} manual page.
@node MSGV Custom headers
@section Custom headers
Sometimes the normal headers that @t{mu4e} offers (Date, From, To, Subject
etc.) may not be enough. For these cases, @t{mu4e} offers @emph{custom
headers} in both the headers-view and the message-view.
See @ref{HV Custom headers} for an example of this; the difference for the
message-view is that you should add your custom header to
@code{mu4e-view-fields} rather than @code{mu4e-headers-fields}.
2012-09-29 12:30:49 +02:00
@node MSGV Actions
@section Actions
2012-10-14 16:00:25 +02:00
You can perform custom functions (``actions'') on messages and their
2013-06-12 09:09:19 +02:00
attachments. For a general discussion on how to define your own, see see
@ref{Actions}.
2012-10-14 16:00:25 +02:00
@subsection Message actions
2012-09-29 12:30:49 +02:00
@code{mu4e-view-action} (@key{a}) lets you pick some custom action to perform
on the current message. You can specify these actions using the variable
2012-10-14 16:00:25 +02:00
@code{mu4e-view-actions}; @t{mu4e} defines a number of example actions.
2012-09-29 12:30:49 +02:00
2012-10-14 16:00:25 +02:00
@subsection Attachment actions
2012-09-29 12:30:49 +02:00
Similarly, there is @code{mu4e-view-attachment-action} (@key{A}) for actions
on attachments, which you can specify with
2012-10-14 16:00:25 +02:00
@code{mu4e-view-attachment-actions}.
2012-09-29 12:30:49 +02:00
2012-10-14 16:00:25 +02:00
@t{mu4e} predefines a number of attachment-actions:
2012-09-29 12:30:49 +02:00
@itemize
@item @t{open-with} (@key{w}): open the attachment with some arbitrary
program. For example, suppose you have received a message with a picture
2012-10-11 16:50:32 +02:00
attachment; then, @kbd{A w 1 RET gimp RET} opens that attachment in @emph{The
Gimp}
2012-09-29 12:30:49 +02:00
@item @t{pipe} (@key{|}: process the attachment with some Unix shell-pipe and
see the results. Suppose you receive a patch file, and would like to get an
overview of the changes, using the @t{diffstat} program. You can use something
2012-10-11 16:50:32 +02:00
like: @kbd{A | 1 RET diffstat -b RET}.
2012-10-14 16:00:25 +02:00
@item @command{emacs} (@key{e}): open the attachment in your running @command{emacs}. For
example, if you receive some text file you'd like to open in @command{emacs}:
2012-10-11 16:50:32 +02:00
@kbd{A e 1 RET}.
2012-09-29 12:30:49 +02:00
@end itemize
These actions all work on a @emph{temporary copy} of the attachment.
2011-12-19 08:07:03 +01:00
@node Editor view
2012-09-30 19:12:07 +02:00
@chapter The editor view
2011-12-19 08:07:03 +01:00
2012-09-29 12:30:49 +02:00
Writing e-mail messages takes place in the Editor View. @t{mu4e}'s editor view
builds on top of Gnu's @t{message-mode}. Most of the @t{message-mode}
2012-10-14 16:00:25 +02:00
functionality is available, as well some @t{mu4e}-specifics. Its major mode is
@code{mu4e-compose-mode}.
2012-09-29 12:30:49 +02:00
@menu
* EV Overview::
2012-10-14 16:00:25 +02:00
* Useful keybindings::
2012-09-29 12:30:49 +02:00
* Address autocompletion::
* Compose hooks::
* Signing and encrypting::
* Queuing mail::
* Message signatures::
2012-10-14 16:00:25 +02:00
* Other settings::
2012-09-29 12:30:49 +02:00
@end menu
@node EV Overview
@section Overview
2011-12-19 08:07:03 +01:00
2012-10-11 16:50:32 +02:00
@cartouche
@verbatim
From: Rupert the Monkey <rupert@example.com>
To: Wally the Walrus <wally@example.com>
Subject: Re: Eau-qui d'eau qui?
--text follows this line--
On Mon 16 Jan 2012 10:18:47 AM EET, Wally the Walrus wrote:
> Hi Rupert,
>
> Dude - how are things?
>
> Later -- wally.
@end verbatim
2012-10-11 16:50:32 +02:00
@end cartouche
2011-12-21 23:45:06 +01:00
2012-09-29 12:30:49 +02:00
2012-10-14 16:00:25 +02:00
@node Useful keybindings
@section Useful keybindings
2012-09-29 12:30:49 +02:00
2012-10-14 16:00:25 +02:00
@t{mu4e}'s editor view derives from Gnu's message editor and shares most of
its keybindings. Here are some of the more useful ones (you can use the menu
to find more):
@verbatim
key description
--- -----------
C-c C-c send message
C-c C-d save to drafts and leave
C-c C-k kill the message
C-c C-a attach a file (pro-tip: drag & drop works as well)
(mu4e-specific)
C-S-u update mail & reindex
@end verbatim
2011-12-21 23:45:06 +01:00
2012-09-29 12:30:49 +02:00
@node Address autocompletion
@section Address autocompletion
2012-06-20 10:29:57 +02:00
2012-10-14 16:00:25 +02:00
@t{mu4e} supports@footnote{@command{emacs} 23.2 or higher is required}
autocompleting addresses when composing e-mail messages. @t{mu4e} uses the
e-mail addresses from the messages you sent or received as the source for
this. Address auto-completion is enabled by default; if you want to disable it
for some reason, set @t{mu4e-compose-complete-addresses} to @t{nil}.
Emacs 24 also supports cycling through the alternatives. When there are more
than @emph{5} matching addresses, they are shown in a @t{*Completions*}
2012-10-14 16:00:25 +02:00
buffer. Once the number of matches gets below this number, one is inserted in
the address field and you can cycle through the alternatives using @key{TAB}.
2012-06-26 21:47:25 +02:00
2012-09-29 12:30:49 +02:00
@subsection Limiting the number of addresses
2012-06-20 10:29:57 +02:00
If you have a lot of mail, especially from mailing lists and the like, there
2012-10-14 16:00:25 +02:00
can be a @emph{lot} of e-mail addresses, many of which may not be very useful
when auto-completing. For this reason, @t{mu4e} attempts to limit the number
of e-mail addresses in the completion pool by filtering out the ones that are
not likely to be relevant. The following variables are available for tuning
this:
2012-06-20 10:29:57 +02:00
@itemize
2012-10-14 16:00:25 +02:00
@item @code{mu4e-compose-complete-only-personal} - when set to @t{t},
2012-06-20 10:29:57 +02:00
only consider addresses that were seen in @emph{personal} messages -- that is,
messages in which one of my e-mail addresses was seen in one of the address
fields. This is to exclude mailing list posts. You can define what is
considered 'my e-mail address' using @code{mu4e-user-mail-address-list}, a
list of e-mail address (defaults to @code{user-mail-address}, and when
indexing from the command line, the @t{--my-address} parameter for @t{mu
index}.
2012-10-14 16:00:25 +02:00
@item @code{mu4e-compose-complete-only-after} - only consider e-mail
2012-10-11 16:50:32 +02:00
addresses last seen after some date. Parameter is a string, parseable by
@code{org-parse-time-string}. This excludes old e-mail addresses. The default
2012-10-14 16:00:25 +02:00
is @t{"2010-01-01"}, i.e., only consider e-mail addresses seen since the start
2012-10-11 16:50:32 +02:00
of 2010.
2012-10-14 16:00:25 +02:00
@item @code{mu4e-compose-complete-ignore-address-regexp} - a regular expression to
2012-10-11 16:50:32 +02:00
filter out other 'junk' e-mail addresses; defaults to ``@t{no-?reply}''.
2012-06-20 10:29:57 +02:00
@end itemize
2012-09-29 12:30:49 +02:00
@node Compose hooks
@section Compose hooks
2012-10-14 16:00:25 +02:00
If you want to change some setting, or execute some custom action before
message composition starts, you can define a @emph{hook function}. @t{mu4e}
offers two hooks:
@itemize
2012-10-14 16:00:25 +02:00
@item @code{mu4e-compose-pre-hook}: this hook is run @emph{before} composition
starts; if you are composing a @emph{reply}, @emph{forward} a message, or
@emph{edit} an existing message, the variable
2012-10-14 16:00:25 +02:00
@code{mu4e-compose-parent-message} points to the message being replied to,
forwarded or edited, and you can use @code{mu4e-message-field} to get the
value of various properties (and see @ref{Message functions}).
@item @code{mu4e-compose-mode-hook}: this hook is run just before composition
starts, when the whole buffer has already been set up. This is a good place
2012-10-14 16:00:25 +02:00
for editing-related settings. @code{mu4e-compose-parent-message} (see above)
is also at your disposal.
@end itemize
@noindent
2012-10-22 19:27:49 +02:00
Let's look at some examples. First, suppose we want to set the
2012-10-14 16:00:25 +02:00
@t{From:}-address for a reply message based on the receiver of the original:
@lisp
2012-09-29 12:30:49 +02:00
;; 1) messages to me@@foo.com should be replied with From:me@@foo.com
;; 2) messages to me@@bar.com should be replied with From:me@@bar.com
;; 3) all other mail should use From:me@@cuux.com
(add-hook 'mu4e-compose-pre-hook
(defun my-set-from-address ()
"Set the From address based on the To address of the original."
(let ((msg mu4e-compose-parent-message)) ;; msg is shorter...
2014-01-25 01:48:32 +01:00
(when msg
(setq user-mail-address
(cond
((mu4e-message-contact-field-matches msg :to "me@@foo.com")
"me@@foo.com")
((mu4e-message-contact-field-matches msg :to "me@@bar.com")
"me@@bar.com")
(t "me@@cuux.com")))))))
@end lisp
2012-10-14 16:00:25 +02:00
Second, as mentioned, @code{mu4e-compose-mode-hook} is especially useful for
editing-related settings. For example:
@lisp
(add-hook 'mu4e-compose-mode-hook
(defun my-do-compose-stuff ()
"My settings for message composition."
(set-fill-column 72)
(flyspell-mode)))
@end lisp
This hook is also useful for adding headers or changing headers, since the
message is fully formed when this hook runs. For example, to add a
2012-10-14 16:00:25 +02:00
@t{Bcc:}-header, you could add something like the following, using
@code{message-add-header} from @code{message-mode}.
@lisp
(add-hook 'mu4e-compose-mode-hook
(defun my-add-bcc ()
"Add a Bcc: header."
(save-excursion (message-add-header "Bcc: me@@example.com\n"))))
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
For a more general discussion about extending @t{mu4e}, see @ref{Extending
mu4e}.
2012-09-29 12:30:49 +02:00
@node Signing and encrypting
@section Signing and encrypting
2012-09-13 20:12:38 +02:00
2012-09-30 19:12:07 +02:00
Signing and encrypting of messages is possible using @t{emacs-mime}
2012-10-11 16:50:32 +02:00
(@inforef{Composing,,emacs-mime}), most easily accessed through the
2012-10-14 16:00:25 +02:00
@t{Attachments}-menu while composing a message, or with @kbd{M-x
mml-secure-message-encrypt-pgp}, @kbd{M-x mml-secure-message-sign-pgp}.
2012-09-13 20:12:38 +02:00
The support for encryption and signing is @emph{independent} of the support
2012-09-30 19:12:07 +02:00
for their counterparts, decrypting and signature verification (as discussed in
2013-08-24 10:17:00 +02:00
@ref{MSGV Crypto}). Even if your @t{mu4e} does not have support for the latter
2012-09-30 19:12:07 +02:00
two, you can still sign/encrypt messages.
2012-09-13 20:12:38 +02:00
2012-09-30 19:12:07 +02:00
Currently, decryption and signature verification only works for PGP/MIME;
inline-PGP and S/MIME are not supported.
2012-09-13 20:12:38 +02:00
2014-10-19 11:04:11 +02:00
Important note: the messages are encrypted when they are @emph{sent}:
this means that draft messages are @emph{not} encrypted. So if you are
2014-11-27 00:08:54 +01:00
using e.g. @t{offlineimap} or @t{mbsync} to synchronize with some remote
IMAP-service, make sure the drafts folder is @emph{not} in the set of
synchronized folders, for obvious reasons.
2014-10-19 11:04:11 +02:00
2012-09-29 12:30:49 +02:00
@node Queuing mail
@section Queuing mail
2012-04-24 21:37:50 +02:00
2012-10-14 16:00:25 +02:00
If you cannot send mail right now, for example because you are currently
2012-04-24 21:37:50 +02:00
offline, you can @emph{queue} the mail, and send it when you have restored
2012-10-14 16:00:25 +02:00
your internet connection. You can control this from the @ref{Main view}.
2012-04-24 21:37:50 +02:00
2012-10-11 16:50:32 +02:00
To allow for queuing, you need to tell @t{smtpmail} where you want to store
the queued messages. For example:
2012-04-24 21:37:50 +02:00
@lisp
(setq smtpmail-queue-mail t ;; start in queuing mode
2012-04-24 21:37:50 +02:00
smtpmail-queue-dir "~/Maildir/queue/cur")
@end lisp
2012-09-29 13:24:58 +02:00
For convenience, we put the queue directory somewhere in our normal
2012-04-24 21:37:50 +02:00
maildir. If you want to use queued mail, you should create this directory
before starting @t{mu4e}. The @command{mu mkdir} command may be useful here,
so for example:
@verbatim
$ mu mkdir ~/Maildir/queue
$ touch ~/Maildir/queue/.noindex
@end verbatim
The file created by the @command{touch} command tells @t{mu} to ignore this
directory for indexing, which makes sense since it contains @t{smtpmail}
2013-08-24 10:17:00 +02:00
meta-data rather than normal messages; see the @t{mu-mkdir} and @t{mu-index}
man-pages for details.
2012-04-24 21:37:50 +02:00
2012-10-14 16:00:25 +02:00
@emph{Warning}: when you switch on queued-mode, your messages @emph{won't}
reach their destination until you switch it off again; so, be careful not to
do this accidentally!
@node Message signatures
@section Message signatures
Message signatures are the standard footer blobs in e-mail messages where you
can put in information you want to include in every message. The text to
include is set with @code{mu4e-compose-signature}.
If you don't want to include this automatically with each message,
you can set @code{mu4e-compose-signature-auto-include} to @code{nil}; you can
then still include the signature manually, using the function
@code{message-insert-signature}, typically bound to @kbd{C-c C-w}.
2012-10-14 16:00:25 +02:00
@node Other settings
@section Other settings
@itemize
@item If you want use @t{mu4e} as @command{emacs}' default program for sending mail,
see @ref{Setting the default emacs mail program}.
2012-10-14 16:00:25 +02:00
@item Normally, @t{mu4e} @emph{buries} the message buffer after sending; if you want
to kill the buffer instead, add something like the following to your
configuration:
@lisp
(setq message-kill-buffer-on-exit t)
@end lisp
@item If you want to exclude your own e-mail address when ``replying to
all'', set @code{mu4e-compose-dont-reply-to-self} to @code{t}. In order
for this to work properly you need to properly set the
@code{user-mail-address} variable or in the case you use multiple e-mail
addresses you need to set the @code{mu4e-user-mail-address-list}
variable accordingly.
2012-10-14 16:00:25 +02:00
@end itemize
2012-04-24 21:37:50 +02:00
@node Searching
@chapter Searching
2011-12-19 08:07:03 +01:00
2012-10-14 16:00:25 +02:00
@t{mu4e} is fully search-based: even if you 'jump to a folder', you are
executing a query for messages that happen to have the property of being in a
certain folder (maildir).
Normally, queries return up to @code{mu4e-headers-results-limit} (default:
2012-10-14 16:00:25 +02:00
500) results. That is usually more than enough, and makes things significantly
faster. Sometimes, however, you may want to show @emph{all} results; you can
enable this with @kbd{M-x mu4e-headers-toggle-full-search}, or by customizing
the variable @code{mu4e-headers-full-search}. This applies to all search
commands.
2012-06-10 15:14:35 +02:00
You can also influence the sort order and whether threads are shown or not;
see @ref{Sort order and threading}.
2012-06-10 10:44:31 +02:00
2011-12-19 08:07:03 +01:00
@menu
2013-09-24 21:20:25 +02:00
* Queries:: Searching for messages.
* Bookmarks:: Remembering queries.
* Maildir searches:: Queries for maildirs.
* Other search functionality:: Some more tricks.
2011-12-19 08:07:03 +01:00
@end menu
@node Queries
@section Queries
2012-10-07 15:54:24 +02:00
@t{mu4e} queries are the same as the ones that @t{mu find}
2012-10-03 20:54:34 +02:00
understands@footnote{with the caveat that command-line queries are subject to
2012-10-14 16:00:25 +02:00
the shell's interpretation before @t{mu} sees them}. Let's look at some
examples here, please refer to the @code{mu-find} and @code{mu-easy} man pages
for details and more examples.
@itemize
@item Get all messages regarding @emph{bananas}:
@verbatim
bananas
@end verbatim
@item Get all messages regarding @emph{bananas} from @emph{John} with an attachment:
@verbatim
from:john flag:attach bananas
@end verbatim
@item Get all messages with subject @emph{wombat} in June 2009
@verbatim
subject:wombat date:20090601..20090630
@end verbatim
@item Get all messages with PDF attachments in the @t{/projects} folder
@verbatim
maildir:/projects mime:application/pdf
@end verbatim
@item Get all messages about @emph{Rupert} in the @t{/Sent Items} folder. Note that
maildirs with spaces must be quoted.
@verbatim
maildir:"/Sent Items" rupert
@end verbatim
@item Get all important messages which are signed:
@verbatim
flag:signed prio:high
@end verbatim
@item Get all messages from @emph{Jim} without an attachment:
@verbatim
from:jim AND NOT flag:attach
@end verbatim
@item Get all messages with Alice in one of the contacts-fields (@t{to}, @t{from},
@t{cc}, @t{bcc}):
@verbatim
contact:alice
@end verbatim
@item Get all unread messages where the subject mentions Ångström: (search is
case-insensitive and accent-insensitive, so this matches Ångström, angstrom,
aNGstrøM, ...)
@verbatim
subject:Ångström flag:unread
@end verbatim
@item Get all unread messages between Mar-2002 and Aug-2003 about some bird:
@verbatim
date:20020301..20030831 nightingale flag:unread
@end verbatim
@item Get today's messages:
@verbatim
date:today..now
@end verbatim
or, unless you have a really old Xapian
@verbatim
date:today
@end verbatim
@item Get all messages we got in the last two weeks regarding @emph{emacs}:
@verbatim
date:2w..now emacs
@end verbatim
or, unless you have a really old Xapian
@verbatim
date:2w.. emacs
@end verbatim
2013-07-06 09:47:15 +02:00
@item Get messages from the @emph{Mu} mailing list:
@verbatim
list:mu-discuss.googlegroups.com
@end verbatim
2014-09-01 00:26:31 +02:00
Note - in the @ref{Headers view} you may see the 'friendly name' for a
list; however, when searching you need the real name. You can see the
real name for a mailing list from the friendly name's tool-tip.
2013-03-17 18:43:12 +01:00
2013-07-06 09:47:15 +02:00
@item Get messages with a subject soccer, Socrates, society, ...; note that the '*'-wildcard can only appear as a term's rightmost character:
@verbatim
subject:soc*
@end verbatim
2012-10-07 15:54:24 +02:00
2013-07-03 22:09:27 +02:00
@item Get all messages @emph{not} sent to a mailing-list:
@verbatim
NOT flag:list
@end verbatim
@item Get all mails with attachments with filenames starting with @emph{pic}; note
that the '*' wildcard can only appear as the term's rightmost character:
@verbatim
file:pic*
@end verbatim
@item Get all messages with PDF-attachments:
@verbatim
mime:application/pdf
@end verbatim
Get all messages with image attachments, and note that the '*' wildcard can
only appear as the term's rightmost character:
@verbatim
2012-02-05 09:56:37 +01:00
mime:image/*
@end verbatim
@end itemize
2011-12-19 08:07:03 +01:00
@node Bookmarks
@section Bookmarks
If you have queries that you use often, you may want to store them as
2012-10-14 16:00:25 +02:00
@emph{bookmarks}. Bookmark searches are available in the main view @ref{Main
view}, header view @xref{Headers view}, and message view @xref{Message view},
using (by default) the key @key{b} (@kbd{M-x mu4e-search-bookmark}), or
@key{B} (@kbd{M-x mu4e-search-bookmark-edit}) which lets you edit the bookmark
first.
@subsection Setting up bookmarks
2012-10-14 16:00:25 +02:00
@t{mu4e} provides a number of default bookmarks. Their definition is
instructive:
2012-02-05 09:56:37 +01:00
@lisp
(defvar mu4e-bookmarks
'( ("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
("date:today..now" "Today's messages" ?t)
("date:7d..now" "Last 7 days" ?w)
("mime:image/*" "Messages with images" ?p))
2012-09-30 19:12:07 +02:00
"A list of pre-defined queries; these show up in the main
screen. Each of the list elements is a three-element list of the
form (QUERY DESCRIPTION KEY), where QUERY is a string with a mu
2012-10-03 11:53:24 +02:00
query, DESCRIPTION is a short description of the query (this
2012-09-30 19:12:07 +02:00
shows up in the UI), and KEY is a shortcut key for the query.")
2012-02-05 09:56:37 +01:00
@end lisp
2012-10-14 16:00:25 +02:00
You can replace these or add your own items, by putting in your
configuration (@file{~/.emacs}) something like:
2012-02-05 09:56:37 +01:00
@lisp
(add-to-list 'mu4e-bookmarks
'("size:5M..500M" "Big messages" ?b))
2012-02-05 09:56:37 +01:00
@end lisp
This prepends your bookmark to the list, and assigns the key @key{b} to it. If
you want to @emph{append} your bookmark, you can use @code{t} as the third
argument to @code{add-to-list}.
2012-09-30 19:12:07 +02:00
In the various @t{mu4e} views, pressing @key{b} lists all the bookmarks
2012-02-05 09:56:37 +01:00
defined in the echo area, with the shortcut key highlighted. So, to invoke the
bookmark we just defined (to get the list of "Big Messages"), all you need to
2012-10-11 16:50:32 +02:00
type is @kbd{bb}.
@subsection Lisp expressions as bookmarks
Instead of using strings, it is also possible to use Lisp expressions as
bookmarks. The only requirement is that they evaluate to a query string.
For example, to get all the messages that are at least a week old in
your inbox:
@lisp
(add-to-list 'mu4e-bookmarks '(
(concat "maildir:/inbox date:.."
(format-time-string "%Y%m%d"
(subtract-time (current-time) (days-to-time 7))))
"Messages older than a week" ?O) t)
@end lisp
@subsection Editing bookmarks before searching
2012-10-14 16:00:25 +02:00
There is also @kbd{M-x mu4e-headers-search-bookmark-edit} (key @key{B}), which
lets you edit the bookmarked query before invoking it. This can be useful if
you have many similar queries, but need to change some parameter. For example,
you could have a bookmark @samp{"date:today..now AND "}@footnote{Not a valid
search query by itself}, which limits any result to today's messages.
2011-12-19 08:07:03 +01:00
@node Maildir searches
@section Maildir searches
Maildir searches are quite similar to bookmark searches (see @ref{Bookmarks}),
with the difference being that the target is always a maildir -- maildir
queries provide a 'traditional' folder-like interface to a search-based e-mail
2012-02-06 18:48:33 +01:00
client. By default, maildir searches are available in the @ref{Main view},
@ref{Headers view}, and @ref{Message view}, with the key @key{j}
(@code{mu4e-jump-to-maildir}).
@subsection Setting up maildir shortcuts
You can search for maildirs like can for any other message property
2012-10-14 16:00:25 +02:00
(e.g. with a query like @t{maildir:/myfolder}), but since it is so common,
@t{mu4e} offers a shortcut for this.
2012-10-14 16:00:25 +02:00
For this to work, you need to set the variable @code{mu4e-maildir-shortcuts}
to the list of maildirs you want to have quick access to, for example:
2012-02-06 18:48:33 +01:00
@lisp
(setq mu4e-maildir-shortcuts
'( ("/inbox" . ?i)
("/archive" . ?a)
("/lists" . ?l)
("/work" . ?w)
("/sent" . ?s)))
2012-02-06 18:48:33 +01:00
@end lisp
2012-10-14 16:00:25 +02:00
This sets @key{i} as a shortcut for the @t{/inbox} folder -- effectively a
query @t{maildir:/inbox}. There is a special shortcut @key{o} or @key{/} for
@emph{other} (so don't use those for your own shortcuts!), which allows you to
choose from @emph{all} maildirs that you have. There is support for
autocompletion; note that the list of maildirs is determined when @t{mu4e}
starts; if there are changes in the maildirs while @t{mu4e} is running, you
need to restart @t{mu4e}.
Each of the folder names is relative to your top-level maildir directory; so
if you keep your mail in @file{~/Maildir}, @file{/inbox} would refer to
@file{~/Maildir/inbox}. With these shortcuts, you can jump around your
maildirs (folders) very quickly - for example, getting to the @t{/lists}
folder only requires you to type @kbd{jl}, then change to @t{/work} with
@kbd{jw}.
While in queries you need to quote folder names (maildirs) with spaces in
them, you should @emph{not} quote them when used in
@code{mu4e-maildir-shortcuts}, since @t{mu4e} does that automatically for you.
2012-10-14 16:00:25 +02:00
The very same shortcuts are used by @kbd{M-x mu4e-mark-for-move} (default
2015-05-27 20:49:18 +02:00
shortcut @key{m}); so, for example, if you want to move a message to the
2012-10-11 16:50:32 +02:00
@t{/archive} folder, you can do so by typing @kbd{ma}.
2011-12-19 08:07:03 +01:00
@node Other search functionality
@section Other search functionality
@subsection Navigating through search queries
You can navigate through previous/next queries using
@code{mu4e-headers-query-prev} and @code{mu4e-headers-query-next}, which are
2012-10-14 16:00:25 +02:00
bound to @key{M-left} and @key{M-right}, similar to what some web browsers do.
2012-10-14 16:00:25 +02:00
@t{mu4e} tries to be smart and not record duplicate queries. Also, the number
of queries remembered has a fixed limit, so @t{mu4e} won't use too much
memory, even if used for a long time. However, if you want to forget
previous/next queries, you can use @kbd{M-x mu4e-headers-forget-queries}.
@subsection Narrowing search results
2012-10-14 16:00:25 +02:00
It can be useful to narrow existing search results, that is, to add some
clauses to the current query to match fewer messages.
For example, suppose you're looking at some mailing list, perhaps by
2012-10-14 16:00:25 +02:00
jumping to a maildir (@kbd{M-x mu4e-headers-jump-to-maildir}, @key{j}) or
because you followed some bookmark (@kbd{M-x mu4e-headers-search-bookmark},
@key{b}). Now, you want to narrow things down to only those messages that have
attachments.
2012-10-14 16:00:25 +02:00
This is when @kbd{M-x mu4e-headers-search-narrow} (@key{/}) comes in handy. It
2012-09-30 19:12:07 +02:00
asks for an additional search pattern, which is appended to the current search
query, in effect getting you the subset of the currently shown headers that
also match this extra search pattern. @key{\} takes you back to the previous
2012-10-14 16:00:25 +02:00
query, so, effectively 'widens' the search. Technically, narrowing the results
of query @t{x} with expression @t{y} implies doing a search @t{(x) AND y}.
Note, messages that were not in your in your original search results because
of @code{mu4e-headers-results-limit}, may show up in the narrowed query.
@subsection Including related messages
@anchor{Including related messages}
It can be useful to not only show the messages that directly match a certain
query, but also include messages that are related to these messages. That is,
messages that belong to the same discussion threads are included in the
results, just like e.g. Gmail does it. You can enable this behavior by setting
@code{mu4e-headers-include-related} to @code{t}, and you can toggle between
including/not-including with @key{W}.
Be careful though when e.g. deleting ranges of messages from a certain folder
-- the list may now also include messages from @emph{other} folders.
@subsection Skipping duplicates
@anchor{Skipping duplicates}
2013-05-13 22:02:03 +02:00
Another useful feature is skipping of @emph{duplicate messages}. When you have
copies of messages, there's usually little value in including more than one in
search results. A common reason for having multiple copies of messages is the
combination of Gmail and @t{offlineimap}, since that is the way the labels /
virtual folders in Gmail are represented. You can enable skipping duplicates
by setting @code{mu4e-headers-skip-duplicates} to @code{t}, and you can toggle
between the skipping/not skipping with @key{V}.
Note, messages are considered duplicates when they have the same
@t{Message-Id}.
@node Marking
@chapter Marking
2012-10-14 16:00:25 +02:00
In @t{mu4e}, the common way to do things with messages is a two-step process -
first you @emph{mark} them for a certain action, then you @emph{execute}
2012-10-14 16:00:25 +02:00
(@key{x}) those marks. This is similar to the way @t{dired} operates. Marking
can happen in both the @ref{Headers view} and the @ref{Message view}.
@menu
* Selecting messages for marking::
* What to mark for::
* Executing the marks::
* Leaving the headers buffer::
2012-09-30 19:12:07 +02:00
* Built-in marking functions::
* Custom mark functions::
2014-12-01 22:21:10 +01:00
* Adding a new kind of mark::
@end menu
@node Selecting messages for marking
@section Selecting messages for marking
2012-10-14 16:00:25 +02:00
There are multiple ways to mark messages:
@itemize
@item @emph{message at point}: you can put a mark on the message-at-point in
either the @ref{Headers view} or @ref{Message view}
@item @emph{region}: you can put a mark on all messages in the current region
(selection) in the @ref{Headers view}
2012-10-14 16:00:25 +02:00
@item @emph{pattern}: you can put a mark on all messages in the @ref{Headers
view} matching a certain pattern with @kbd{M-x mu4e-headers-mark-pattern}
(@key{%})
2012-10-14 16:00:25 +02:00
@item @emph{thread/subthread}: You can put a mark on all the messages in the
thread/subthread at point with @kbd{M-x mu4e-headers-mark-thread} and @kbd{M-x
mu4e-headers-mark-subthread}, respectively
@end itemize
@node What to mark for
@section What to mark for
@t{mu4e} supports a number of marks:
2012-10-11 16:50:32 +02:00
@cartouche
@verbatim
mark for/as | keybinding | description
--------------+-------------+------------------------------
'something' | *, <insert> | mark now, decide later
delete | D, <delete> | delete
flag | + | mark as 'flagged' ('starred')
move | m | move to some maildir
read | ! | mark as read
refile | r | mark for refiling
trash | d | move to the trash folder
2013-07-03 22:09:27 +02:00
untrash | = | remove 'trash' flag
unflag | - | remove 'flagged' mark
unmark | u | remove mark at point
unmark all | U | remove all marks
unread | ? | marks as unread
action | a | apply some action
@end verbatim
2012-10-11 16:50:32 +02:00
@end cartouche
After marking a message, the left-most columns in the headers view indicate
the kind of mark. This is informative, but if you mark many (say, thousands)
messages, this slows things down significantly@footnote{this uses an
@command{emacs} feature called @emph{overlays}, which are slow when used a lot
in a buffer}. For this reason, you can disable this by setting
@code{mu4e-headers-show-target} to @code{nil}.
@t{something} is a special kind of mark; you can use it to mark messages
for 'something', and then decide later what the 'something' should
be@footnote{This kind of 'deferred marking' is similar to the facility
in @t{dired}, @t{midnight commander}
(@url{http://www.midnight-commander.org/}) and the like, and uses the
same key binding (@key{insert}).} Later, you can set the actual mark
using @kbd{M-x mu4e-mark-resolve-deferred-marks}
(@key{#}). Alternatively, @t{mu4e} will ask you when you try to execute
the marks (@key{x}).
@node Executing the marks
@section Executing the marks
After you have marked some messages, you can execute them with @key{x}
2012-10-14 16:00:25 +02:00
(@kbd{M-x mu4e-mark-execute-all}).
@node Leaving the headers buffer
@section Leaving the headers buffer
2012-10-14 16:00:25 +02:00
When you quit or update a headers buffer that has marked messages (for
example, by doing a new search), @t{mu4e} asks you what to do with them,
depending on the value of the variable @code{mu4e-headers-leave-behavior} --
see its documentation.
2012-09-30 19:12:07 +02:00
@node Built-in marking functions
@section Built-in marking functions
Some examples of @t{mu4e}'s built-in marking functions.
@itemize
@item @emph{Mark the message at point for trashing}: press @key{d}
2012-10-14 16:00:25 +02:00
@item @emph{Mark all messages in the buffer as unread}: press @kbd{C-x h o}
@item @emph{Delete the messages in the current thread}: press @kbd{T D}
2012-09-30 19:12:07 +02:00
@item @emph{Mark messages with a subject matching ``hello'' for flagging}:
2012-10-14 16:00:25 +02:00
press @kbd{% s hello RET}.
2012-09-30 19:12:07 +02:00
@end itemize
@node Custom mark functions
@section Custom mark functions
Sometimes, the built-in functions to mark messages may not be sufficient for
your needs. For this, @t{mu4e} offers an easy way to define your own custom
2012-10-14 16:00:25 +02:00
mark functions. You can choose one of the custom marker functions by pressing
@key{&} in the @ref{Headers view} and @ref{Message view}.
2012-10-14 16:00:25 +02:00
Custom mark functions are to be appended to the list
@code{mu4e-headers-custom-markers}. Each of the elements of this list
2012-10-11 16:50:32 +02:00
('markers') is a list with two or three elements:
2012-10-14 16:00:25 +02:00
@enumerate
2012-09-30 19:12:07 +02:00
@item The name of the marker - a short string describing this marker. The
first character of this string determines its shortcut, so these should be
unique. If necessary, simply prefix the name with a unique character.
@item a predicate function, taking two arguments @var{msg} and @var{param}.
@var{msg} is the message plist (see @ref{Message functions}) and @var{param} is
2012-10-16 20:43:49 +02:00
a parameter provided by the third of the marker elements (see the next
item). The predicate function should return non-@t{nil} if the message
matches.
2012-09-30 19:12:07 +02:00
@item (optionally) a function that is evaluated once, and the result is passed as a
parameter to the predicate function. This is useful when user-input is needed.
2012-10-14 16:00:25 +02:00
@end enumerate
2012-10-14 16:00:25 +02:00
Let's look at an example: suppose we want to match all messages that have more
than @emph{n} recipients -- we could do this with the following recipe:
@lisp
(add-to-list 'mu4e-headers-custom-markers
'("More than n recipients"
2012-09-30 19:12:07 +02:00
(lambda (msg n)
(> (+ (length (mu4e-message-field msg :to))
(length (mu4e-message-field msg :cc))) n))
2012-09-29 12:30:49 +02:00
(lambda ()
(read-number "Match messages with more recipients than: "))) t)
@end lisp
After evaluating this expression, you can use it by pressing @key{&} in
the headers buffer to select a custom marker function, and then @key{M}
to choose this particular one (@t{M} because it is the first character
of the description).
As you can see, it's not very hard to define simple functions to match
2012-10-07 15:54:24 +02:00
messages. There are more examples in the defaults for
2012-10-14 16:00:25 +02:00
@code{mu4e-headers-custom-markers}; see @file{mu4e-headers.el} and see
2012-10-07 15:54:24 +02:00
@ref{Extending mu4e} for general information about writing your own functions.
2014-12-01 22:21:10 +01:00
@node Adding a new kind of mark
@section Adding a new kind of mark
It is possible to configure new marks. To do so one can add entries
in the list @code{mu4e-marks}. Such an element must have the following form:
@lisp
(SYMBOL
:char STRING
:prompt STRING
:ask-target (lambda () TARGET)
:dyn-target (lambda (TARGET MSG) DYN-TARGET)
:show-target (lambda (DYN-TARGET) STRING)
:action (lambda (DOCID MSG DYN-TARGET) nil))
@end lisp
The symbol can be any symbol, except for 'unmark and 'something, which
are reserved. The rest is a plist with the following
elements:
@itemize
@item @code{:char} -- the character to display in the headers view.
@item @code{:prompt} -- the prompt to use when asking for marks (used for example when marking a whole thread).
@item @code{:ask-target} -- a function run once per bulk-operation, and thus suitable for
querying the user about a target for move-like marks. If nil, the
TARGET passed to @code{:dyn-target} is nil.
@item @code{:dyn-target} -- a function run once per message
(The message is passed as MSG to the function). This function allows
to compute a per-message target, for refile-like marks. If nil, the
DYN-TARGET passed to the @code{:action} is the TARGET obtained as above.
@item @code{:show-target} -- how to display the target in the headers view.
If @code{:show-target} is nil the DYN-TARGET is shown (and DYN-TARGET must be
a string).
@item @code{:action} -- the action to apply on the message when the mark is executed.
@end itemize
As an example, suppose we would like to add a mark for tagging
messages (gmail-style), then we can run the following code (after
loading mu4e):
@lisp
(add-to-list 'mu4e-marks
'(tag
:char "g"
:prompt "gtag"
:ask-target (lambda () (read-string "What tag do you want to add?"))
:action (lambda (docid msg target)
(mu4e-action-retag-message msg (concat "+" target)))))
@end lisp
As another example, suppose we would like to ``archive and mark read''
a message (gmail-style), then we can run the following code (after
loading mu4e):
@lisp
(add-to-list 'mu4e-marks
'(archive
:char "A"
:prompt "Archive"
:show-target (lambda (target) "archive")
:action (lambda (docid msg target)
;; must come before proc-move since retag runs
;; 'sed' on the file
(mu4e-action-retag-message msg "-\\Inbox")
(mu4e~proc-move docid nil "+S-u-N"))))
@end lisp
2014-12-01 22:21:10 +01:00
Adding to @code{mu4e-marks} list allows to use the mark in bulk operations
(for example when tagging a whole thread), but does not bind the mark
to a key to use at the top-level. This must be done separately. In our
example:
@lisp
(mu4e~headers-defun-mark-for tag)
(mu4e~headers-defun-mark-for archive)
2014-12-01 22:21:10 +01:00
(define-key mu4e-headers-mode-map (kbd "g") 'mu4e-headers-mark-for-tag)
(define-key mu4e-headers-mode-map (kbd "A") 'mu4e-headers-mark-for-archive)
2014-12-01 22:21:10 +01:00
@end lisp
@node Dynamic folders
@chapter Dynamic folders
2012-10-14 16:00:25 +02:00
In @ref{Folders}, we explained how you can set up @t{mu4e}'s special folders:
@lisp
2012-10-07 15:54:24 +02:00
(setq
mu4e-sent-folder "/sent" ;; sent messages
mu4e-drafts-folder "/drafts" ;; unfinished messages
mu4e-trash-folder "/trash" ;; trashed messages
mu4e-refile-folder "/archive") ;; saved messages
@end lisp
2012-10-14 16:00:25 +02:00
In some cases, having such static folders may not suffice - perhaps you want
to change the folders depending on the context. For example, the folder for
refiling could vary, based on the sender of the message.
2012-09-30 19:12:07 +02:00
2012-10-14 16:00:25 +02:00
To make this possible, instead of setting the standard folders to a string,
you can set them to be a @emph{function} that takes a message as its
parameter, and returns the desired folder name. This chapter shows you how to
do that. For a more general discussion of how to extend @t{mu4e} and writing
your own functions, see @ref{Extending mu4e}.
2012-09-28 16:12:09 +02:00
@menu
2012-10-07 15:54:24 +02:00
* Smart refiling:: Automatically choose the target folder
2012-10-11 16:50:32 +02:00
* Other dynamic folders:: Flexible folders for sent, trash, drafts
2012-09-28 16:12:09 +02:00
@end menu
@node Smart refiling
@section Smart refiling
2012-10-14 16:00:25 +02:00
When refiling messages, perhaps to archive them, it can be useful to have
different target folders for different messages, based on some property of
those message -- smart refiling.
2012-09-28 16:12:09 +02:00
2012-10-14 16:00:25 +02:00
To accomplish this, we can set the refiling folder (@code{mu4e-refile-folder})
to a function that returns the actual refiling folder for the particular
message. An example should clarify this:
2012-09-28 16:12:09 +02:00
@lisp
(setq mu4e-refile-folder
(lambda (msg)
(cond
;; messages to the mu mailing list go to the /mu folder
2012-09-28 16:12:09 +02:00
((mu4e-message-contact-field-matches msg :to
2012-10-14 16:00:25 +02:00
"mu-discuss@@googlegroups.com")
2012-09-28 16:12:09 +02:00
"/mu")
;; messages sent directly to me go to /archive
;; also `mu4e-user-mail-address-p' can be used
2012-10-14 16:00:25 +02:00
((mu4e-message-contact-field-matches msg :to "me@@example.com")
"/private")
2012-09-28 16:12:09 +02:00
;; messages with football or soccer in the subject go to /football
((string-match "football\\|soccer"
2012-10-14 16:00:25 +02:00
(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
2012-09-28 16:12:09 +02:00
;; important to have a catch-all at the end!
(t "/archive"))))
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
This can be very powerful; you can select some messages in the headers view,
then press @key{r}, and have them all marked for refiling to their particular
folders.
2012-10-01 15:42:37 +02:00
2012-09-28 16:12:09 +02:00
Some notes:
@itemize
2012-10-14 16:00:25 +02:00
@item We set @code{mu4e-refile-folder} to an anonymous (@t{lambda}) function. This
function takes one argument, a message plist@footnote{a property list
describing a message}. The plist corresponds to the message at point. See
@ref{Message functions} for a discussion on how to deal with them.
@item In our function, we use a @t{cond} control structure; the function
returns the first of the clauses that matches. It's important to make the last
clause a catch-all, so we always return @emph{some} folder.
@item We use
2012-09-28 16:12:09 +02:00
the convenience function @code{mu4e-message-contact-field-matches}, which
2012-10-14 16:00:25 +02:00
evaluates to @code{t} if any of the names or e-mail addresses in a contact
field (in this case, the @t{To:}-field) matches the regular expression.
@end itemize
2012-09-28 16:12:09 +02:00
@node Other dynamic folders
@section Other dynamic folders
2012-10-14 16:00:25 +02:00
Using the same mechanism, you can create dynamic sent-, trash-, and
drafts-folders. The message-parameter you receive for the sent and drafts
folder is the @emph{original} message, that is, the message you reply to, or
forward, or edit. If there is no such message (for example when composing a
2012-10-07 15:54:24 +02:00
brand new message) the message parameter is @t{nil}.
2012-09-30 19:12:07 +02:00
2012-10-14 16:00:25 +02:00
Let's look at an example. Suppose you want a different trash folder for
work-email. You can achieve this with something like:
2012-09-30 19:12:07 +02:00
@lisp
2012-10-14 20:13:25 +02:00
(setq mu4e-trash-folder
2012-09-30 19:12:07 +02:00
(lambda (msg)
2012-10-14 16:00:25 +02:00
;; the 'and msg' is to handle the case where msg is nil
(if (and msg
2012-10-14 16:00:25 +02:00
(mu4e-message-contact-field-matches msg :to "me@@work.com"))
"/trash-work"
2012-10-01 20:18:59 +02:00
"/trash")))
2012-09-30 19:12:07 +02:00
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
2012-10-01 15:42:37 +02:00
Good to remember:
@itemize
2012-10-11 16:50:32 +02:00
@item The @var{msg} parameter you receive in the function refers to the
2012-10-01 15:42:37 +02:00
@emph{original message}, that is, the message being replied to or
forwarded. When re-editing a message, it refers to the message being
2012-10-11 16:50:32 +02:00
edited. When you compose a totally new message, the @var{msg} parameter is
2012-10-01 15:42:37 +02:00
@code{nil}.
2012-10-14 16:00:25 +02:00
@item When re-editing messages, the value of @code{mu4e-drafts-folder} is ignored.
2012-10-01 15:42:37 +02:00
@end itemize
@node Actions
@chapter Actions
2012-10-14 16:00:25 +02:00
@t{mu4e} lets you define custom actions for messages in the @ref{Headers view}
and for both messages and attachments in the @ref{Message view}. Custom
actions allow you to easily extend @t{mu4e} for specific needs -- for example,
marking messages as spam in a spam filter or applying an attachment with a
source code patch.
2012-10-14 16:00:25 +02:00
You can invoke the actions with key @key{a} for actions on messages, and key
@key{A} for actions on attachments.
2012-10-11 16:50:32 +02:00
For general information extending @t{mu4e} and writing your own functions, see
@ref{Extending mu4e}.
2012-10-07 15:54:24 +02:00
2012-09-29 12:30:49 +02:00
@menu
* Defining actions::
* Adding an action in the headers view::
* Adding an action in the message view::
* Adding an attachment action::
* More example actions::
@end menu
2012-09-29 12:30:49 +02:00
@node Defining actions
@section Defining actions
2012-10-14 16:00:25 +02:00
Defining a new custom action comes down to writing an elisp-function to do the
work. Functions that operate on messages receive a @var{msg} parameter, which
corresponds to the message at point. Something like:
@lisp
(defun my-action-func (msg)
2012-10-14 16:00:25 +02:00
"Describe my message function."
;; do stuff
)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
Messages that operate on attachments receive a @var{msg} parameter, which
corresponds to the message at point, and an @var{attachment-num}, which is the
number of the attachment as seen in the message view. An attachment function
looks like:
@lisp
(defun my-attachment-action-func (msg attachment-num)
2012-10-14 16:00:25 +02:00
"Describe my attachment function."
;; do stuff
)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
After you have defined your function, you can add it to the list of
actions@footnote{Instead of defining the functions separately, you can
obviously also add a @code{lambda}-function directly to the list; however,
separate functions are easier to change}, either @code{mu4e-headers-actions},
@code{mu4e-view-actions} or @code{mu4e-view-attachment-actions}. The
format@footnote{Note, the format of the actions has changed since version
0.9.8.4, and you must change your configuration to use the new format;
@t{mu4e} warns you when you are using the old format.} of each action is a
cons-cell, @code{(DESCRIPTION . VALUE)}; see below for some examples. If your
shortcut is not also the first character of the description, simply prefix the
description with that character.
2012-10-14 16:00:25 +02:00
Let's look at some examples.
2012-09-29 12:30:49 +02:00
@node Adding an action in the headers view
@section Adding an action in the headers view
2012-10-14 16:00:25 +02:00
Suppose we want to inspect the number of recipients for a message in the
@ref{Headers view}. We add the following to our configuration:
@lisp
(defun show-number-of-recipients (msg)
2012-10-14 16:00:25 +02:00
"Display the number of recipients for the message at point."
(message "Number of recipients: %d"
2012-09-28 16:12:09 +02:00
(+ (length (mu4e-message-field msg :to))
(length (mu4e-message-field msg :cc)))))
;; define 'N' (the first letter of the description) as the shortcut
2012-10-14 16:00:25 +02:00
;; the 't' argument to add-to-list puts it at the end of the list
(add-to-list 'mu4e-headers-actions
'("Number of recipients" . show-number-of-recipients) t)
@end lisp
2012-10-14 16:00:25 +02:00
After evaluating this, @kbd{a N} in the headers view shows the number of
recipients for the message at point.
2012-09-29 12:30:49 +02:00
@node Adding an action in the message view
@section Adding an action in the message view
As another example, suppose we would like to search for messages by the sender
2012-10-14 16:00:25 +02:00
of the message at point:
@lisp
(defun search-for-sender (msg)
2012-10-14 16:00:25 +02:00
"Search for messages sent by the sender of the message at point."
2012-09-28 16:12:09 +02:00
(mu4e-headers-search
(concat "from:" (cdar (mu4e-message-field msg :from)))))
;; define 'x' as the shortcut
(add-to-list 'mu4e-view-actions
'("xsearch for sender" . search-for-sender) t)
@end lisp
2012-10-14 16:00:25 +02:00
@indent
If you wonder why we use @code{cdar}, remember that the @t{From:}-field is a
list of @code{(NAME . EMAIL)} cells; thus, @code{cdar} gets us the e-mail
address of the first in the list. @t{From:}-fields rarely contain multiple
cells.
2012-09-29 12:30:49 +02:00
@node Adding an attachment action
@section Adding an attachment action
2012-10-14 16:00:25 +02:00
Finally, let's define an attachment action. As mentioned, attachment-action
functions receive @emph{2} arguments, the message and the attachment number to
use.
2012-10-14 16:00:25 +02:00
The following example action counts the number of lines in an attachment, and
defines @key{n} as its shortcut key (the @key{n} is prefixed to the
description).
@lisp
(defun count-lines-in-attachment (msg attachnum)
"Count the number of lines in an attachment."
(mu4e-view-pipe-attachment msg attachnum "wc -l"))
2012-10-14 16:00:25 +02:00
;; defining 'n' as the shortcut
(add-to-list 'mu4e-view-attachment-actions
'("ncount lines" . count-lines-in-attachment) t)
@end lisp
2012-09-29 12:30:49 +02:00
@node More example actions
@section More example actions
2012-10-14 16:00:25 +02:00
@t{mu4e} includes a number of example actions in the file
@file{mu4e-actions.el} in the source distribution (see @kbd{C-h f
mu4e-action-TAB}). For example, for viewing messages in an external web
browser, or listening to a message's body-text using text-to-speech.
2012-10-11 16:50:32 +02:00
@node Extending mu4e
@chapter Extending mu4e
@t{mu4e} is designed to be easily extendible - that is, write your own
emacs-lisp to make @t{mu4e} behave exactly as you want. Here, we provide some
guidelines for doing so.
2012-10-11 16:50:32 +02:00
@menu
* Extension points::
* Available functions::
* Message functions::
* Contact functions::
2012-10-11 16:50:32 +02:00
* Utility functions::
@end menu
@node Extension points
@section Extension points
There are a number of places where @t{mu4e} lets you plug in your own
functions:
@itemize
2014-09-02 05:13:00 +02:00
@item Custom functions for message headers in the message-view and
headers-view - see @ref{HV Custom headers}, @ref{MSGV Custom headers}
2012-10-11 16:50:32 +02:00
@item Using message-specific folders for drafts, trash, sent messages and
refiling, based on a function - see @ref{Dynamic folders}
@item Using an attachment-specific download-directory - see the
2012-10-14 16:00:25 +02:00
variable @code{mu4e-attachment-dir}.
@item Apply a function to a message in the headers view -
2012-10-11 16:50:32 +02:00
see @ref{Adding an action in the headers view}
2012-10-14 16:00:25 +02:00
@item Apply a function to a message in the message view - see @ref{Adding an
2012-10-11 16:50:32 +02:00
action in the message view}
@item Add a new kind of mark for use in the headers view
- see @ref{Adding a new kind of mark}
2015-05-27 20:49:18 +02:00
@item Apply a function to an attachment - see @ref{Adding an attachment
2012-10-11 16:50:32 +02:00
action}
@item Custom function to mark certain messages - see @ref{Custom mark functions}
2012-10-14 16:00:25 +02:00
@item Using various @emph{mode}-hooks, @code{mu4e-compose-pre-hook} (see
@ref{Compose hooks}), @code{mu4e-index-updated-hook} (see @ref{FAQ})
2012-10-11 16:50:32 +02:00
@end itemize
2012-10-14 16:00:25 +02:00
@noindent
You can also write your own functions without using the above. If you
want to do so, key useful functions are @code{mu4e-message-at-point}
(see below), @code{mu4e-headers-for-each} (to iterate over all
headers, see its docstring) and @code{mu4e-view-for-each-part} (to
iterate over all parts/attachments, see its docstring). There is also
@code{mu4e-view-for-each-uri} to iterate of all the URIs in the
current message.
Another useful function is
2014-11-27 00:08:54 +01:00
@code{mu4e-headers-find-if} which searches for a message matching a
certain pattern; again, see its docstring.
2012-10-11 16:50:32 +02:00
2015-03-21 15:11:11 +01:00
@node Available functions
@section Available functions
2012-10-14 16:00:25 +02:00
The whole of @t{mu4e} consists of hundreds of elisp functions. However, the
majority of those are for @emph{internal} use only; you can recognize them
easily, because they all start with @code{mu4e~}. These function make all
kinds of assumptions, and they are subject to change, and should therefore
@emph{not} be used. The same is true for @emph{variables} that start with
@code{mu4e~}; don't touch them. Let me repeat that:
2012-10-11 16:50:32 +02:00
@verbatim
2012-10-14 16:00:25 +02:00
Do not use mu4e~... functions or variables!
2012-10-11 16:50:32 +02:00
@end verbatim
2012-10-14 16:00:25 +02:00
@noindent
In addition, you should use functions in the right context; functions
that start with @t{mu4e-view-} are only applicable to the message view,
while functions starting with @t{mu4e-headers-} are only applicable to
the headers view. Functions without such prefixes are applicable
everywhere.
2012-10-11 16:50:32 +02:00
@node Message functions
@section Message functions
Many functions in @t{mu4e} deal with message plist (property
lists). They contain information about messages, such as sender and
recipient, subject, date and so on. To deal with these plists, there are
a number of @code{mu4e-message-} functions (in @file{mu4e-message.el}),
such as @code{mu4e-message-field} and @code{mu4e-message-at-point}, and
a shortcut to combine the two, @code{mu4e-message-field-at-point}.
2012-10-11 16:50:32 +02:00
2012-10-14 16:00:25 +02:00
For example, to get the subject of the message at point, in either the headers
view or the message view, you could write:
2012-10-11 16:50:32 +02:00
@lisp
(mu4e-message-field (mu4e-message-at-point) :subject)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
Note that:
2012-10-11 16:50:32 +02:00
@itemize
@item The contact fields (To, From, Cc, Bcc) are lists of cons-pairs
@code{(name . email)}; @code{name} may be @code{nil}. So, for example:
@lisp
(mu4e-message-field some-msg :to)
;; => (("Jack" . "jack@@example.com") (nil . "foo@@example.com"))
@end lisp
If you are only looking for a match in this list (e.g., ``Is Jack one of the
recipients of the message?''), there is a convenience function
@code{mu4e-message-contact-field-matches} to make this easy.
@item The message body is only available in the message view, not in the
headers view.
@end itemize
Note that the message-functions work available to @t{mu4e} -- the
headers that are stored in the database and, in
@code{mu4e-message-view}-context, the message body.
If you need access to other parts of the message, it is possible to do
so by hand, using the raw-message and some third-party tool like
@t{procmail}'s @t{formail}:
@lisp
(defun my-mu4e-any-message-field-at-point (hdr)
"Quick & dirty way to get an arbitrary header HDR at
point. Requires the 'formail' tool from procmail."
(replace-regexp-in-string "\n$" ""
(shell-command-to-string
(concat "formail -x " hdr " -c < "
(shell-quote-argument (mu4e-message-field-at-point :path))))))
@end lisp
@node Contact functions
@section Contact functions
It can be useful to rewrite the contact information that @t{mu4e}
provides, for example to convert them to some standardized format, or
to fix spelling errors.
You can do this by setting @code{mu4e-contact-rewrite-function} to
your function, for example:
@lisp
(defun my-rewrite-function (contact)
(let* ((name (plist-get contact :name))
(mail (plist-get contact :mail))
(actual-name
(cond
((string= name "jonh smiht") "John Smith")
;; other replacements
(t name))))
(list :name actual-name :mail mail)))
(setq mu4e-contact-rewrite-function 'my-rewrite-function)
@end lisp
This function is called for each of your contacts.
2012-10-11 16:50:32 +02:00
@node Utility functions
@section Utility functions
@file{mu4e-utils} contains a number of utility functions; we list a few here;
see their docstrings for the details:
@itemize
@item @code{mu4e-read-option}: read one option from a list. For example:
@lisp
2012-10-14 16:00:25 +02:00
(mu4e-read-option "Choose an animal: "
'(("Monkey" . monkey) ("Gnu" . gnu) ("xMoose" . moose)))
2012-10-11 16:50:32 +02:00
@end lisp
2012-10-14 16:00:25 +02:00
The user is presented with:
2012-10-11 16:50:32 +02:00
@example
Choose an animal: [M]onkey, [G]nu, [x]Moose
@end example
@item @code{mu4e-ask-maildir}: ask for a maildir; try one of the
2012-10-14 16:00:25 +02:00
shortcuts (@code{mu4e-maildir-shortcuts}), or the full set of available
2012-10-11 16:50:32 +02:00
maildirs.
@item @code{mu4e-running-p}: return @code{t} if the @t{mu4e} process is
running, @code{nil} otherwise.
@item @code{(mu4e-user-mail-address-p addr)}: return @code{t} if @var{addr} is
one of the user's e-mail addresses (as per @code{mu4e-user-mail-address-list}).
@item @code{mu4e-log} logs to the @t{mu4e} debugging log if it is enabled;
2012-10-14 16:00:25 +02:00
see @code{mu4e-toggle-logging}.
2012-10-11 16:50:32 +02:00
@item @code{mu4e-message}, @code{mu4e-warning}, @code{mu4e-error} are the
@t{mu4e} equivalents of the normal elisp @code{message},
2012-10-14 16:00:25 +02:00
@code{user-error}@footnote{@code{user-error} only appears in @command{emacs}
24.2 and later; in older versions it falls back to @code{error}} and
@code{error} functions.
2012-10-11 16:50:32 +02:00
@end itemize
@node Interaction with other tools
2012-10-03 20:54:34 +02:00
@appendix Interaction with other tools
2014-12-29 21:35:58 +01:00
In this chapter, we discuss some ways in ways in which @t{mu4e} can cooperate
with other tools.
@menu
* Setting the default emacs mail program::
* Creating org-mode links::
* Rich-text messages with org-mode::
* Maintaining an address-book with org-contacts::
2015-06-23 12:08:07 +02:00
* Maintaining an address-book with BBDB::
* Getting new mail notifications with Sauron::
* Speedbar support::
* Citations with mu-cite::
* Attaching files with dired::
@end menu
@node Setting the default emacs mail program
2012-10-14 16:00:25 +02:00
@section Setting the default @command{emacs} mail program
2012-10-14 16:00:25 +02:00
@command{emacs} allows you to select an e-mail program as the default program
it uses when you press @key{C-x m} (@code{compose-mail}), call
@code{report-emacs-bug} and so on. If you want to use @t{mu4e} for this, you
do so by adding the following to your configuration:
@lisp
(setq mail-user-agent 'mu4e-user-agent)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
At the present time, support is @emph{experimental}.
@node Creating org-mode links
2012-10-14 16:00:25 +02:00
@section Creating @t{org-mode} links
2012-02-05 09:56:37 +01:00
It can be useful to include links to e-mail messages or even search queries in
your org-mode files. @t{mu4e} supports this with the @t{org-mu4e} module; you
can set it up by adding it to your configuration:
2012-02-05 09:56:37 +01:00
@lisp
(require 'org-mu4e)
@end lisp
this expects org-mode 8.x. If you have an older version, you can try:
@lisp
(require 'org-old-mu4e)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
After this, you can use the normal @t{org-mode} mechanisms to store
links: @kbd{M-x org-store-link} stores a link to a particular message
when you are in @ref{Message view}. When you are in @ref{Headers view},
@kbd{M-x org-store-link} links to the @emph{query} if
@code{org-mu4e-link-query-in-headers-mode} is non-@code{nil}, and to the
particular message otherwise.
2012-10-14 16:00:25 +02:00
You can insert this link later with @kbd{M-x org-insert-link}. From
@t{org-mode}, you can go to the query or message the link points to with
either @kbd{M-x org-agenda-open-link} in agenda buffers, or @kbd{M-x
org-open-at-point} elsewhere - both typically bound to @kbd{C-c C-o}.
@node Rich-text messages with org-mode
@section Rich-text messages with @t{org-mode} (deprecated)
2015-11-12 11:42:51 +01:00
It is possible to write rich-text messages using @t{org-mode}; see
@url{http://orgmode.org/worg/org-contrib/org-mime.html}.
Note, some earlier versions of @t{mu4e} had more elaborate support for
editing e-mail messages using @t{org-mode}; since this never worked very
well, this has now been deprecated; it might be replaced with something
better in some future version.
2013-07-03 22:09:27 +02:00
@node Maintaining an address-book with org-contacts
@section Maintaining an address-book with org-contacts
2012-06-20 10:29:57 +02:00
Note, @t{mu4e} supports built-in address autocompletion; @ref{Address
2012-10-14 16:00:25 +02:00
autocompletion}, and that is the recommended way to do this. However, it is
also possible to manage your addresses with @t{org-mode}, using
@t{org-contacts}@footnote{@url{http://julien.danjou.info/software/org-contacts.el}}.
2012-02-05 09:56:37 +01:00
2012-10-14 16:00:25 +02:00
@t{mu4e-actions} defines a useful action (@ref{Actions}) for adding a contact
based on the @t{From:}-address in the message at point. To enable this, add to
your configuration something like:
@lisp
(setq mu4e-org-contacts-file <full-path-to-your-org-contacts-file>)
(add-to-list 'mu4e-headers-actions
'("org-contact-add" . mu4e-action-add-org-contact) t)
(add-to-list 'mu4e-view-actions
'("org-contact-add" . mu4e-action-add-org-contact) t)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
After this, you should be able to add contacts using @key{a o} in the headers
view and the message view, using the @t{org-capture} mechanism. Note, the
2012-10-14 16:00:25 +02:00
shortcut character @key{o} is due to the first character of
@t{org-contact-add}.
2015-06-23 12:08:07 +02:00
@node Maintaining an address-book with BBDB
@section Maintaining an address-book with BBDB
Note, @t{mu4e} supports built-in address autocompletion; @ref{Address
autocompletion}, and that is the recommended way to do this. However, it
is also possible to manage your addresses with the current (2015-06-23)
development release of @t{BBDB}, or releases of @t{BBDB} after
3.1.2.@footnote{@url{http://savannah.nongnu.org/projects/bbdb/}}.
To enable BBDB, add to your @file{~/.emacs} (or its moral equivalent,
such as @file{~/.emacs.d/init.el}) the following @emph{after} the
@code{(require 'mu4e)} line:
2015-06-23 12:08:07 +02:00
@lisp
;; Load BBDB (Method 1)
(require 'bbdb-loaddefs)
;; OR (Method 2)
;; (require 'bbdb-loaddefs "/path/to/bbdb/lisp/bbdb-loaddefs.el")
;; OR (Method 3)
;; (autoload 'bbdb-insinuate-mu4e "bbdb-mu4e")
;; (bbdb-initialize 'message 'mu4e)
(setq bbdb-mail-user-agent (quote message-user-agent))
(setq mu4e-view-mode-hook (quote (bbdb-mua-auto-update visual-line-mode)))
(setq mu4e-compose-complete-addresses nil)
(setq bbdb-mua-pop-up t)
(setq bbdb-mua-pop-up-window-size 5)
@end lisp
@noindent
After this, you should be able to:
@itemize
@item In mu4e-view mode, add the sender of the email to BBDB with @key{C-u :}
@item Tab-complete addresses from BBDB when composing emails
@item View the BBDB contact while viewing a message
@end itemize
@node Getting new mail notifications with Sauron
@section Getting new mail notifications with Sauron
2012-10-14 16:00:25 +02:00
The @command{emacs}-package @t{sauron}@footnote{Sauron can be found at
@url{https://github.com/djcb/sauron}, or in the Marmalade package-repository
at @url{http://http://marmalade-repo.org/}} (by the same author) can be used
to get notifications about new mails. If you run something like the below
script from your @t{crontab} (or have some other way of having it execute
every @emph{n} minutes), you receive notifications in the @t{sauron}-buffer
when new messages arrive.
@verbatim
#!/bin/sh
2015-01-01 14:45:11 +01:00
# the mu binary
MU=mu
# put the path to your Inbox folder here
CHECKDIR="/home/$LOGNAME/Maildir/Inbox"
sauron_msg () {
DBUS_COOKIE="/home/$LOGNAME/.sauron-dbus"
if test "x$DBUS_SESSION_BUS_ADDRESS" = "x"; then
if test -e $DBUS_COOKIE; then
export DBUS_SESSION_BUS_ADDRESS="`cat $DBUS_COOKIE`"
fi
fi
if test -n "x$DBUS_SESSION_BUS_ADDRESS"; then
dbus-send --session \
--dest="org.gnu.Emacs" \
--type=method_call \
"/org/gnu/Emacs/Sauron" \
"org.gnu.Emacs.Sauron.AddMsgEvent" \
string:shell uint32:3 string:"$1"
fi
}
2012-10-14 16:00:25 +02:00
#
# -mmin -5: consider only messages that were created / changed in the
# the last 5 minutes
#
for f in `find $CHECKDIR -mmin -5 -a -type f`; do
subject=`$MU view $f | grep '^Subject:' | sed 's/^Subject://'`
sauron_msg "mail: $subject"
done
@end verbatim
2012-10-14 16:00:25 +02:00
@noindent
You might want to put:
@lisp
(setq sauron-dbus-cookie t)
@end lisp
2012-10-14 16:00:25 +02:00
@noindent
in your setup, to allow the script to find the D-Bus session bus, even when
running outside its session.
@node Speedbar support
@section Speedbar support
2012-10-14 16:00:25 +02:00
@code{speedbar} is an @command{emacs}-extension that shows navigational information for
an @command{emacs} buffer in a separate frame. Using @code{mu4e-speedbar}, @t{mu4e}
2012-03-28 21:23:35 +02:00
lists your bookmarks and maildir folders and allows for one-click access to
them.
2012-03-28 21:23:35 +02:00
@t{mu4e} loads @t{mu4e-speedbar} automatically; all you need to do to activate
2012-10-14 16:00:25 +02:00
it is @kbd{M-x speedbar}. Then, when then switching to the @ref{Main view},
2012-09-30 19:12:07 +02:00
the speedbar-frame is updated with your bookmarks and maildirs. For speed
reasons, the list of maildirs is determined when @t{mu4e} starts; if the list
of maildirs changes while @t{mu4e} is running, you need to restart @t{mu4e} to
2012-09-30 19:12:07 +02:00
have those changes reflected in the speedbar and in other places that use this
list, such as auto-completion when jumping to a maildir.
2012-10-14 16:00:25 +02:00
@code{mu4e-speedbar} was contributed by @emph{Antono Vasiljev}.
@node Citations with mu-cite
@section Citations with @t{mu-cite}
2012-08-07 10:45:07 +02:00
@t{mu-cite}@footnote{Note, despite its name, @t{mu-cite} is a project
unconnected to @t{mu}/@t{mu4e}} is a package to control the way message
citations look like (i.e., the message you responded to when you reply to them
or forward them), with its latest version available at
@url{http://www.jpl.org/elips/mu/}.
2012-10-14 16:00:25 +02:00
After installing @t{mu-cite}, you can use something like the following to make
it work with @t{mu4e}:
@lisp
(require 'mu-cite)
(setq mu4e-cite-function 'mu-cite-original)
(setq mu-cite-top-format
2012-08-07 10:45:07 +02:00
'("On " date ", " from " wrote:\n\n"))
(setq mu-cite-prefix-format '(" > ")))
@end lisp
@node Attaching files with dired
@section Attaching files with @t{dired}
2012-10-14 16:00:25 +02:00
It is possible to attach files to @t{mu4e} messages using @t{dired}
2012-09-30 19:12:07 +02:00
(@inforef{Dired,,emacs}), using the following steps (based on a post on the
2012-10-14 16:00:25 +02:00
@t{mu-discuss} mailing list by @emph{Stephen Eglen}).
2012-09-30 19:12:07 +02:00
To prepare for this, you need a special version of the
@code{gnus-dired-mail-buffers} function so it understands @t{mu4e} buffers as
well; so put in your configuration:
@lisp
(require 'gnus-dired)
;; make the `gnus-dired-mail-buffers' function also work on
2012-10-14 16:00:25 +02:00
;; message-mode derived modes, such as mu4e-compose-mode
(defun gnus-dired-mail-buffers ()
"Return a list of active message buffers."
(let (buffers)
(save-current-buffer
(dolist (buffer (buffer-list t))
(set-buffer buffer)
(when (and (derived-mode-p 'message-mode)
(null message-sent-message-via))
(push (buffer-name buffer) buffers))))
(nreverse buffers)))
(setq gnus-dired-mail-mode 'mu4e-user-agent)
(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)
@end lisp
Then, mark the file(s) in @t{dired} you would like to attach and press @t{C-c
RET C-a}, and you'll be asked whether to attach them to an existing message,
or create a new one.
2012-10-03 20:54:34 +02:00
@node Example configurations
@appendix Example configurations
2012-10-03 20:54:34 +02:00
In this chapter, we show some example configurations. While it is very useful
to see some working settings, we'd like to warn against blindly copying such
things.
@menu
* Minimal configuration::
* Longer configuration::
* Gmail configuration::
2012-09-29 11:13:02 +02:00
* Some other useful settings::
@end menu
@node Minimal configuration
@section Minimal configuration
2012-10-14 16:00:25 +02:00
An (almost) minimal configuration for @t{mu4e} might look like this - as you
see most is commented-out.
2012-02-05 09:56:37 +01:00
@lisp
2012-10-14 16:00:25 +02:00
;; example configuration for mu4e
2012-09-29 11:13:02 +02:00
2012-10-03 20:54:34 +02:00
;; make sure mu4e is in your load-path
(require 'mu4e)
;; Only needed if your maildir is _not_ ~/Maildir
;; Must be a real dir, not a symlink
;;(setq mu4e-maildir "/home/user/Maildir")
;; these must start with a "/", and must exist
;; (i.e.. /home/user/Maildir/sent must exist)
;; you use e.g. 'mu mkdir' to make the Maildirs if they don't
;; already exist
2012-09-30 19:12:07 +02:00
;; below are the defaults; if they do not exist yet, mu4e offers to
2012-10-03 20:54:34 +02:00
;; create them. they can also functions; see their docstrings.
;; (setq mu4e-sent-folder "/sent")
;; (setq mu4e-drafts-folder "/drafts")
;; (setq mu4e-trash-folder "/trash")
2012-10-03 20:54:34 +02:00
;; smtp mail setting; these are the same that `gnus' uses.
2012-09-29 11:13:02 +02:00
(setq
2012-10-03 20:54:34 +02:00
message-send-mail-function 'smtpmail-send-it
2012-09-29 11:13:02 +02:00
smtpmail-default-smtp-server "smtp.example.com"
2012-10-03 20:54:34 +02:00
smtpmail-smtp-server "smtp.example.com"
smtpmail-local-domain "example.com")
2012-02-05 09:56:37 +01:00
@end lisp
@node Longer configuration
@section Longer configuration
2012-10-14 16:00:25 +02:00
A somewhat longer configuration, showing some more things that you can
customize.
2012-04-06 10:00:39 +02:00
@lisp
2012-10-14 16:00:25 +02:00
;; example configuration for mu4e
(require 'mu4e)
2012-10-03 20:54:34 +02:00
;; path to our Maildir directory
(setq mu4e-maildir "/home/user/Maildir")
;; the next are relative to `mu4e-maildir'
;; instead of strings, they can be functions too, see
;; their docstring or the chapter 'Dynamic folders'
(setq mu4e-sent-folder "/sent"
mu4e-drafts-folder "/drafts"
mu4e-trash-folder "/trash")
;; the maildirs you use frequently; access them with 'j' ('jump')
(setq mu4e-maildir-shortcuts
'(("/archive" . ?a)
("/inbox" . ?i)
("/work" . ?w)
("/sent" . ?s)))
2012-10-22 19:27:49 +02:00
;; a list of user's e-mail addresses
(setq mu4e-user-mail-address-list '("foo@@bar.com" "cuux@@example.com")
2012-10-14 16:00:25 +02:00
2012-10-03 20:54:34 +02:00
;; when you want to use some external command for text->html
;; conversion, e.g. the 'html2text' program
;; (setq mu4e-html2text-command "html2text")
2012-10-14 16:00:25 +02:00
;; the headers to show in the headers list -- a pair of a field
2012-10-03 20:54:34 +02:00
;; and its width, with `nil' meaning 'unlimited'
;; (better only use that for the last field.
;; These are the defaults:
(setq mu4e-headers-fields
'( (:date . 25) ;; alternatively, use :human-date
2011-12-29 00:26:43 +01:00
(:flags . 6)
(:from . 22)
(:subject . nil))) ;; alternatively, use :thread-subject
2011-12-29 00:26:43 +01:00
2012-10-03 20:54:34 +02:00
;; program to get mail; alternatives are 'fetchmail', 'getmail'
;; isync or your own shellscript. called when 'U' is pressed in
;; main view.
2012-10-14 16:00:25 +02:00
;; If you get your mail without an explicit command,
;; use "true" for the command (this is the default)
2012-10-03 20:54:34 +02:00
(setq mu4e-get-mail-command "offlineimap")
2012-10-03 20:54:34 +02:00
;; general emacs mail settings; used when composing e-mail
;; the non-mu4e-* stuff is inherited from emacs/message-mode
(setq mu4e-reply-to-address "foo@@bar.com"
user-mail-address "foo@@bar.com"
user-full-name "Foo X. Bar")
(setq mu4e-compose-signature
2012-10-03 20:54:34 +02:00
"Foo X. Bar\nhttp://www.example.com\n")
2012-10-14 16:00:25 +02:00
;; smtp mail setting
2012-10-03 20:54:34 +02:00
(setq
2011-12-29 00:26:43 +01:00
message-send-mail-function 'smtpmail-send-it
smtpmail-default-smtp-server "smtp.example.com"
smtpmail-smtp-server "smtp.example.com"
2011-12-29 00:26:43 +01:00
smtpmail-local-domain "example.com"
;; if you need offline mode, set these -- and create the queue dir
;; with 'mu mkdir', i.e.. mu mkdir /home/user/Maildir/queue
smtpmail-queue-mail nil
smtpmail-queue-dir "/home/user/Maildir/queue/cur")
2012-10-03 20:54:34 +02:00
;; don't keep message buffers around
(setq message-kill-buffer-on-exit t)
2012-04-06 10:00:39 +02:00
@end lisp
@node Gmail configuration
@section Gmail configuration
@emph{Gmail} is a popular e-mail provider; let's see how we can make it work
2012-10-03 20:54:34 +02:00
with @t{mu4e}. Since we are using @abbr{IMAP}, you must enable that in the
Gmail web interface (in the settings, under the ``Forwarding and
POP/IMAP''-tab).
Gmail users may also be interested in @ref{Including related messages,
skipping duplicates}.
2012-10-03 20:54:34 +02:00
@subsection Setting up offlineimap
2012-04-30 07:16:44 +02:00
First of all, we need a program to get the e-mail from Gmail to our local
machine; for this we use @t{offlineimap}; on Debian (and derivatives like
Ubuntu), this is as easy as:
2012-10-03 20:54:34 +02:00
@verbatim
2012-10-03 20:54:34 +02:00
$ sudo apt-get install offlineimap
@end verbatim
2012-10-03 20:54:34 +02:00
while on Fedora (and similar) you need:
@verbatim
$ sudo yum install offlineimap
@end verbatim
Then, we can configure @t{offlineimap} by editing @file{~/.offlineimaprc}:
@verbatim
[general]
accounts = Gmail
maxsyncaccounts = 3
[Account Gmail]
localrepository = Local
remoterepository = Remote
[Repository Local]
type = Maildir
localfolders = ~/Maildir
[Repository Remote]
type = IMAP
remotehost = imap.gmail.com
remoteuser = USERNAME@gmail.com
remotepass = PASSWORD
ssl = yes
maxconnections = 1
realdelete = no
@end verbatim
2012-10-14 16:00:25 +02:00
Obviously, you need to replace @t{USERNAME} and @t{PASSWORD} with your actual
Gmail username and password. After this, you should be able to download your
mail:
2012-10-03 20:54:34 +02:00
@verbatim
$ offlineimap
OfflineIMAP 6.3.4
Copyright 2002-2011 John Goerzen & contributors.
Licensed under the GNU GPL v2+ (v2 or any later version).
Account sync Gmail:
***** Processing account Gmail
Copying folder structure from IMAP to Maildir
Establishing connection to imap.gmail.com:993.
Folder sync [Gmail]:
Syncing INBOX: IMAP -> Maildir
Syncing [Gmail]/All Mail: IMAP -> Maildir
Syncing [Gmail]/Drafts: IMAP -> Maildir
Syncing [Gmail]/Sent Mail: IMAP -> Maildir
Syncing [Gmail]/Spam: IMAP -> Maildir
Syncing [Gmail]/Starred: IMAP -> Maildir
Syncing [Gmail]/Trash: IMAP -> Maildir
Account sync Gmail:
***** Finished processing account Gmail
@end verbatim
2012-10-14 16:00:25 +02:00
We can now run @command{mu} to make sure things work:
@verbatim
$ mu index
mu: indexing messages under /home/foo/Maildir [/home/foo/.mu/xapian]
| processing mail; processed: 520; updated/new: 520, cleaned-up: 0
mu: elapsed: 3 second(s), ~ 173 msg/s
mu: cleaning up messages [/home/foo/.mu/xapian]
/ processing mail; processed: 520; updated/new: 0, cleaned-up: 0
mu: elapsed: 0 second(s)
@end verbatim
2014-10-19 11:04:11 +02:00
We can run both the @t{offlineimap} and the @t{mu index} from within
@t{mu4e}, but running it from the command line makes it a bit easier to
troubleshoot as we are setting things up.
Note: when using encryption, you probably do @emph{not} want to
2014-10-19 11:04:11 +02:00
synchronize your Drafts-folder, since it contains the unencrypted
messages. You can use OfflineIMAP's @t{folderfilter} for that.
2012-10-03 20:54:34 +02:00
@subsection Settings
2012-10-14 16:00:25 +02:00
Next step: let's make a @t{mu4e} configuration for this:
2012-04-06 10:00:39 +02:00
@lisp
(require 'mu4e)
;; default
2012-11-04 19:41:56 +01:00
;; (setq mu4e-maildir "~/Maildir")
(setq mu4e-drafts-folder "/[Gmail].Drafts")
(setq mu4e-sent-folder "/[Gmail].Sent Mail")
(setq mu4e-trash-folder "/[Gmail].Trash")
2012-09-29 11:13:02 +02:00
;; don't save message to Sent Messages, Gmail/IMAP takes care of this
(setq mu4e-sent-messages-behavior 'delete)
;; (See the documentation for `mu4e-sent-messages-behavior' if you have
;; additional non-Gmail addresses and want assign them different
;; behavior.)
;; setup some handy shortcuts
2012-09-29 11:13:02 +02:00
;; you can quickly switch to your Inbox -- press ``ji''
;; then, when you want archive some messages, move them to
;; the 'All Mail' folder by pressing ``ma''.
(setq mu4e-maildir-shortcuts
'( ("/INBOX" . ?i)
("/[Gmail].Sent Mail" . ?s)
("/[Gmail].Trash" . ?t)
("/[Gmail].All Mail" . ?a)))
;; allow for updating mail using 'U' in the main view:
(setq mu4e-get-mail-command "offlineimap")
;; something about ourselves
(setq
2012-04-06 10:00:39 +02:00
user-mail-address "USERNAME@@gmail.com"
user-full-name "Foo X. Bar"
mu4e-compose-signature
(concat
"Foo X. Bar\n"
"http://www.example.com\n"))
;; sending mail -- replace USERNAME with your gmail username
;; also, make sure the gnutls command line utils are installed
;; package 'gnutls-bin' in Debian/Ubuntu
(require 'smtpmail)
(setq message-send-mail-function 'smtpmail-send-it
starttls-use-gnutls t
2012-07-02 08:51:13 +02:00
smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2012-09-29 11:13:02 +02:00
smtpmail-auth-credentials
'(("smtp.gmail.com" 587 "USERNAME@@gmail.com" nil))
2012-07-02 08:51:13 +02:00
smtpmail-default-smtp-server "smtp.gmail.com"
smtpmail-smtp-server "smtp.gmail.com"
smtpmail-smtp-service 587)
;; alternatively, for emacs-24 you can use:
;;(setq message-send-mail-function 'smtpmail-send-it
;; smtpmail-stream-type 'starttls
;; smtpmail-default-smtp-server "smtp.gmail.com"
2012-07-02 08:51:13 +02:00
;; smtpmail-smtp-server "smtp.gmail.com"
;; smtpmail-smtp-service 587)
;; don't keep message buffers around
(setq message-kill-buffer-on-exit t)
2012-04-06 10:00:39 +02:00
@end lisp
2012-09-29 11:13:02 +02:00
And that's it -- put the above in your @file{~/.emacs}, change @t{USERNAME}
2012-10-14 16:00:25 +02:00
etc. to your own, and restart @command{emacs}, and run @kbd{M-x mu4e}.
2012-09-29 11:13:02 +02:00
@node Some other useful settings
@section Some other useful settings
Finally, here are some more settings that are useful, but not enabled by
default for various reasons.
@lisp
;; use 'fancy' non-ascii characters in various places in mu4e
(setq mu4e-use-fancy-chars t)
2012-10-14 16:00:25 +02:00
;; save attachment to my desktop (this can also be a function)
2012-09-29 11:13:02 +02:00
(setq mu4e-attachment-dir "~/Desktop")
;; attempt to show images when viewing messages
(setq mu4e-view-show-images t)
2012-09-29 11:13:02 +02:00
@end lisp
2012-10-14 16:00:25 +02:00
@node FAQ
@appendix FAQ - Frequently Asked Questions
In this chapter we list a number of actual and anticipated questions and their
answers.
2012-09-29 12:30:49 +02:00
@menu
* General::
* Reading messages::
2012-09-29 12:30:49 +02:00
* Writing messages::
* Known issues::
@end menu
@node General
@section General
2012-10-14 16:00:25 +02:00
@enumerate
@item @emph{How can I quickly delete/move/trash a lot of messages?} You can
2012-10-14 16:00:25 +02:00
select ('mark' in @command{emacs}-speak) the messages like you would select
text in a buffer; the actions you then take (e.g., @key{DEL} for delete,
@key{m} for move and @key{t} for trash) apply to all selected messages. You
2012-06-12 09:21:44 +02:00
can also use functions like @code{mu4e-headers-mark-thread} (@key{T}),
@code{mu4e-headers-mark-subthread} (@key{t}) to mark whole threads at the same
time, and @code{mu4e-headers-mark-pattern} (@key{%}) to mark all messages
matching a certain regular expression.
2012-10-11 16:50:32 +02:00
@item @emph{@t{mu4e} seems to return a subset of all matches - how can I get
all?} For speed reasons, @t{mu4e} returns only up to the value of the variable
@code{m4ue-search-result-limit} (default: 500) matches. To show @emph{all},
use @kbd{M-x mu4e-headers-toggle-full-search} (@key{Q}), or customize the
variable @code{mu4e-headers-full-search}. This applies to all search commands.
@item @emph{How can I get notifications when receiving mail?} There is
2012-10-14 16:00:25 +02:00
@code{mu4e-index-updated-hook}, which gets triggered when the indexing process
2012-10-11 16:50:32 +02:00
triggered sees an update (not just new mail though). To use this hook, put
something like the following in your setup (assuming you have @t{aplay} and
some soundfile, change as needed):
@lisp
2012-09-13 21:58:13 +02:00
(add-hook 'mu4e-index-updated-hook
(defun new-mail-sound ()
2012-09-13 21:58:13 +02:00
(shell-command "aplay ~/Sounds/boing.wav&")))
@end lisp
@item @emph{It seems my headers-buffer is automatically updated when new
messages are found during the indexing process -- can I disable this
somehow?} Yes - set @code{mu4e-headers-auto-update} to @code{nil}.
2012-09-29 11:13:02 +02:00
@item @emph{I don't use @t{offlineimap}, @t{fetchmail} etc., I get my mail
through my own mailserver. What should I use for
2012-10-14 16:00:25 +02:00
@code{mu4e-get-mail-command}}? Use @t{"true"} (or don't do anything, it's the
2012-10-03 20:54:34 +02:00
default). This makes getting mail a no-op, but the messages are still
re-indexed.
@item @emph{How can I re-index my messages without getting new mail?}
2012-10-25 11:28:11 +02:00
Use @kbd{M-x mu4e-update-index}
@item @emph{When I try to run @t{mu index} while @t{mu4e} is running I get
2012-10-11 16:50:32 +02:00
errors like:}
@verbatim
mu: mu_store_new_writable: xapian error
2012-10-11 16:50:32 +02:00
'Unable to get write lock on ~/.mu/xapian: already locked
@end verbatim
2012-10-14 16:00:25 +02:00
@emph{What to do about this?} You get this error because the underlying
Xapian database is locked by some other process; it can be opened only once in
read-write mode. There is not much @t{mu4e} can do about this, but if is
another @command{mu} instance that is holding the lock, you can ask it to
(gracefully) terminate:
@verbatim
pkill -2 -u $UID mu # send SIGINT
sleep 1
mu index
@end verbatim
2012-09-30 19:12:07 +02:00
@t{mu4e} automatically restarts @t{mu} when it needs it. In practice, this
seems to work quite well.
@item @emph{I don't like the @t{Indexing...} messages that the indexing process
gives me. Can I turn them off?}. Yes: set the variable
@code{mu4e-hide-index-messages} to non-@t{nil}.
2012-06-12 09:21:44 +02:00
@item @emph{Can I automatically apply the marks on messages when
2012-09-29 11:13:02 +02:00
leaving the headers buffer?} Yes you can -- see the documentation for the
variable @t{mu4e-headers-leave-behavior}.
@item @emph{Is there context-sensitive help available?} Yes - pressing @key{H}
2012-06-06 10:07:48 +02:00
should take you to the right place in this manual.
2012-10-14 16:00:25 +02:00
@item @emph{How can I set @t{mu4e} as the default e-mail client in @command{emacs}?}
See @ref{Setting the default emacs mail program}.
2012-09-09 12:17:28 +02:00
@item @emph{Can @t{mu4e} use some fancy Unicode characters instead of these
2012-09-30 19:12:07 +02:00
boring plain-ASCII ones?} Glad you asked! Yes, if you set
2012-10-14 16:00:25 +02:00
@code{mu4e-use-fancy-chars} to @t{t}, @t{mu4e} uses such fancy characters in a
2012-09-30 19:12:07 +02:00
number of places.
@item @emph{Can I start @t{mu4e} in the background?} Yes - if you provide a
prefix-argument (@key{C-u}), @t{mu4e} starts, but does not show the
main-window.
@item @emph{Some IMAP-synchronization programs such as @t{mbsync} (but not
@t{offlineimap}) don't like it when message files do not change their names
when they are moved to different folders. Can @t{mu4e} somehow accommodate
this?} Yes - you can set the variable @code{mu4e-change-filenames-when-moving}
to non-nil.
@item @emph{@command{offlineimap} uses IMAP's UTF-7 for encoding
non-ascii folder names, while @t{mu} expects UTF-8 (so, e.g. @t{/まりもえ
お}@footnote{some Japanese characters, invisible in the UTF-8 version of this
manual} becomes @t{/&MH4wijCCMEgwSg-}). How can display such folders
correctly?} This is best solved by telling @command{offlineimap} to use UTF-8
instead -- see
@url{https://github.com/djcb/mu/issues/68#issuecomment-8598652}.
@item @emph{How can I customize the function to select a folder?}
The @t{mu4e-completing-read} variable can be customized to select a
folder in any way. The variable can be set to a function that receives
five arguments, following @t{completing-read}. The default value is
@t{ido-completing-read}; to use emacs's default behaviour, set the
variable to @t{completing-read}. Helm users can use the same value, and
by enabling @t{helm-mode} use helm-style completion.
2012-10-14 16:00:25 +02:00
@end enumerate
2012-09-29 12:30:49 +02:00
@node Reading messages
@section Reading messages
2012-10-14 16:00:25 +02:00
@enumerate
2013-07-06 09:47:15 +02:00
@item @emph{How can I view attached images in my message view buffers?} See
@ref{Viewing images inline}.
2012-10-03 20:54:34 +02:00
@item @emph{How can I word-wrap long lines in when viewing a
message?} You can toggle between wrapped and non-wrapped states using
@key{w}. If you want to do this automatically, invoke @code{visual-line-mode} in
2012-10-14 16:00:25 +02:00
your @code{mu4e-view-mode-hook}.
2012-10-03 20:54:34 +02:00
@item @emph{What about hiding cited parts?} Toggle between hiding and showing
of cited parts with @key{h}. If you want to hide parts automatically, call
2012-10-14 16:00:25 +02:00
@code{mu4e-view-toggle-hide-cited} in your @code{mu4e-view-mode-hook}.
@item @emph{How can I perform custom actions on messages and attachments?} See
@ref{Actions}.
2012-10-16 20:43:49 +02:00
@item @emph{Does @t{mu4e} support crypto (i.e., decrypting messages and
verifying signatures)?} Yes -- if @t{mu} was built with @t{GMime} 2.6 or
later, it is possible to do both (note, only PGP/MIME is supported). In the
@ref{Main view} the support is indicated by a big letter @t{C} on the right
hand side of the @t{mu4e} version. See @ref{Decryption} and @ref{Verifying
signatures}. For encryption and signing messages, see the @ref{Writing
messages}.
@item @emph{Does @t{mu4e} support including all related messages in a thread,
like Gmail does?} Yes -- see @ref{Including related messages}.
@item @emph{There seem to be a lot of duplicate messages -- how can I get rid
of them?} See @ref{Skipping duplicates}.
@item @emph{How can I use the @t{eww} browser to view rich-text messages?} See @ref{Html2text functions}.
2013-03-17 18:43:12 +01:00
@item @emph{Some messages are almost unreadable in emacs - can I view them in
an external web browser?} Indeed, airlines often send messages that
heavily depend on html and are hard to digest inside emacs. Fortunately,
there's an @emph{action} (@ref{Adding an action in the message view})
defined for this. Simply add to your configuration:
2013-03-17 18:43:12 +01:00
@lisp
(add-to-list 'mu4e-view-actions
'("ViewInBrowser" . mu4e-action-view-in-browser) t)
@end lisp
Now, when viewing such a difficult message, type @kbd{aV}, and the message
opens inside a webbrowser. You can influence the browser with
@code{browse-url-generic-program}.
@item @emph{How can read encrypted messages that I sent?}. Since you do not own the
recipient's key you typically cannot read those mails - so the trick is
to encrypt outgoing mails with your key, too. This can be automated by
adding the following snippet to your configuration (courtesy of user
@t{kpachnis}):
@lisp
(require 'epg-config)
(setq mml2015-use 'epg
epg-user-id "gpg_key_id"
mml2015-encrypt-to-self t
mml2015-sign-with-sender t)
@end lisp
2012-10-14 16:00:25 +02:00
@end enumerate
2012-09-29 12:30:49 +02:00
@node Writing messages
@section Writing messages
2012-10-14 16:00:25 +02:00
@enumerate
@item @emph{What's the deal with replies to messages I wrote myself?} Like
many other mail-clients, @t{mu4e} treats replies to messages you wrote
yourself as special -- these message keep the same @t{To:} and @t{Cc:}
as the original message. This is to ease the common case of following up
to a message you wrote earlier.
2012-10-14 16:00:25 +02:00
@item @emph{How can I automatically set the @t{From:}-address for a
reply-message, based on some field in the original?} See @ref{Compose hooks}.
@item @emph{And what about customizable folders for draft messages, sent
2012-10-14 16:00:25 +02:00
messages, trashed messages, based on e.g. the @t{From:} header?} See
@ref{Dynamic folders}.
2014-10-19 11:04:11 +02:00
@item @emph{Can I define aliases for (groups of) e-mail addresses?} Sure -
see @ref{(emacs) Mail Aliases}.
@item @emph{How can I automatically add some header to an outgoing message?}
2012-09-13 21:58:13 +02:00
Once more, see @ref{Compose hooks}.
2012-10-11 16:50:32 +02:00
@item @emph{How can I influence the way the original message looks when
replying or forwarding?} Since @code{mu4e-compose-mode} derives from
@code{message-mode}, you can re-use many of its facilities.
2012-10-11 16:50:32 +02:00
@inforef{Insertion Variables,,message}.
@item @emph{How can I easily include attachments in the messages I write?}
You can drag-and-drop from your desktop; alternatively, you can use @t{dired}
-- see @ref{Attaching files with dired}.
2012-10-14 16:00:25 +02:00
@item @emph{@t{mu4e} seems to remove myself from the @t{Cc:}-list; how can I
prevent that?} Set @code{mu4e-compose-keep-self-cc} to @t{t} in your
configuration.
@item @emph{How can I sign or encrypt messages?} You can do so using @command{emacs}'
2012-09-30 19:12:07 +02:00
MIME-support -- check the @t{Attachments}-menu while composing a message. Also
2012-09-13 20:12:38 +02:00
see @ref{Signing and encrypting}.
2015-06-23 12:08:07 +02:00
@item @emph{Can I use @t{BBDB} with @t{mu4e}?} Yes, with the current
(2015-06-23) development release of BBDB
@url{http://savannah.nongnu.org/projects/bbdb/}, or releases of BBDB
after 3.1.2.
@ref{Maintaining an address-book with BBDB}.
2012-10-14 16:00:25 +02:00
@item @emph{After sending some messages, it seems the buffer for these
messages stay around. How can I get rid of those?}
2012-10-14 16:00:25 +02:00
@lisp
(setq message-kill-buffer-on-exit t)
@end lisp
2013-03-17 18:43:12 +01:00
@item @emph{Sending big messages is slow and blocks emacs - what can I do
about it?} For this, there's @url{https://github.com/jwiegley/emacs-async}
(also available from the Emacs package repository); add the following snippet
to your configuration:
@lisp
(require 'smtpmail-async)
(setq
send-mail-function 'async-smtpmail-send-it
message-send-mail-function 'async-smtpmail-send-it)
@end lisp
2013-11-19 06:44:18 +01:00
With this, messages are sent using background emacs-instance.
A word of warning though, this tends to not be as reliable as sending the
message in the normal, synchronous fashion, and people have reported silent
failures, that is, message are not sent but there is no indication of that.
You can check the progress of the background by checking the
@t{*Messages*}-buffer, which should show something like:
2013-07-06 17:57:32 +02:00
@verbatim
Delivering message to "William Shakespeare" <will@example.com>...
Mark set
2013-07-06 18:17:15 +02:00
Saving file /home/djcb/Maildir/sent/cur/20130706-044350-darklady:2,S...
2013-07-06 17:57:32 +02:00
Wrote /home/djcb/Maildir/sent/cur/20130706-044350-darklady:2,S
Sending...done
@end verbatim
The first and final messages are the most important, and there may be
considerable time between them, depending on the size of the message.
@item @emph{Is it possible to compose messages in a separate frame?}
Yes - set the variable @code{mu4e-compose-in-new-frame} to @code{t}.
@item @emph{How can I apply format=flowed to my outgoing messages, enabling
receiving clients that support this feature to reflow my paragraphs?}
Plain text emails with @t{Content-Type: text/plain; format=flowed} can
be reflowed (i.e. line endings removed, paragraphs refilled) by
receiving clients that support this standard. Clients that don't support
this, show them as is, which means this feature is truly non-invasive.
Here's an explanatory blog post which also shows why this is a desirable
feature: @url{https://mathiasbynens.be/notes/gmail-plain-text} (if you
don't have it, your mails mostly look quite bad especially on mobile
devices) and here's the RFC with all the details:
@url{http://www.ietf.org/rfc/rfc2646.txt}.
To add this to outgoing mu4e emails, activate @t{use-hard-newlines} and
use only @t{M-q} or @t{fill-paragraph} for your paragraphs, Emacs will
indicate intra-paragraph breaks with soft newlines and inter-paragraph
breaks with hard newlines. When the Gnus code sees these on outgoing
emails, it will automatically set @t{format=flowed}.
To enable this, you can use something like this in your init.el:
@lisp
;; tip submitted by mu4e user cpbotha
(add-hook 'mu4e-compose-mode-hook
(defun cpb-compose-setup ()
"Outgoing mails get format=flowed."
(use-hard-newlines t 'guess)))
@end lisp
2012-10-14 16:00:25 +02:00
@end enumerate
2012-09-29 12:30:49 +02:00
@node Known issues
@section Known issues
2012-09-29 12:30:49 +02:00
Although they are not really @emph{questions}, we end this chapter with a list
2013-06-12 09:09:19 +02:00
of known issues and/or missing features in @t{mu4e}. Thus, users won't have to
2012-09-29 12:30:49 +02:00
search in vain for things that are not there (yet), and the author can use it
as a todo-list.
@itemize
2012-10-14 16:00:25 +02:00
@item @emph{mu4e does not work well if the @command{emacs} language environment is not
UTF-8}; so, if you encounter problems with encodings, be sure to have
2012-10-14 16:00:25 +02:00
@code{(set-language-environment "UTF-8")} in your @file{~/.emacs}.
@item @emph{Thread handling is incomplete.} While threads are calculated and are
2013-06-12 09:09:19 +02:00
visible in the headers buffer, you cannot collapse/open them.
2012-10-14 16:00:25 +02:00
@item @emph{The key-bindings are @emph{somewhat} hard-coded.} That is, the main
menu assumes the default key-bindings, as do the clicks-on-bookmarks.
@item @emph{The @t{emacs} front-end of the @t{notmuch} e-mail indexer
2013-06-12 09:09:19 +02:00
conflicts with @t{mu4e}}. @t{notmuch} running in parallel with
@t{mu4e} leads to
@verbatim
error in process filter: mu4e-error-handler: Error 70: cannot read
~/Maildir/...
@end verbatim
when sending a reply to some e-mail. This seems to be caused by
@t{notmuch} changing the name of the original message file while
@t{mu4e} is working on it. To prevent this, deactivate @t{notmuch} in
your Emacs setup.
@item @emph{The PDF-version of the manual does not show any of the non-ASCII
characters} - this is because the @t{texi2pdf} documentation system does
not support those. There is not much we can do about that.
@end itemize
2013-06-12 09:09:19 +02:00
For a more complete list, please refer to the issues-list in the
github-repository.
2012-10-03 20:54:34 +02:00
@node Tips and Tricks
@appendix Tips and Tricks
@menu
* Multiple accounts::
* Refiling messages::
* Saving outgoing messages::
* Fancy characters and Inconsolata::
2014-05-25 03:15:43 +02:00
* Confirmation before sending::
@end menu
@node Multiple accounts
@section Multiple accounts
Using mu4e with multiple email accounts is fairly easy. Although
variables such as @code{user-mail-address}, @code{mu4e-sent-folder},
@code{message-*}, @code{smtpmail-*}, etc. typically only take one value,
it is easy to change their values using @code{mu4e-compose-pre-hook}.
The setup described here is one way of doing this (though certainly not
the only way).
This setup assumes that you have multiple mail accounts under
@code{mu4e-maildir}. As an example, we'll use @t{~/Maildir/Account1}
and @t{~/Maildir/Account2}, but the setup works just as well if
@code{mu4e-maildir} points to something else.
First, you need to make sure that all variables that you wish to change
based on user account are set to some initial value. So set up your
environment with e.g., your main account:
@lisp
(setq mu4e-sent-folder "/Account1/Saved Items"
mu4e-drafts-folder "/Account1/Drafts"
user-mail-address "my.address@@account1.tld"
smtpmail-default-smtp-server "smtp.account1.tld"
smtpmail-local-domain "account1.tld"
smtpmail-smtp-server "smtp.account1.tld"
smtpmail-stream-type starttls
smtpmail-smtp-service 25)
@end lisp
Then create a variable @code{my-mu4e-account-alist}, which should
contain a list for each of your accounts. Each list should start with
the account name, (which @emph{must} be identical to the account's
directory name under @t{~/Maildir}), followed by @code{(variable
value)} pairs:
@lisp
(defvar my-mu4e-account-alist
'(("Account1"
(mu4e-sent-folder "/Account1/Saved Items")
(mu4e-drafts-folder "/Account1/Drafts")
(user-mail-address "my.address@@account1.tld")
(smtpmail-default-smtp-server "smtp.account1.tld")
(smtpmail-local-domain "account1.tld")
(smtpmail-smtp-user "username1")
(smtpmail-smtp-server "smtp.account1.tld")
(smtpmail-stream-type starttls)
(smtpmail-smtp-service 25))
("Account2"
(mu4e-sent-folder "/Account2/Saved Items")
(mu4e-drafts-folder "/Account2/Drafts")
2014-08-11 22:20:27 +02:00
(user-mail-address "my.address@@account2.tld")
(smtpmail-default-smtp-server "smtp.account2.tld")
(smtpmail-local-domain "account2.tld")
(smtpmail-smtp-user "username2")
2014-08-11 22:20:27 +02:00
(smtpmail-smtp-server "smtp.account2.tld")
(smtpmail-stream-type starttls)
(smtpmail-smtp-service 587))))
@end lisp
You can put any variable you want in the account lists, just make sure
that you put in @emph{all} the variables that differ for each account.
Variables that do not differ need not be included. For example, if you
use the same smtp server for both accounts, you don't need to include
the smtp-related variables in @code{my-mu4e-account-alist}.
Note that some SMTP servers (such as Gmail) require the SMTP username to
match the user mail address. In this case your mail will appear to
originate from whichever SMTP account you use. Thus unless you are
certain your SMTP server does not have this requirement, you should
generally use different SMTP account credentials for each mail account.
Now, the following function can be used to select an account and set the
variables in @code{my-mu4e-account-alist} to the correct values:
@lisp
(defun my-mu4e-set-account ()
"Set the account for composing a message."
(let* ((account
(if mu4e-compose-parent-message
(let ((maildir (mu4e-message-field mu4e-compose-parent-message :maildir)))
(string-match "/\\(.*?\\)/" maildir)
(match-string 1 maildir))
(completing-read (format "Compose with account: (%s) "
2013-05-25 18:26:54 +02:00
(mapconcat #'(lambda (var) (car var))
my-mu4e-account-alist "/"))
(mapcar #'(lambda (var) (car var)) my-mu4e-account-alist)
nil t nil nil (caar my-mu4e-account-alist))))
(account-vars (cdr (assoc account my-mu4e-account-alist))))
(if account-vars
(mapc #'(lambda (var)
(set (car var) (cadr var)))
account-vars)
(error "No email account found"))))
@end lisp
This function then needs to be added to @code{mu4e-compose-pre-hook}:
@lisp
(add-hook 'mu4e-compose-pre-hook 'my-mu4e-set-account)
@end lisp
This way, @code{my-mu4e-set-account} will be called every time you edit
a message. If you compose a new message, it simply asks you for the
account you wish to send the message from (TAB completion works). If
you're replying or forwarding a message, or editing an existing draft,
the account is chosen automatically, based on the first component of the
maildir of the message being replied to, forwarded or edited (i.e., the
directory under @t{~/Maildir}).
@node Refiling messages
@section Refiling messages
By setting @code{mu4e-refile-folder} to a function, you can dynamically
determine where messages are to be refiled. If you want to do this based
on the subject of a message, you can use a function that matches the
subject against a list of regexes in the following way. First, set up a
variable @code{my-mu4e-subject-alist} containing regexes plus associated
mail folders:
@lisp
(defvar my-mu4e-subject-alist '(("kolloqui\\(um\\|a\\)" . "/Kolloquium")
("Calls" . "/Calls")
("Lehr" . "/Lehre")
("webseite\\|homepage\\|website" . "/Webseite"))
"List of subjects and their respective refile folders.")
@end lisp
Now you can use the following function to automatically refile messages
based on their subject line:
@lisp
(defun my-mu4e-refile-folder-function (msg)
"Set the refile folder for MSG."
(let ((subject (mu4e-message-field msg :subject))
(folder (or (cdar (member* subject my-mu4e-subject-alist
:test #'(lambda (x y)
(string-match (car y) x))))
"/General")))
folder))
@end lisp
Note the @t{"/General"} folder: it is the default folder in case the
subject does not match any of the regexes in
@code{my-mu4e-subject-alist}.
In order to make this work, you'll of course need to set
@code{mu4e-refile-folder} to this function:
@lisp
(setq mu4e-refile-folder 'my-mu4e-refile-folder-function)
@end lisp
If you have multiple accounts, you can accommodate them as well:
@lisp
(defun my-mu4e-refile-folder-function (msg)
"Set the refile folder for MSG."
(let ((maildir (mu4e-message-field msg :maildir))
(subject (mu4e-message-field msg :subject))
folder)
(cond
((string-match "Account1" maildir)
(setq folder (or (catch 'found
(dolist (mailing-list my-mu4e-mailing-lists)
2013-06-12 09:09:19 +02:00
(if (mu4e-message-contact-field-matches
msg :to (car mailing-list))
(throw 'found (cdr mailing-list)))))
"/Account1/General")))
((string-match "Gmail" maildir)
(setq folder "/Gmail/All Mail"))
((string-match "Account2" maildir)
(setq folder (or (cdar (member* subject my-mu4e-subject-alist
:test #'(lambda (x y)
2013-06-12 09:09:19 +02:00
(string-match
(car y) x))))
"/Account2/General"))))
folder))
@end lisp
This function actually uses different methods to determine the refile
2013-05-25 18:26:54 +02:00
folder, depending on the account: For @emph{Account2}, it uses
@code{my-mu4e-subject-alist}, for the @emph{Gmail} account it simply uses the
folder "All Mail". For Account1, it uses another method: it files the
message based on the mailing list to which it was sent. This requires
another variable:
@lisp
2013-06-12 09:09:19 +02:00
(defvar my-mu4e-mailing-lists
'(("mu-discuss@@googlegroups.com" . "/Account1/mu4e")
("pandoc-discuss@@googlegroups.com" . "/Account1/Pandoc")
("auctex@@gnu.org" . "/Account1/AUCTeX"))
"List of mailing list addresses and folders where
their messages are saved.")
@end lisp
@node Saving outgoing messages
@section Saving outgoing messages
2013-08-24 10:17:00 +02:00
Like @code{mu4e-refile-folder}, the variable @code{mu4e-sent-folder} can also
be set to a function, in order to dynamically determine the save folder. One
might, for example, wish to automatically put messages going to mailing lists
into the trash (because you'll receive them back from the list anyway). If you
have set up the variable @code{my-mu4e-mailing-lists} as mentioned, you can
use the following function to determine a save folder:
@lisp
(defun my-mu4e-sent-folder-function (msg)
"Set the sent folder for the current message."
(let ((from-address (message-field-value "From"))
(to-address (message-field-value "To")))
(cond
((string-match "my.address@@account1.tld" from-address)
(if (member* to-address my-mu4e-mailing-lists
:test #'(lambda (x y)
(string-match (car y) x)))
"/Trash"
"/Account1/Sent"))
((string-match "my.address@@gmail.com" from-address)
"/Gmail/Sent Mail")
(t (mu4e-ask-maildir-check-exists "Save message to maildir: ")))))
@end lisp
Note that this function doesn't use @code{(mu4e-message-field msg
:maildir)} to determine which account the message is being sent from.
The reason is that that the function in @code{mu4e-sent-folder} is
called when you send the message, but before mu4e has created the
message struct from the compose buffer, so that
@code{mu4e-message-field} cannot be used. Instead, the function uses
@code{message-field-value}, which extracts the values of the headers in
the compose buffer. This means that it is not possible to extract the
account name from the message's maildir, so instead the from address is
used to determine the account.
Again, the function shows three different possibilities: for the first
account (@t{my.address@@account1.tld}) it uses
@code{my-mu4e-mailing-lists} again to determine if the message goes to a
mailing list. If so, the message is put in the trash folder, if not, it
is saved in @t{/Account1/Sent}. For the second (Gmail) account, sent
mail is simply saved in the Sent Mail folder.
If the from address is not associated with Account1 or with the Gmail
account, the function uses @code{mu4e-ask-maildir-check-exists} to ask
the user for a maildir to save the message in.
@node Fancy characters and Inconsolata
@section Fancy characters and Inconsolata
When using 'fancy characters' (@code{mu4e-use-fancy-chars}) with the
@emph{Inconsolata}-font (and likely others as well), the display may be
2014-10-19 11:04:11 +02:00
slightly off; the reason for this issue is that Inconsolata does not
contain the glyphs for the 'fancy' arrows and the glyphs that are used
as replacements are too high.
To fix this, you can use something like the following workaround (in your
@t{.emacs}-file):
@lisp
(if (equal window-system 'x)
(progn
(set-fontset-font "fontset-default" 'unicode "Dejavu Sans Mono")
(set-face-font 'default "Inconsolata-10")))
@end lisp
2014-05-25 03:15:43 +02:00
@node Confirmation before sending
@section Confirmation before sending
To protect yourself from sending messages too hastily, you can add a
final confirmation, which you can of course make as elaborate as you
wish.
@lisp
(add-hook 'message-send-hook
(lambda ()
(unless (yes-or-no-p "Sure you want to send this?")
(signal 'quit nil))))
@end lisp
2011-12-22 23:39:32 +01:00
@node How it works
@appendix How it works
2011-12-22 23:39:32 +01:00
2014-05-25 03:15:43 +02:00
While perhaps not interesting for all users of @t{mu4e}, some curious
souls may want to know how @t{mu4e} does its job.
2011-12-22 23:39:32 +01:00
@menu
* High-level overview::
* mu server::
* Reading from the server::
2012-08-20 22:15:55 +02:00
* The message s-expression::
2011-12-22 23:39:32 +01:00
@end menu
@node High-level overview
@section High-level overview
At a high level, we can summarize the structure of the @t{mu4e} system using
2011-12-22 23:39:32 +01:00
some ascii-art:
2012-10-11 16:50:32 +02:00
@cartouche
2011-12-22 23:39:32 +01:00
@example
+---------+
| emacs |
| +------+
+----| mu4e | --> send mail (smtpmail)
+------+
2011-12-23 18:09:03 +01:00
| A
V | ---/ search, view, move mail
2011-12-22 23:39:32 +01:00
+---------+ \
| mu |
+---------+
| A
V |
+---------+
| Maildir | <--- receive mail (fetchmail,
+---------+ offlineimap, ...)
@end example
2012-10-11 16:50:32 +02:00
@end cartouche
2011-12-22 23:39:32 +01:00
In words:
@itemize
@item Your e-mail messages are stored in a Maildir-directory
2012-10-16 20:43:49 +02:00
(typically, @file{~/Maildir} and its subdirectories), and new mail comes in
using tools like @t{fetchmail}, @t{offlineimap}, or through a local mail
server.
2012-10-14 16:00:25 +02:00
@item @t{mu} indexes these messages periodically, so you can quickly search for
them. @t{mu} can run in a special @t{server}-mode, where it provides services
to client software.
2012-10-14 16:00:25 +02:00
@item @t{mu4e}, which runs inside @command{emacs} is
2013-05-21 19:11:11 +02:00
such a client; it communicates with @command{mu} (in its @t{server}-mode to
search for messages, and manipulate them.
2012-10-14 16:00:25 +02:00
@item @t{mu4e} uses the facilities
offered by @command{emacs} (the Gnus message editor and @t{smtpmail}) to send
messages.
2011-12-22 23:39:32 +01:00
@end itemize
@node mu server
@section @t{mu server}
@t{mu4e} is based on the @t{mu} e-mail searching/indexer. The latter is a
C-program; there are different ways to communicate with a client that is
emacs-based.
One way to implement this, would be to call the @t{mu} command-line tool with
2012-10-14 16:00:25 +02:00
some parameters and then parse the output. In fact, that was the first
approach -- @t{mu4e} would invoke e.g., @t{mu find} and process the output in
@command{emacs}.
2011-12-22 23:39:32 +01:00
2012-10-14 16:00:25 +02:00
However, with this approach, we need to load the entire e-mail @emph{Xapian}
2011-12-22 23:39:32 +01:00
database (in which the message is stored) for each invocation. Wouldn't it be
nicer to keep a running @t{mu} instance around? Indeed, it would - and thus,
2012-10-14 16:00:25 +02:00
the @t{mu server} sub-command was born. Running @t{mu server} starts a simple
shell, in which you can give commands to @command{mu}, which then spits out
the results/errors. @command{mu server} is not meant for humans, but it can be
used manually, which is great for debugging.
2011-12-22 23:39:32 +01:00
@node Reading from the server
@section Reading from the server
In the design, the next question was what format @t{mu} should use for its
2012-10-14 16:00:25 +02:00
output for @t{mu4e} (@command{emacs}) to process. Some other programs use
2011-12-22 23:39:32 +01:00
@abbr{JSON} here, but it seemed easier (and possibly, more efficient) just to
2012-10-14 16:00:25 +02:00
talk to @command{emacs} in its native language: @emph{s-expressions}, and
interpret those using the @command{emacs}-function
@code{read-from-string}. See @ref{The message s-expression} for details on the
format.
2011-12-22 23:39:32 +01:00
2012-10-14 16:00:25 +02:00
So, now let's look how we process the data from @t{mu server} in
@command{emacs}. We'll leave out a lot of detail, @t{mu4e}-specifics, and look
at a bit more generic approach.
2011-12-22 23:39:32 +01:00
2012-04-30 07:16:44 +02:00
The first thing to do is to create a process (for example, with
2012-09-30 19:12:07 +02:00
@code{start-process}), and then register a filter function for it, which is
invoked whenever the process has some data for us. Something like:
2011-12-22 23:39:32 +01:00
2012-04-06 10:00:39 +02:00
@lisp
2011-12-22 23:39:32 +01:00
(let ((proc (start-process <arguments>)))
(set-process-filter proc 'my-process-filter)
(set-process-sentinel proc 'my-process-sentinel))
2012-04-06 10:00:39 +02:00
@end lisp
2011-12-23 18:09:03 +01:00
2012-10-14 16:00:25 +02:00
Note, the process sentinel is invoked when the process is terminated -- so
there you can clean things up. The function @code{my-process-filter} is a
user-defined function that takes the process and the chunk of output as
arguments; in @t{mu4e} it looks something like (pseudo-lisp):
2011-12-22 23:39:32 +01:00
2012-04-06 10:00:39 +02:00
@lisp
2011-12-22 23:39:32 +01:00
(defun my-process-filter (proc str)
;; mu4e-buf: a global string variable to which data gets appended
;; as we receive it
2011-12-23 18:09:03 +01:00
(setq mu4e-buf (concat mu4e-buf str))
2011-12-22 23:39:32 +01:00
(when <we-have-received-a-full-expression>
2011-12-23 18:09:03 +01:00
<eat-expression-from mu4e-buf>
2011-12-22 23:39:32 +01:00
<evaluate-expression>))
2012-04-06 10:00:39 +02:00
@end lisp
2011-12-22 23:39:32 +01:00
@code{<evaluate-expression>} de-multiplexes the s-expression we got. For
2012-09-30 19:12:07 +02:00
example, if the s-expression looks like an e-mail message header, it is
processed by the header-handling function, which appends it to the header
list. If the s-expression looks like an error message, it is reported to the
user. And so on.
2011-12-22 23:39:32 +01:00
2012-04-11 01:11:47 +02:00
The language between frontend and backend is documented in the @t{mu-server}
2012-10-14 16:00:25 +02:00
man-page. @t{mu4e} can log these communications; you can use @kbd{M-x
mu4e-toggle-logging} to turn logging on and off, and you can view the log
2012-10-14 16:00:25 +02:00
using @kbd{M-x mu4e-show-log} (@key{$}).
@node The message s-expression
@section The message s-expression
2012-04-24 21:37:50 +02:00
A typical message s-expression looks something like the following:
@lisp
(:docid 32461
:from (("Nikola Tesla" . "niko@@example.com"))
:to (("Thomas Edison" . "tom@@example.com"))
:cc (("Rupert The Monkey" . "rupert@@example.com"))
:subject "RE: what about the 50K?"
:date (20369 17624 0)
:size 4337
2012-10-14 16:00:25 +02:00
:message-id "C8233AB82D81EE81AF0114E4E74@@123213.mail.example.com"
:path "/home/tom/Maildir/INBOX/cur/133443243973_1.10027.atlas:2,S"
:maildir "/INBOX"
:priority normal
:flags (seen)
:parts ( (:index 1 :mime-type "text/plain" :size 12345 :attachment nil)
2012-09-28 16:12:09 +02:00
(:index 2 :name "photo.jpg" :mime-type "image/jpeg"
:size 147331 :attachment t)
(:index 3 :name "book.pdf" :mime-type "application/pdf"
:size 192220 :attachment t))
2012-10-14 16:00:25 +02:00
:references ("C8384574032D81EE81AF0114E4E74@@123213.mail.example.com"
"38203498230942D81EE81AF0114E4E74@@123213.mail.example.com")
:in-reply-to "38203498230942D81EE81AF0114E4E74@@123213.mail.example.com"
:body-txt "Hi Tom,
....
2013-04-17 20:04:42 +02:00
")
@end lisp
This s-expression forms a property list (@t{plist}), and we can get values
from it using @t{plist-get}; for example @code{(plist-get msg :subject)} would
get you the message subject. However, it's better to use the function
2012-09-28 16:12:09 +02:00
@code{mu4e-message-field} to shield you from some of the implementation
details that are subject to change; and see the other convenience functions in
@file{mu4e-message.el}.
Some notes on the format:
@itemize
@item The address fields are @emph{lists} of pairs @code{(name . email)},
where @t{name} can be nil.
2012-10-14 16:00:25 +02:00
@item The date is in format @command{emacs} uses (for example in
@code{current-time}).@footnote{Emacs 32-bit integers have only 29 bits
2012-10-14 16:00:25 +02:00
available for the actual number; the other bits are use by @command{emacs} for
internal purposes. Therefore, we need to split @t{time_t} in two numbers.}
@item Attachments are a list of elements with fields @t{:index} (the number of
the MIME-part), @t{:name} (the file name, if any), @t{:mime-type} (the
MIME-type, if any) and @t{:size} (the size in bytes, if any).
@item Messages in the @ref{Headers view} come from the database and do not have
@t{:attachments}. @t{:body-txt} or @t{:body-html} fields. Message in the
@ref{Message view} use the actual message file, and do include these fields.
@end itemize
2012-04-11 01:11:47 +02:00
@subsection Example: ping-pong
2012-10-14 16:00:25 +02:00
As an example of the communication between @t{mu4e} and @command{mu}, let's
look at the @t{ping-pong}-sequence. When @t{mu4e} starts, it sends a command
2013-07-06 09:47:15 +02:00
@t{ping} to the @t{mu server} backend, to learn about its version. @t{mu
2012-10-14 16:00:25 +02:00
server} then responds with a @t{pong} s-expression to provide this information
(this is implemented in @file{mu-cmd-server.c}).
2012-04-11 01:11:47 +02:00
We start this sequence when @t{mu4e} is invoked (when the program is
2012-09-30 19:12:07 +02:00
started). It calls @t{mu4e-proc-ping}, and registers a (lambda) function for
@t{mu4e-proc-pong-func}, to handle the response.
2012-04-11 01:11:47 +02:00
@verbatim
-> cmd:ping
2012-04-11 01:11:47 +02:00
<- (pong "mu" :version "x.x.x" :doccount 10000)
@end verbatim
When we receive such a @t{pong} (in @file{mu4e-proc.el}), the lambda function
2012-09-30 19:12:07 +02:00
we registered is called, and it compares the version we got from the @t{pong}
with the version we expected, and raises an error, if they differ.
2012-04-11 01:11:47 +02:00
@node Logging and debugging
@appendix Logging and debugging
As explained in @ref{How it works}, @t{mu4e} communicates with its backend
(@t{mu server}) by sending commands and receiving responses (s-expressions).
For debugging purposes, it can be very useful to see this data. For this
reason, @t{mu4e} can log all these messages. Note that the 'protocol' is
documented to some extent in the @t{mu-server} manpage.
2012-10-14 16:00:25 +02:00
You can enable (and disable) logging with @kbd{M-x mu4e-toggle-logging}. The
2012-09-30 19:12:07 +02:00
log-buffer is called @t{*mu4e-log*}, and in the @ref{Main view}, @ref{Headers
2012-10-14 16:00:25 +02:00
view} and @ref{Message view}, there's a keybinding @key{$} that takes you
2012-09-30 19:12:07 +02:00
there. You can quit it by pressing @key{q}.
2012-04-16 18:33:21 +02:00
Logging can be a bit resource-intensive, so you may not want to leave it on
2012-10-14 16:00:25 +02:00
all the time. By default, the log only maintains the most recent 1200
lines. @t{mu} itself keeps a log as well, you can find this it in
2012-04-16 18:33:21 +02:00
@t{<MUHOME>/log/mu.log}, typically @t{~/.mu/log/mu.log}.
2012-01-01 21:48:11 +01:00
@node GNU Free Documentation License
@appendix GNU Free Documentation License
2012-10-22 19:27:49 +02:00
2012-10-20 14:49:53 +02:00
@include fdl.texi
2012-01-01 21:48:11 +01:00
2012-10-03 11:53:24 +02:00
@bye