lunatechian (lunatech-ian)

one relating to, belonging to, or resembling lunatech

creating org-mode TODOs from wanderlust emails

If you are one of those five people in the world who use Emacs' wanderlust for email and org-mode, then you might find this tip useful. To create TODO items from emails, use the org-capture template. Below is the template that I use

(setq org-capture-templates '(("t" "Todo" entry
                              (file+headline "~/org/mygtd.org" "Tasks")
  " TODO %^{Brief Description} %^g\n%?\nAdded: %U" :prepend t)
                             ("j" "Journal" entry
  (file+headline "~/dump/journal.org" "")
  "\n %^{topic} %T \n%i%?\n" :prepend t)
                             ("e" "Email Todo" entry
                              (file+headline "~/org/mygtd.org" "Tasks")
                              "* TODO %^{Brief Description}\n%a\n%?Added: %U\n" :prepend t)
      ))

When you are reading an email and you want to create a TODO item from it, just do M-x org-capture and select the Email Todo (e).

Trackbacks

Trackback specific URI for this entryTrackback URL

Comments

Add Comment

Enclosing asterisks marks text as bold (*word*), underscore are made via _word_.
Standard emoticons like :-) and ;-) are converted to images.
E-Mail addresses will not be displayed and will only be used for E-Mail notifications.