Re: [Orgmode] Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread Jason F. McBrayer
Manish [EMAIL PROTECTED] writes:

 I have to use Office and envy folks that can link to their emails
 (Gnus, VM etc.) and contacts (bbdb) from Org mode.  So I was looking
 around and found that links to Outlook items (emails, meetings,
 contacts etc.)  of the form Outlook:GUID can be stored and opened
 from other applications.  The links can be created (copied to
 clipboard) using Outlook Linker utility as described in [1].

(w32-shell-execute open outlook:blahblah) should do what you need.
The tricky part is getting the GUID into Emacs (requires gratis but
proprietary utility you link to).

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread Jason F. McBrayer
[EMAIL PROTECTED] (Jason F. McBrayer) writes:

 Manish [EMAIL PROTECTED] writes:

 I have to use Office and envy folks that can link to their emails
 (Gnus, VM etc.) and contacts (bbdb) from Org mode.  So I was looking
 around and found that links to Outlook items (emails, meetings,
 contacts etc.)  of the form Outlook:GUID can be stored and opened
 from other applications.  The links can be created (copied to
 clipboard) using Outlook Linker utility as described in [1].

 (w32-shell-execute open outlook:blahblah) should do what you need.
 The tricky part is getting the GUID into Emacs (requires gratis but
 proprietary utility you link to).

Note: there is a better way of getting the GUID here:  doesn't require
you to install an extra program, just add a macro to your Outlook
settings:

http://mutable.net/blog/archive/2006/09/02/how_to_hyperlink_to_microsoft_outlook_messages.aspx

Now I just need to teach org-mode how to use w32-shell-execute to follow
those links...

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread Jason F. McBrayer
[EMAIL PROTECTED] (Jason F. McBrayer) writes:

 Note: there is a better way of getting the GUID here:  doesn't require
 you to install an extra program, just add a macro to your Outlook
 settings:

 http://mutable.net/blog/archive/2006/09/02/how_to_hyperlink_to_microsoft_outlook_messages.aspx

 Now I just need to teach org-mode how to use w32-shell-execute to follow
 those links...

Right (trivial):

(defun org-open-outlook-url (uid)
  Open an outlook format url
  (interactive sGUID: )
  (w32-shell-execute nil (format Outlook:%s uid)))
(org-add-link-type Outlook 'org-open-outlook-url)

I've now got a little toolbar icon now in Outlook that will copy a link
which I can yank right into org, and org is capable of following it.
Very trivial modification of the macro above to get it to output
fully-formatted org-mode links.

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread R. P. Dillon

Jason F. McBrayer wrote:

Manish [EMAIL PROTECTED] writes:

  

I have to use Office and envy folks that can link to their emails
(Gnus, VM etc.) and contacts (bbdb) from Org mode.  So I was looking
around and found that links to Outlook items (emails, meetings,
contacts etc.)  of the form Outlook:GUID can be stored and opened
from other applications.  The links can be created (copied to
clipboard) using Outlook Linker utility as described in [1].



(w32-shell-execute open outlook:blahblah) should do what you need.
The tricky part is getting the GUID into Emacs (requires gratis but
proprietary utility you link to).

  


Does anyone know if this type of linking is possible with Thunderbird?  
Some Googling hasn't turned up anything, so maybe the solution is to 
switch to GNUs.  I like to use org-mode as my central repository of 
information, and linking to email messages would really round out that 
functionality.



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread Jason F. McBrayer
R. P. Dillon [EMAIL PROTECTED] writes:

 Does anyone know if this type of linking is possible with Thunderbird?
 Some Googling hasn't turned up anything, so maybe the solution is to
 switch to GNUs.  I like to use org-mode as my central repository of
 information, and linking to email messages would really round out that
 functionality.

If you have the freedom to use Thunderbird, you have the freedom to use
Gnus!  At work, I'm stuck with Outlook.  However, you might look at the
following thread, and see if it provides you enough to start rolling
your own solution:

http://groups.google.com/group/mozilla.dev.extensions/browse_thread/thread/a70339619f85a105/f4199f96df3ef426

You might look at this Thunderbird extension, too:

http://tobbe.nu/blog/2007/05/29/Thunderbird-extension-remote-message-id-RFC-2111/

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode