From f9022e929c71700947309c458733937ee19a0635 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 13 Dec 2012 23:54:05 +0100 Subject: [PATCH] Add code to previous FAQ and fix the link. --- org-faq.org | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/org-faq.org b/org-faq.org index 3009395..0e09408 100644 --- a/org-faq.org +++ b/org-faq.org @@ -1929,7 +1929,19 @@ consult the [[http://orgmode.org/worg/org-contrib/org-wikinodes.html][documentat ** Can I create links to Thunderbirds emails? -Yes, see this: [[http://mid.gmane.org/k9tuql$192$1%2540ger.gmane.org][from Christoph Herzog: Linking to Thunderbird]] +Yes, see this: [[http://mid.gmane.org/ka42mn$mn9$1%2540ger.gmane.org][from Christoph Herzog: Re: Linking to Thunderbird (correction)]] + +#+BEGIN_SRC emacs-lisp +(require 'org) + +(org-add-link-type "thunderlink" 'org-thunderlink-open) + +(defun org-thunderlink-open (path) + "Opens an email in Thunderbird with ThunderLink." + (start-process "myname" nil "thunderbird" "-thunderlink" (concat "thunderlink:" path))) + +(provide 'org-thunderlink) +#+END_SRC * Plain Lists :PROPERTIES: -- 1.7.2.5