emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Patch - Org Mac Outlook - Fix Call to Outlook in some cases
@ 2014-12-20 20:34 Mike McLean
  2015-04-09 13:59 ` Fwd: " Mike McLean
  0 siblings, 1 reply; 10+ messages in thread
From: Mike McLean @ 2014-12-20 20:34 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 427 bytes --]

If the user has:
- a virtual solution (Parallels, etc.)
- with Office for PC installed
- and configured to  expose WinTel applications to the Macintosh Finder

The AppleScript commands may try to select the WinTel version of "Microsoft
Outlook". This—obviously—doesn’t work. By adding the Mac ~.app~ file
extension, we reduce this confusion and more reliably call the Macintosh
version of Outlook.

TINYCHANGE

[-- Attachment #1.2: Type: text/html, Size: 597 bytes --]

[-- Attachment #2: 0001-Reduce-confusion-around-Outlook-application.patch --]
[-- Type: application/octet-stream, Size: 1711 bytes --]

From 9e9b74a7352e49ce826153fa6859da3165cb5b9b Mon Sep 17 00:00:00 2001
From: Mike McLean <mike.mclean@pobox.com>
Date: Sat, 20 Dec 2014 15:22:13 -0500
Subject: [PATCH] Reduce confusion around Outlook application
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

If the user has:
- a virtual solution (Parallels, etc.)
- with Office for PC installed
- and configured to  expose WinTel applications to the Macintosh Finder

The AppleScript commands may try to select the WinTel version of
"Microsoft Outlook". This—obviously—doesn’t work. By adding the Mac
~.app~ file extension, we reduce this confusion and more reliably call
the Macintosh version of Outlook.

TINYCHANGE
---
 contrib/lisp/org-mac-link.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el
index e0636a5..fa2aa5b 100644
--- a/contrib/lisp/org-mac-link.el
+++ b/contrib/lisp/org-mac-link.el
@@ -580,7 +580,7 @@ The links are of the form <link>::split::<name>."
   "Open a message in Outlook"
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"Microsoft Outlook.app\"\n"
     (format "open message id %s\n" (substring-no-properties msgid))
     "activate\n"
     "end tell")))
@@ -589,7 +589,7 @@ The links are of the form <link>::split::<name>."
   "AppleScript to create links to selected messages in Microsoft Outlook.app."
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"Microsoft Outlook.app\"\n"
     "set msgCount to count current messages\n"
     "if (msgCount < 1) then\n"
     "return\n"
-- 
2.2.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2014-12-20 20:34 Patch - Org Mac Outlook - Fix Call to Outlook in some cases Mike McLean
@ 2015-04-09 13:59 ` Mike McLean
  2015-04-09 14:17   ` Rasmus
                     ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Mike McLean @ 2015-04-09 13:59 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 773 bytes --]

Hello - I just noticed that this patch does not seem to have been applied.
Is there a problem with it?


---------- Forwarded message ----------
From: Mike McLean <mike.mclean@pobox.com>
Date: Sat, Dec 20, 2014 at 3:34 PM
Subject: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
To: emacs-orgmode <emacs-orgmode@gnu.org>


If the user has:
- a virtual solution (Parallels, etc.)
- with Office for PC installed
- and configured to  expose WinTel applications to the Macintosh Finder

The AppleScript commands may try to select the WinTel version of "Microsoft
Outlook". This—obviously—doesn’t work. By adding the Mac ~.app~ file
extension, we reduce this confusion and more reliably call the Macintosh
version of Outlook.

TINYCHANGE

[-- Attachment #1.2: Type: text/html, Size: 1191 bytes --]

[-- Attachment #2: 0001-Reduce-confusion-around-Outlook-application.patch --]
[-- Type: application/octet-stream, Size: 1711 bytes --]

From 9e9b74a7352e49ce826153fa6859da3165cb5b9b Mon Sep 17 00:00:00 2001
From: Mike McLean <mike.mclean@pobox.com>
Date: Sat, 20 Dec 2014 15:22:13 -0500
Subject: [PATCH] Reduce confusion around Outlook application
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

If the user has:
- a virtual solution (Parallels, etc.)
- with Office for PC installed
- and configured to  expose WinTel applications to the Macintosh Finder

The AppleScript commands may try to select the WinTel version of
"Microsoft Outlook". This—obviously—doesn’t work. By adding the Mac
~.app~ file extension, we reduce this confusion and more reliably call
the Macintosh version of Outlook.

TINYCHANGE
---
 contrib/lisp/org-mac-link.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el
index e0636a5..fa2aa5b 100644
--- a/contrib/lisp/org-mac-link.el
+++ b/contrib/lisp/org-mac-link.el
@@ -580,7 +580,7 @@ The links are of the form <link>::split::<name>."
   "Open a message in Outlook"
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"Microsoft Outlook.app\"\n"
     (format "open message id %s\n" (substring-no-properties msgid))
     "activate\n"
     "end tell")))
@@ -589,7 +589,7 @@ The links are of the form <link>::split::<name>."
   "AppleScript to create links to selected messages in Microsoft Outlook.app."
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"Microsoft Outlook.app\"\n"
     "set msgCount to count current messages\n"
     "if (msgCount < 1) then\n"
     "return\n"
-- 
2.2.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-04-09 13:59 ` Fwd: " Mike McLean
@ 2015-04-09 14:17   ` Rasmus
  2015-04-09 17:11   ` Fwd: " Alan Schmitt
  2015-04-09 17:14   ` Alan Schmitt
  2 siblings, 0 replies; 10+ messages in thread
From: Rasmus @ 2015-04-09 14:17 UTC (permalink / raw)
  To: emacs-orgmode

Hi Mike,

Mike McLean <mike.mclean@pobox.com> writes:

> Hello - I just noticed that this patch does not seem to have been applied.
> Is there a problem with it?

Probably not.  I don't think any active org developers use the macs (but I
think Carsten did).

Perhaps it should be a defcustom?  Presumably "Microsoft Outlook" without
".app" was the correct name for somebody at some point?  Again, I don't
know anything about macs so if you are sure this won't break anything for
anybody we can apply it.

—Rasmus

-- 
One thing that is clear: it's all down hill from here 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-04-09 13:59 ` Fwd: " Mike McLean
  2015-04-09 14:17   ` Rasmus
@ 2015-04-09 17:11   ` Alan Schmitt
  2015-04-09 21:27     ` Mike McLean
  2015-04-09 17:14   ` Alan Schmitt
  2 siblings, 1 reply; 10+ messages in thread
