Hi, The attached is the new version of org-mew.el with several new features. I would appreciate it if some of Mew users could try this. If this is fine, I would like Bastien to incorporate it to the git repo. The changes are as follows: org-mew-store-link - Works in mew message mode as well as mew summary mode. org-mew-open - Locates the message in the inbox folder given by `org-mew-inbox-folder' if the message is not found in the link's folder. - Uses id.db to search the message if the message is not found or the folder is not specified by the link. You can disable this by setting `org-mew-use-id-db' to nil. org-mew-search - new function - Shows all entries related to the message using `org-search-view'. See the docstring for details. org-mew-capture - new function - Guesses the capture template from the folder name and invoke `org-capture'. See the docstring for details. ---- My daily workflow using these features is something like this. ~/.mew.el: (define-key mew-summary-mode-map "'" 'org-mew-search) (eval-after-load "mew-summary" '(define-key mew-summary-mode-map "\C-o" 'org-mew-capture)) 1. In the Mew's inbox folder, I take a glance at new messages to find a message that requires any action. 2. If the message is a reply from somebody and associated with the existing orgmode entry, type M-x org-mew-search (or press ['] key simply) to find the entry. If I can find the entry successfully and think I should start the task right now, start the task by M-x org-agenda-clock-in. 3. If the message is a brand-new message, type M-x org-mew-capture, enter the refile folder, and the buffer to capture the message is shown up (without selecting the template by hand!). And I fill the template and type C-c C-c to complete the capture. Note that I have configured `org-capture-templates' so that the captured entry has a link to the message. Thanks, --Tokuya