Function: org-gnus-open-nntp
org-gnus-open-nntp is a byte-compiled function defined in
ol-gnus.el.gz.
Signature
(org-gnus-open-nntp PATH)
Documentation
Follow the nntp: link specified by PATH.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol-gnus.el.gz
(defun org-gnus-open-nntp (path)
"Follow the nntp: link specified by PATH."
(let* ((spec (split-string path "/"))
(server (split-string (nth 2 spec) "@"))
(group (nth 3 spec))
(article (nth 4 spec)))
(org-gnus-follow-link
(format "nntp+%s:%s" (or (cdr server) (car server)) group)
article)))