Re: [PATCH] ol-wl: add maildir and rss to folder types

2020-11-12 Thread Kyle Meyer
Chen Li writes:

> with this commit, org-link can open maildir and rss folder.
>
> more to read: http://wanderlust.github.io/wl-docs/wl.html#Folders~

Thanks.

I don't use wanderlust and haven't tested it out, but that looks
straightforward enough.  Applied (1cc04), tacking on a change log to
the message.

Note that contrib/ is being moved to a separate repo [1], with the
eventual goal of each file being maintained elsewhere, in case you or
someone you know is interested :)

  [1] https://orgmode.org/list/87wnzfy60h@bzg.fr



[PATCH] ol-wl: add maildir and rss to folder types

2020-11-07 Thread Chen Li
with this commit, org-link can open maildir and rss folder.

more to read: http://wanderlust.github.io/wl-docs/wl.html#Folders~
---
 contrib/lisp/ol-wl.el | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/contrib/lisp/ol-wl.el b/contrib/lisp/ol-wl.el
index 8c716ad..bf94531 100644
--- a/contrib/lisp/ol-wl.el
+++ b/contrib/lisp/ol-wl.el
@@ -104,9 +104,10 @@ googlegroups otherwise."
 (defvar elmo-nntp-default-server)
 
 (defconst org-wl-folder-types
-  '(("%" . imap) ("-" . nntp) ("+" . mh) ("=" . spool)
-("$" . archive) ("&" . pop) ("@" . shimbun) ("[" . search)
-("*" . multi) ("/" . filter) ("|" . pipe) ("'" . internal))
+  '(("%" . imap) ("-" . nntp) ("+" . mh) ("." . maildir)
+("=" . spool) ("$" . archive) ("&" . pop) ("@" . shimbun)
+("rss" . rss) ("[" . search) ("*" . multi) ("/" . filter)
+("|" . pipe) ("'" . internal) )
   "List of folder indicators.  See Wanderlust manual, section 3.")
 
 ;; Install the link type
-- 
2.29.2