Function: gnus-parameter-post-method
gnus-parameter-post-method is a byte-compiled function defined in
gnus.el.gz.
Signature
(gnus-parameter-post-method NAME)
Documentation
Return a posting method for GROUP.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(gnus-define-group-parameter
post-method
:type list
:function-document
"Return a posting method for GROUP."
:variable gnus-post-method-alist
:variable-document
"Alist of regexps (to match group names) and method to be used when
posting an article."
:variable-group gnus-group-foreign
:parameter-type
'(choice :tag "Posting Method"
(const :tag "Use native server" native)
(const :tag "Use current server" current)
(list :convert-widget
(lambda (widget)
(list 'sexp :tag "Methods"
:value gnus-select-method))))
:parameter-document
"Posting method for this group.")