[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] More on org-mew
From: |
Harri Kiiskinen |
Subject: |
[Orgmode] More on org-mew |
Date: |
Mon, 17 Nov 2008 13:17:39 +0200 (EET) |
Hello,
some more info on my previous report on the broken links to refiled
mails in Mew.
From: Harri Kiiskinen <address@hidden>
Subject: org-mew.el: Bug in creating links to messages marked for refile
Date: Mon, 17 Nov 2008 12:07:51 +0200 (EET)
> Now, I set the refile mark on the message, and create a new link to
> it. The result is:
>
> [[mew:address@hidden
> from Harri Kiiskinen: test]]
>
> Now, the mew case is still set to UTU, meaning that mew will refile
> the message to folder UTU:%2008, but the link that is created by
> org-mew-store-link does not include the case information.
This patch seems to give correct links:
---------------------------------------------------
diff --git a/lisp/org-mew.el b/lisp/org-mew.el
index 2e6cb9b..453ce30 100644
--- a/lisp/org-mew.el
+++ b/lisp/org-mew.el
@@ -76,7 +76,10 @@
(folder-name
(if (and org-mew-link-to-refile-destination
(eq mark-info ?o)) ; marked as refile
- (nth 1 (mew-refile-get msgnum))
+ (concat
+ (mew-sinfo-get-case)
+ ":"
+ (nth 1 (mew-refile-get msgnum)))
(mew-summary-folder-name)))
message-id from to subject desc link)
(save-window-excursion
--------------------------------------------------
It uses mew-sinfo-get-case, which is buffer-local (or something), so
the refile always stays in the same 'world' as the original, to use
the Mew terminology.
The links produced to a message marked for refile and to a message already
in the folder are identical, so things should be ok:
[[mew:UTU:address@hidden from Harri Kiiskinen: test]]
[[mew:UTU:address@hidden from Harri Kiiskinen: test]]
Another problem appears, though, and this is definitively beyond me.
Now, the problem is, that if these are closed, i.e. look like this:
Email from Harri Kiiskinen: test
I can't open either with org-open-at-point. Both tell me "Message not
found". But when the links are 'open', like this:
[[mew:UTU:address@hidden
from Harri Kiiskinen: test]
and the point is on the link text ("mew:...") itself,
org-open-at-point works nicely and opens the respective message in
Mew.
Baffled,
Harri K.