From: Alan Schmitt @ 2015-04-09 17:11 UTC (permalink / raw)
  To: Mike McLean; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 841 bytes --]

On 2015-04-09 15:59, Mike McLean <mike.mclean@pobox.com> writes:

> Hello - I just noticed that this patch does not seem to have been applied. Is
> there a problem with it?

I'd be happy to apply it. I have a question about it:

> The AppleScript commands may try to select the WinTel version of "Microsoft
> Outlook". This—obviously—doesn’t work. By adding the Mac ~.app~ file
> extension, we reduce this confusion and more reliably call the Macintosh
> version of Outlook.

I tried this AppleScript
#+begin_src applescript
tell application "Mail.app"
  activate
end tell
#+end_src

and as I ran it it got normalized to
#+begin_src applescript
tell application "Mail"
  activate
end tell
#+end_src

Does the ".app" suffix really make a difference?

Best,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 494 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-04-09 13:59 ` Fwd: " Mike McLean
  2015-04-09 14:17   ` Rasmus
  2015-04-09 17:11   ` Fwd: " Alan Schmitt
@ 2015-04-09 17:14   ` Alan Schmitt
  2 siblings, 0 replies; 10+ messages in thread
From: Alan Schmitt @ 2015-04-09 17:14 UTC (permalink / raw)
  To: Mike McLean; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

On 2015-04-09 15:59, Mike McLean <mike.mclean@pobox.com> writes:

> Hello - I just noticed that this patch does not seem to have been applied. Is
> there a problem with it?

PS: you also need to make sure the Changelog conforms to the format
described at http://orgmode.org/worg/org-contribute.html#unnumbered-10

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 494 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-04-09 17:11   ` Fwd: " Alan Schmitt
@ 2015-04-09 21:27     ` Mike McLean
  2015-06-09 20:20       ` Mike McLean
  0 siblings, 1 reply; 10+ messages in thread
From: Mike McLean @ 2015-04-09 21:27 UTC (permalink / raw)
  To: Alan Schmitt; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1806 bytes --]

@Rasmus - I created the first version of Org Mac Outlook and at the time
didn't have an active virtual running so didn't notice the difference.

Commit ff771c5c7eab5c4d4a60e9f1270319758961338d
Author:     Mike McLean <mike.mclean@pobox.com>
AuthorDate: Sat Sep 7 16:29:40 2013 -0400
Commit:     Carsten Dominik <carsten.dominik@gmail.com>
CommitDate: Sun Sep 8 07:56:30 2013 +0200

    Add Microsoft Outlook Support to org-mac-link

@Alan - It does make a different if you have "Microsoft Outlook" as a
shortcut into a Windows virtual that has been exported/exposed to the Mac
OS via something like the Parallels “Windows apps added to Launchpad”
feature. “Microsoft Outlook” may try to launch the Windows Virtual
“Microsoft Outlook.app” will force the OS X native version.



On Thu, Apr 9, 2015 at 1:11 PM, Alan Schmitt <alan.schmitt@polytechnique.org
> wrote:

> On 2015-04-09 15:59, Mike McLean <mike.mclean@pobox.com> writes:
>
> > Hello - I just noticed that this patch does not seem to have been
> applied. Is
> > there a problem with it?
>
> I'd be happy to apply it. I have a question about it:
>
> > The AppleScript commands may try to select the WinTel version of
> "Microsoft
> > Outlook". This—obviously—doesn’t work. By adding the Mac ~.app~ file
> > extension, we reduce this confusion and more reliably call the Macintosh
> > version of Outlook.
>
> I tried this AppleScript
> #+begin_src applescript
> tell application "Mail.app"
>   activate
> end tell
> #+end_src
>
> and as I ran it it got normalized to
> #+begin_src applescript
> tell application "Mail"
>   activate
> end tell
> #+end_src
>
> Does the ".app" suffix really make a difference?
>
> Best,
>
> Alan
>
> --
> OpenPGP Key ID : 040D0A3B4ED2E5C7
>

[-- Attachment #2: Type: text/html, Size: 2658 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-04-09 21:27     ` Mike McLean
@ 2015-06-09 20:20       ` Mike McLean
  2015-06-10  6:17         ` Alan Schmitt
  0 siblings, 1 reply; 10+ messages in thread
From: Mike McLean @ 2015-06-09 20:20 UTC (permalink / raw)
  To: Alan Schmitt; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2165 bytes --]

Here is a version of the patch with a (hopefully) correct Changelog format




[image: --]

Mike McLean
[image: https://]about.me/mikemclean
<https://about.me/mikemclean?promo=email_sig>


On Thu, Apr 9, 2015 at 5:27 PM, Mike McLean <mike.mclean@pobox.com> wrote:

> @Rasmus - I created the first version of Org Mac Outlook and at the time
> didn't have an active virtual running so didn't notice the difference.
>
> Commit ff771c5c7eab5c4d4a60e9f1270319758961338d
> Author:     Mike McLean <mike.mclean@pobox.com>
> AuthorDate: Sat Sep 7 16:29:40 2013 -0400
> Commit:     Carsten Dominik <carsten.dominik@gmail.com>
> CommitDate: Sun Sep 8 07:56:30 2013 +0200
>
>     Add Microsoft Outlook Support to org-mac-link
>
> @Alan - It does make a different if you have "Microsoft Outlook" as a
> shortcut into a Windows virtual that has been exported/exposed to the Mac
> OS via something like the Parallels “Windows apps added to Launchpad”
> feature. “Microsoft Outlook” may try to launch the Windows Virtual
> “Microsoft Outlook.app” will force the OS X native version.
>
>
>
> On Thu, Apr 9, 2015 at 1:11 PM, Alan Schmitt <
> alan.schmitt@polytechnique.org> wrote:
>
>> On 2015-04-09 15:59, Mike McLean <mike.mclean@pobox.com> writes:
>>
>> > Hello - I just noticed that this patch does not seem to have been
>> applied. Is
>> > there a problem with it?
>>
>> I'd be happy to apply it. I have a question about it:
>>
>> > The AppleScript commands may try to select the WinTel version of
>> "Microsoft
>> > Outlook". This—obviously—doesn’t work. By adding the Mac ~.app~ file
>> > extension, we reduce this confusion and more reliably call the Macintosh
>> > version of Outlook.
>>
>> I tried this AppleScript
>> #+begin_src applescript
>> tell application "Mail.app"
>>   activate
>> end tell
>> #+end_src
>>
>> and as I ran it it got normalized to
>> #+begin_src applescript
>> tell application "Mail"
>>   activate
>> end tell
>> #+end_src
>>
>> Does the ".app" suffix really make a difference?
>>
>> Best,
>>
>> Alan
>>
>> --
>> OpenPGP Key ID : 040D0A3B4ED2E5C7
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 7371 bytes --]

[-- Attachment #2: 0001-org-mac-link.el-Reduce-Outlook-App-confusion.patch --]
[-- Type: application/octet-stream, Size: 1923 bytes --]

From 706bd67e4cfa2242892ebdc8a06f8a44e9b9e006 Mon Sep 17 00:00:00 2001
From: Mike McLean <mike.mclean@pobox.com>
Date: Tue, 9 Jun 2015 16:09:35 -0400
Subject: [PATCH] org-mac-link.el: Reduce Outlook App confusion
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* org-mac-link.el (org-mac-outlook-message-open, org-as-get-selected-outlook-mail): Specify Microsoft Outlook.app non-ambiguously

If the user has:
- a virtual solution (Parallels, etc.)
- with Office for PC installed
- and configured to expose WinTel applications to the Macintosh Finder

The AppleScript commands may try to select the WinTel version of
"Microsoft Outlook". This—obviously—doesn’t work. By adding the Mac
~.app~ file extension and path, we reduce this confusion and more
reliably call the Macintosh version of Outlook.

TINYCHANGE
---
 contrib/lisp/org-mac-link.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el
index e0636a5..c991dfa 100644
--- a/contrib/lisp/org-mac-link.el
+++ b/contrib/lisp/org-mac-link.el
@@ -580,7 +580,7 @@ The links are of the form <link>::split::<name>."
   "Open a message in Outlook"
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"/Applications/Microsoft Office 2011/Microsoft Outlook.app\"\n"
     (format "open message id %s\n" (substring-no-properties msgid))
     "activate\n"
     "end tell")))
