From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [PATCH] Add Microsoft Outlook Support to org-mac-link Date: Sun, 8 Sep 2013 07:58:48 +0200 Message-ID: References: Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) Content-Type: multipart/signed; boundary="Apple-Mail=_3E2F3B2C-EC87-453C-9135-6A1AB971A47D"; protocol="application/pgp-signature"; micalg=pgp-sha1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VIY1Q-00023W-QU for emacs-orgmode@gnu.org; Sun, 08 Sep 2013 01:59:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VIY1J-0006Qr-Qp for emacs-orgmode@gnu.org; Sun, 08 Sep 2013 01:58:56 -0400 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:35982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VIY1J-0006Qn-GC for emacs-orgmode@gnu.org; Sun, 08 Sep 2013 01:58:49 -0400 Received: by mail-wi0-f169.google.com with SMTP id hj3so2240861wib.2 for ; Sat, 07 Sep 2013 22:58:48 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Mike McLean Cc: emacs-orgmode@gnu.org --Apple-Mail=_3E2F3B2C-EC87-453C-9135-6A1AB971A47D Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 Applied, thanks. - Carsten On 7.9.2013, at 22:29, Mike McLean wrote: > * contrib/lisp/org-mac-link.el: Add =93o=94utlook to capture = descriptors along with > functions to capture links from Microsoft Outlook for Mac. >=20 > The functions here replicate those that capture from Mail.app. > --- > contrib/lisp/org-mac-link.el | 140 = +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 140 insertions(+) >=20 > diff --git a/contrib/lisp/org-mac-link.el = b/contrib/lisp/org-mac-link.el > index 59b88d2..2ff6711 100644 > --- a/contrib/lisp/org-mac-link.el > +++ b/contrib/lisp/org-mac-link.el > @@ -13,6 +13,11 @@ > ;; Version: 1.1 > ;; Keywords: org, mac, hyperlink > ;; > +;; Version: 1.2 > +;; Keywords: outlook > +;; Author: Mike McLean > +;; Add support for Microsoft Outlook for Mac as Org mode links > +;; > ;; This file is not part of GNU Emacs. > ;; > ;; This program is free software; you can redistribute it and/or = modify > @@ -51,6 +56,7 @@ > ;; Google Chrome.app - Grab the url of the frontmost tab in the = frontmost window > ;; Together.app - Grab links to the selected items in the library list > ;; Skim.app - Grab a link to the selected page in the topmost pdf = document > +;; Microsoft Outlook.app - Grab a link to the selected message in the = message list > ;; > ;; > ;; Installation: > @@ -97,6 +103,12 @@ applications and inserting them in org documents" > :group 'org-mac-link > :type 'boolean) >=20 > +(defcustom org-mac-grab-Outlook-app-p t > + "Enable menu option [o]utlook to grab links from Microsoft = Outlook.app" > + :tag "Grab Microsoft Outlook.app links" > + :group 'org-mac-link > + :type 'boolean) > + > (defcustom org-mac-grab-Addressbook-app-p t > "Enable menu option [a]ddressbook to grab links from = AddressBook.app" > :tag "Grab AddressBook.app links" > @@ -179,6 +191,7 @@ applications and inserting them in org documents" > (interactive) > (let* ((descriptors `(("F" "inder" org-mac-finder-insert-selected = ,org-mac-grab-Finder-app-p) > ("m" "ail" org-mac-message-insert-selected = ,org-mac-grab-Mail-app-p) > + ("o" "utlook" = org-mac-outlook-message-insert-selected ,org-mac-grab-Outlook-app-p) > ("a" "ddressbook" = org-mac-addressbook-insert-selected ,org-mac-grab-Addressbook-app-p) > ("s" "afari" = org-mac-safari-insert-frontmost-url ,org-mac-grab-Safari-app-p) > ("f" "irefox" = org-mac-firefox-insert-frontmost-url ,org-mac-grab-Firefox-app-p) > @@ -574,6 +587,133 @@ applications and inserting them in org = documents" >=20 > ;; > ;; > +;; Handle links from Microsoft Outlook.app > +;; > + > +(org-add-link-type "mac-outlook" 'org-mac-outlook-message-open) > + > +(defun org-mac-outlook-message-open (msgid) > + "Open a message in outlook" > + (let* ((record-id-string (format "mdfind = com_microsoft_outlook_recordID=3D=3D%s" msgid)) > + (found-message (replace-regexp-in-string "\n$" "" > + (shell-command-to-string record-id-string)))) > + (if (string=3D found-message "") > + (message "org-mac-link: error could not find Outlook message = %s" (substring-no-properties msgid)) > + (shell-command (format "open \"`mdfind = com_microsoft_outlook_recordID=3D=3D%s`\"" msgid))))) > + > +(defun org-as-get-selected-outlook-mail () > + "AppleScript to create links to selected messages in Microsoft = Outlook.app." > + (do-applescript > + (concat > + "tell application \"Microsoft Outlook\"\n" > + "set msgCount to count current messages\n" > + "if (msgCount < 1) then\n" > + "return\n" > + "end if\n" > + "set theLinkList to {}\n" > + "set theSelection to (get current messages)\n" > + "repeat with theMessage in theSelection\n" > + "set theID to id of theMessage as string\n" > + "set theURL to \"mac-outlook:\" & theID\n" > + "set theSubject to subject of theMessage\n" > + "set theLink to theURL & \"::split::\" & theSubject & \"\n\"\n" > + "copy theLink to end of theLinkList\n" > + "end repeat\n" > + "return theLinkList as string\n" > + "end tell"))) > + > +(defun org-sh-get-flagged-outlook-mail () > + "Shell commands to create links to flagged messages in Microsoft = Outlook.app." > + (mapconcat > + (lambda (x) "" > + (concat > + "mac-outlook:" > + (mapconcat > + (lambda (y) "" y) > + (split-string > + (shell-command-to-string > + (format "mdls -raw -name com_microsoft_outlook_recordID -name = kMDItemDisplayName \"%s\"" x)) > + "\000") > + "::split::") > + "\n")) > + (with-temp-buffer > + (let ((coding-system-for-read (or file-name-coding-system = 'utf-8)) > + (coding-system-for-write 'utf-8)) > + (shell-command > + "mdfind com_microsoft_outlook_flagged=3D=3D1" > + (current-buffer))) > + (split-string > + (buffer-string) "\n" t)) > + "")) > + > +(defun org-mac-outlook-message-get-links (&optional select-or-flag) > + "Create links to the messages currently selected or flagged in = Microsoft Outlook.app. > +This will use AppleScript to get the message-id and the subject of = the > +messages in Microsoft Outlook.app and make a link out of it. > +When SELECT-OR-FLAG is \"s\", get the selected messages (this is also > +the default). When SELECT-OR-FLAG is \"f\", get the flagged = messages. > +The Org-syntax text will be pushed to the kill ring, and also = returned." > + (interactive "sLink to (s)elected or (f)lagged messages: ") > + (setq select-or-flag (or select-or-flag "s")) > + (message "Org Mac Outlook: searching mailboxes...") > + (let* ((as-link-list > + (if (string=3D select-or-flag "s") > + (org-as-get-selected-outlook-mail) > + (if (string=3D select-or-flag "f") > + (org-sh-get-flagged-outlook-mail) > + (error "Please select \"s\" or \"f\"")))) > + (link-list > + (mapcar > + (lambda (x) (if (string-match "\\`\"\\(.*\\)\"\\'" x) = (setq x (match-string 1 x))) x) > + (split-string as-link-list "[\r\n]+"))) > + split-link URL description orglink orglink-insert rtn = orglink-list) > + (while link-list > + (setq split-link (split-string (pop link-list) "::split::")) > + (setq URL (car split-link)) > + (setq description (cadr split-link)) > + (when (not (string=3D URL "")) > + (setq orglink (org-make-link-string URL description)) > + (push orglink orglink-list))) > + (setq rtn (mapconcat 'identity orglink-list "\n")) > + (kill-new rtn) > + rtn)) > + > +(defun org-mac-outlook-message-insert-selected () > + "Insert a link to the messages currently selected in Microsoft = Outlook.app. > +This will use AppleScript to get the message-id and the subject of = the > +active mail in Microsoft Outlook.app and make a link out of it." > + (interactive) > + (insert (org-mac-outlook-message-get-links "s"))) > + > +(defun org-mac-outlook-message-insert-flagged (org-buffer = org-heading) > + "Asks for an org buffer and a heading within it, and replace = message links. > +If heading exists, delete all mac-outlook:// links within heading's = first > +level. If heading doesn't exist, create it at point-max. Insert > +list of mac-outlook:// links to flagged mail after heading." > + (interactive "bBuffer in which to insert links: \nsHeading after = which to insert links: ") > + (with-current-buffer org-buffer > + (goto-char (point-min)) > + (let ((isearch-forward t) > + (message-re = "\\[\\[\\(mac-outlook:\\)\\([^]]+\\)\\]\\(\\[\\([^]]+\\)\\]\\)?\\]")) > + (if (org-goto-local-search-headings org-heading nil t) > + (if (not (eobp)) > + (progn > + (save-excursion > + (while (re-search-forward > + message-re (save-excursion = (outline-next-heading)) t) > + (delete-region (match-beginning 0) (match-end = 0))) > + (insert "\n" (org-mac-outlook-message-get-links = "f"))) > + (flush-lines "^$" (point) (outline-next-heading))) > + (insert "\n" (org-mac-outlook-message-get-links "f"))) > + (goto-char (point-max)) > + (insert "\n") > + (org-insert-heading nil t) > + (insert org-heading "\n" (org-mac-outlook-message-get-links = "f")))))) > + > + > +=0C > +;; > +;; > ;; Handle links from Mail.app > ;; >=20 > --=20 > 1.8.3.3 >=20 >=20 --Apple-Mail=_3E2F3B2C-EC87-453C-9135-6A1AB971A47D Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAlIsEhgACgkQ9hweYzZiJkxLUACeIxtt2aocwnbuL+n66lWC3FgV rY8AoKALbTkGkGJekLiMFNuXHN6MBhXv =5BZq -----END PGP SIGNATURE----- --Apple-Mail=_3E2F3B2C-EC87-453C-9135-6A1AB971A47D--