Function: gnus-request-post

gnus-request-post is an autoloaded and byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-request-post COMMAND-METHOD)

Documentation

Post the current buffer using COMMAND-METHOD.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-request-post (command-method)
  "Post the current buffer using COMMAND-METHOD."
  (let ((gnus-command-method
         (if (stringp command-method)
             (gnus-server-to-method command-method)
           command-method)))
    (funcall (gnus-get-function gnus-command-method 'request-post)
             (nth 1 gnus-command-method))))