From: Bastien Guerry Date: Thu, 13 Dec 2012 22:54:05 +0000 (+0100) Subject: Add code to previous FAQ and fix the link. X-Git-Tag: release_7.9.3~27 X-Git-Url: http://orgmode.org/w/?p=worg.git;a=commitdiff_plain;h=f9022e929c71700947309c458733937ee19a0635 Add code to previous FAQ and fix the link. --- 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: