]> git.cworth.org Git - obsolete/notmuch-wiki/commitdiff
emacstips: add links to relevant mails for fcc handling and address completion.
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Wed, 7 Apr 2010 20:58:24 +0000 (22:58 +0200)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Wed, 7 Apr 2010 20:58:24 +0000 (22:58 +0200)
Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
emacstips.mdwn

index a68aa5537495c52f44646a0fe53807a5f5bdb665..96e520f3d97f7c03b4df20f19052b479b5a941e8 100644 (file)
@@ -65,15 +65,18 @@ As its name implies, notmuch isn't really doing that much (which is part of its
 -----
 
 <h2 id="advanced_tips">Advanced tips and tweaks</h2>
-* <span id="fcc">How to do FCC/BCC...</span>
+* <span id="fcc">**How to do FCC/BCC...**</span>
 
   Any notmuch reply will automatically include your primary email
   address in a BCC so that any messages you send will (eventually) end
-  up in your mail store as well.
+  up in your mail store as well. But this doesn't do anything for
+  messages that you compose that are not replies.
 
-  But this doesn't do anything for messages that you compose that are
-  not replies. So we need to get sane message-mode FCC figured
-  out. Some investigation is still needed here.
+  Another method is described in [this
+  mail](http://mid.gmane.org/878wbj4nfq.fsf@servo.finestructure.net)
+  (id:878wbj4nfq.fsf@servo.finestructure.net). It involves a trivial
+  python script (which should be rewritten in lisp and integrated into
+  the notmuch frontend, really, but is not difficult to setup.
 
 * <span id="customize_notmuch_folder">How to customize notmuch-folders</span>
 
@@ -161,7 +164,7 @@ As its name implies, notmuch isn't really doing that much (which is part of its
   the rest will go to the default account.
 
 * <span id="sync_maildir_flags">how to sync notmuch tags and maildir
-  flags]</span>
+  flags</span>
 
   There is no built-in support for sunchronizing your notmuch tags
   with your imap maildir flags (seen, replied, trashed, etc). However
@@ -177,3 +180,12 @@ As its name implies, notmuch isn't really doing that much (which is part of its
   *id:1267450136-31749-1-git-send-email-Sebastian@SSpaeth.de* and can
   be viewed as a [source diff in this git
   repository](http://github.com/spaetz/notmuch-all-feature/commit/df3b087cefb85e9d16fd17540e348bcb854dd7ee).
+
+* <span id="address_completion">**how to get email address completion**</span>
+  There are 2 solutions. Use "bbdb" which allows you to maintain a mail database and gives you mail address completion with the tab key.
+
+  Alternatively, you use the notmuch database as a mail address book itself. This is how you compile the (3rd party) tool "addrlookup" to give you address completion:
+
+  - you need the addrlookup binary, first of all. Grab http://github.com/spaetz/vala-notmuch/raw/static-sources/src/addrlookup.c and build it with *cc -o addrlookup addrlookup.c `pkg-config --cflags --libs gobject-2.0` -lnotmuch*. That should give you the binary that you can test already.
+
+  - EUDC is integrated into emacs and can be used for tab completion of email addresses. The code I use is here http://gist.github.com/359425. It was announce in this mail (id:87fx3uflkx.fsf@jhu.edu) which contains links to the git repositories which contain the files.
\ No newline at end of file