summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Spaeth <Sebastian@SSpaeth.de>2010-04-29 12:42:56 +0200
committerSebastian Spaeth <Sebastian@SSpaeth.de>2010-04-29 12:42:56 +0200
commited010bc2ad1bd64550c21fd493bbd7a47ff8c5b7 (patch)
tree6c18741452bc3191f4ded5faa8eeed1b0e97ba9e
parentb1f5aa4db5546cf70dc6835570f8cc95b3e02556 (diff)
more slight reformatting
put long command on line of it's own. Indentation fixing. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
-rw-r--r--emacstips.mdwn42
1 files changed, 22 insertions, 20 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 1cdb1c3..16d0ee1 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -84,8 +84,10 @@ As its name implies, notmuch isn't really doing that much (which is part of its
relative to message-directory in which to save the mail. Enter a
directory (without the maildir /cur ending which will be appended
automatically). To customize both variables at the same time, use
- the fancy command `M-x
- customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)`.
+ the fancy command:
+
+ M-x customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)
+
This method will even allow you to select different outboxes
depending on your selected from address, if you need that
functionality. Please see the documentation on the variable in the
@@ -224,24 +226,24 @@ As its name implies, notmuch isn't really doing that much (which is part of its
`User-Agent: notmuch version 0.1-92-g3893a9a (Emacs 23.1.1/x86_64-pc-linux-gnu)`
- ;; set the User-Agent string whenever we invoke message mode
- (add-hook 'message-mode-hook '(lambda()
- ;; check if User-Agent is a required header and set it if not
- (if (not (memq 'User-Agent message-required-mail-headers))
- (setq message-required-mail-headers
- (append message-required-mail-headers '(User-Agent))))
- ;; hide the User-Agent header if not already hidden
- (if (not (memq '"^User-Agent:" message-hidden-headers))
- (setq message-hidden-headers
- (append message-hidden-headers '("^User-Agent:"))))
- ;; create user agent string
- (let ((notmuch-user-agent (concat
- (substring (shell-command-to-string (concat notmuch-command " --version")) 0 -1)
- " (Emacs " emacs-version "/"
- system-configuration ")")))
- (setq message-newsreader notmuch-user-agent))
- ))
-
+ ;; set the User-Agent string whenever we invoke message mode
+ (add-hook 'message-mode-hook '(lambda()
+ ;; check if User-Agent is a required header and set it if not
+ (if (not (memq 'User-Agent message-required-mail-headers))
+ (setq message-required-mail-headers
+ (append message-required-mail-headers '(User-Agent))))
+ ;; hide the User-Agent header if not already hidden
+ (if (not (memq '"^User-Agent:" message-hidden-headers))
+ (setq message-hidden-headers
+ (append message-hidden-headers '("^User-Agent:"))))
+ ;; create user agent string
+ (let ((notmuch-user-agent (concat
+ (substring (shell-command-to-string (concat notmuch-command " --version")) 0 -1)
+ " (Emacs " emacs-version "/"
+ system-configuration ")")))
+ (setq message-newsreader notmuch-user-agent))
+ ))
+
* <span id="sign_messages_gpg">**how to sign/encrypt my messages with
gpg**</span>