@@ -589,7 +589,7 @@ The links are of the form <link>::split::<name>."
   "AppleScript to create links to selected messages in Microsoft Outlook.app."
   (do-applescript
    (concat
-    "tell application \"Microsoft Outlook\"\n"
+    "tell application \"/Applications/Microsoft Office 2011/Microsoft Outlook.app\"\n"
     "set msgCount to count current messages\n"
     "if (msgCount < 1) then\n"
     "return\n"
-- 
2.4.3


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-06-09 20:20       ` Mike McLean
@ 2015-06-10  6:17         ` Alan Schmitt
  2015-12-14 16:22           ` Mike McLean
  0 siblings, 1 reply; 10+ messages in thread
From: Alan Schmitt @ 2015-06-10  6:17 UTC (permalink / raw)
  To: Mike McLean; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

On 2015-06-09 22:20, Mike McLean <mike.mclean@pobox.com> writes:

> Here is a version of the patch with a (hopefully) correct Changelog format

Applied and pushed, thanks!

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Weekly CO₂ average (2015-05-30, Mauna Loa Observatory): 403.41 ppm

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-06-10  6:17         ` Alan Schmitt
@ 2015-12-14 16:22           ` Mike McLean
  2015-12-15 10:00             ` Alan Schmitt
  0 siblings, 1 reply; 10+ messages in thread
From: Mike McLean @ 2015-12-14 16:22 UTC (permalink / raw)
  To: Alan Schmitt; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 817 bytes --]

Earlier in this thread, Rasmus suggested “Perhaps it should be a defcustom?”

With a new version (2016) of Microsoft Outlook for Mac that does not
install inside of a "Microsoft Office 2011" directory, this indeed should
be a defcustom.

This patch accomplishes that change. (It also changes the default to
/Applications/Microsoft Outlook.app which is the filesystem path of Outlook
2016.


On Wed, Jun 10, 2015 at 2:17 AM, Alan Schmitt <
alan.schmitt@polytechnique.org> wrote:

> On 2015-06-09 22:20, Mike McLean <mike.mclean@pobox.com> writes:
>
> > Here is a version of the patch with a (hopefully) correct Changelog
> format
>
> Applied and pushed, thanks!
>
> Alan
>
> --
> OpenPGP Key ID : 040D0A3B4ED2E5C7
> Weekly CO₂ average (2015-05-30, Mauna Loa Observatory): 403.41 ppm
>

[-- Attachment #1.2: Type: text/html, Size: 1479 bytes --]

[-- Attachment #2: 0001-org-mac-link.el-Make-path-to-Microsoft-Outlook-custo.patch --]
[-- Type: application/octet-stream, Size: 2483 bytes --]

From a5e8c7f4463de7c3d25ca2569cba40e60604b0c7 Mon Sep 17 00:00:00 2001
From: Mike McLean <mike.mclean@pobox.com>
Date: Mon, 14 Dec 2015 11:09:03 -0500
Subject: [PATCH] org-mac-link.el: Make path to Microsoft Outlook customizable

* org-mac-link.el (org-mac-outlook-path): New Custom String to hold the file system path to Microsoft Outlook
(org-mac-outlook-message-open, org-as-get-selected-outlook-mail): Use
 the new custom string instead of hard-coding the path to Outlook
---
 contrib/lisp/org-mac-link.el | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el
index 01556f7..25f47e1 100644
--- a/contrib/lisp/org-mac-link.el
+++ b/contrib/lisp/org-mac-link.el
@@ -21,7 +21,11 @@
 ;; Version: 1.3
 ;; Author: Alan Schmitt <alan.schmitt@polytechnique.org>
 ;; Consistently use `org-mac-paste-applescript-links'
-;; 
+;;
+;; Version 1.4
+;; Author: Mike McLean <mike.mclean@pobox.com>
+;; Make the path to Microsoft Outlook a `defcustom'
+;;
 ;; This file is not part of GNU Emacs.
 ;;
 ;; This program is free software; you can redistribute it and/or modify
@@ -113,6 +117,12 @@
   :group 'org-mac-link
   :type 'boolean)
 
+(defcustom org-mac-outlook-path "/Applications/Microsoft Outlook.app"
+  "The path to the installed copy of Microsoft Outlook. Do not escape spaces as this string will quoted in the AppleScript call."
+  :tag "Path to Microsoft Outlook"
+  :group 'org-mac-link
+  :type 'string)
+
 (defcustom org-mac-grab-devonthink-app-p t
   "Add menu option [d]EVONthink to grab links from DEVONthink Pro Office.app."
   :tag "Grab DEVONthink Pro Office.app links"
@@ -610,7 +620,7 @@ The links are of the form <link>::split::<name>."
   "Open a message in Outlook"
   (do-applescript
    (concat
-    "tell application \"/Applications/Microsoft Office 2011/Microsoft Outlook.app\"\n"
+    "tell application \"" org-mac-outlook-path "\"\n"
     (format "open message id %s\n" (substring-no-properties msgid))
     "activate\n"
     "end tell")))
@@ -619,7 +629,7 @@ The links are of the form <link>::split::<name>."
   "AppleScript to create links to selected messages in Microsoft Outlook.app."
   (do-applescript
    (concat
-    "tell application \"/Applications/Microsoft Office 2011/Microsoft Outlook.app\"\n"
+    "tell application \"" org-mac-outlook-path "\"\n"
     "set msgCount to count current messages\n"
     "if (msgCount < 1) then\n"
     "return\n"
-- 
2.6.4


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases
  2015-12-14 16:22           ` Mike McLean
@ 2015-12-15 10:00             ` Alan Schmitt
  0 siblings, 0 replies; 10+ messages in thread
From: Alan Schmitt @ 2015-12-15 10:00 UTC (permalink / raw)
  To: Mike McLean; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 709 bytes --]

On 2015-12-14 17:22, Mike McLean <mike.mclean@pobox.com> writes:

> Earlier in this thread, Rasmus suggested “Perhaps it should be a defcustom?”
>
> With a new version (2016) of Microsoft Outlook for Mac that does not install
> inside of a "Microsoft Office 2011" directory, this indeed should be a
> defcustom.
>
> This patch accomplishes that change. (It also changes the default to
> /Applications/Microsoft Outlook.app which is the filesystem path of Outlook
> 2016.

This looks good. Unless someone objects before the end of the week, I'll
push it.

Thanks!

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated December 13, 2015, Mauna Loa Obs.): 401.31 ppm

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-12-15 10:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-20 20:34 Patch - Org Mac Outlook - Fix Call to Outlook in some cases Mike McLean
2015-04-09 13:59 ` Fwd: " Mike McLean
2015-04-09 14:17   ` Rasmus
2015-04-09 17:11   ` Fwd: " Alan Schmitt
2015-04-09 21:27     ` Mike McLean
2015-06-09 20:20       ` Mike McLean
2015-06-10  6:17         ` Alan Schmitt
2015-12-14 16:22           ` Mike McLean
2015-12-15 10:00             ` Alan Schmitt
2015-04-09 17:14   ` Alan Schmitt

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).