summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.org42
1 files changed, 1 insertions, 41 deletions
diff --git a/init.org b/init.org
index 88a29fe..6228b37 100644
--- a/init.org
+++ b/init.org
@@ -1267,7 +1267,6 @@ TODO: this is a big blob of email configuration. Document this properly!
(lilypond "(list:lilypond-devel.gnu.org)")
(eoma "(list:arm-netbook.lists.phcomp.co.uk)")
(fsfe "(subject:\"Willkommen in der FSFE\" list:coordinators.lists.fsfe.org OR list:berlin.lists.fsfe.org OR list:newsletter-en@fsfeurope.org OR list:newsletter-de@fsfeurope.org)")
- (dojo "(list:coderdojo-berlin-discussion.googlegroups.com OR to:hello@fhain.coderdojo.berlin)")
(unread "(flag:unread AND NOT flag:trashed)")
(me "(body:rekado OR body:Ricardo)"))
(setq mu4e-bookmarks
@@ -1291,8 +1290,6 @@ TODO: this is a big blob of email configuration. Document this properly!
"Lilypond" ?3)
(list (concat fsfe " " unread)
"FSFE" ?4)
- (list (concat dojo " " unread)
- "CoderDojo" ?5)
(list (concat eoma " " unread)
"EOMA68" ?6)
(list (concat emacs " " unread)
@@ -1307,8 +1304,7 @@ TODO: this is a big blob of email configuration. Document this properly!
" NOT " fsfe
" NOT " eoma
" NOT " emacs
- " NOT " security
- " NOT " dojo)
+ " NOT " security)
"Unread list messages" ?m)
(list (concat "maildir:\"/" maildir "/INBOX\" flag:flagged")
"Flagged" ?f)))))
@@ -1405,41 +1401,6 @@ I read and write email in different contexts. This is my context for private em
(mu4e-compose-signature . "Ricardo"))))
#+END_SRC
-Here’s one exclusively for handling CoderDojo email:
-
-#+BEGIN_SRC elisp
-(setq my/mu4e-context-coderdojo
- (make-mu4e-context
- :name "CoderDojo"
- :enter-func
- (lambda ()
- (mu4e-message "Switch to the CoderDojo context")
- (my/set-mu4e-bookmarks "fhaindojo"))
- :match-func
- (lambda (msg)
- (when msg
- (or (mu4e-message-contact-field-matches
- msg :to (rot13 "erxnqb@sunva.pbqreqbwb.oreyva"))
- (mu4e-message-contact-field-matches
- msg :from (rot13 "erxnqb@sunva.pbqreqbwb.oreyva"))
- (mu4e-message-contact-field-matches
- msg :to (rot13 "uryyb@sunva.pbqreqbwb.oreyva"))
- (mu4e-message-contact-field-matches
- msg :from (rot13 "uryyb@sunva.pbqreqbwb.oreyva")))))
- :vars
- `((user-mail-address . ,(rot13 "erxnqb@sunva.pbqreqbwb.oreyva"))
- (mu4e-user-mail-address-list . ,(list (rot13 "erxnqb@sunva.pbqreqbwb.oreyva")))
- (user-full-name . ,(rot13 "Evpneqb Jhezhf"))
- (mu4e-sent-folder . "/fhaindojo/Sent")
- (mu4e-trash-folder . "/fhaindojo/Trash")
- (mu4e-refile-folder . "/fhaindojo/Archive")
- (mu4e-drafts-folder . "/fhaindojo/Drafts")
- (mu4e-compose-signature . "Ricardo
-
-GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC
-https://elephly.net"))))
-#+END_SRC
-
And here’s the context for work email:
#+BEGIN_SRC elisp
@@ -1491,7 +1452,6 @@ When I’m using the workstation in the office, all I want is the work context.
(if (string= (system-name) (rot13 "ovzfo-flf02.zqp-oreyva.arg"))
(list my/mu4e-context-work)
(list my/mu4e-context-private
- my/mu4e-context-coderdojo
my/mu4e-context-work)))
#+END_SRC