summaryrefslogtreecommitdiff
path: root/mu4e
diff options
context:
space:
mode:
authorYuri D'Elia <wavexx@thregr.org>2019-04-18 16:16:16 +0200
committerYuri D'Elia <wavexx@thregr.org>2019-04-18 16:16:16 +0200
commit8eb0c2eb494ac0b70d6924a2cc1a226aa3566962 (patch)
treee202e6fa78a2ca51ddb5dee51005dde8efdca03b /mu4e
parent2ec1b460768340b5c34ef5d08ca5bae8696bd941 (diff)
Quote '@' symbols in @code section
Diffstat (limited to 'mu4e')
-rw-r--r--mu4e/mu4e.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/mu4e/mu4e.texi b/mu4e/mu4e.texi
index 4115683..f70fd1a 100644
--- a/mu4e/mu4e.texi
+++ b/mu4e/mu4e.texi
@@ -2668,16 +2668,16 @@ A short example for two contexts:
(smtpmail-smtp-service . 587))))
(make-mu4e-context-account
:name "personal"
- :user-mail-address "john@doe.xyz"
+ :user-mail-address "john@@doe.xyz"
:sent-folder "Sent"
:vars gandi-smtp-vars)
(make-mu4e-context-account
:name "work"
- :user-mail-address "john@work.org"
+ :user-mail-address "john@@work.org"
:sent-folder "Sent"
:predicate (lambda (msg)
(mu4e-message-contact-field-matches
- msg '(:from :to) "boss@work.org"))
+ msg '(:from :to) "boss@@work.org"))
:vars gandi-smtp-vars))
@end lisp