Function: gnus-uu-post-news-inews

gnus-uu-post-news-inews is an interactive and byte-compiled function defined in gnus-uu.el.gz.

Signature

(gnus-uu-post-news-inews)

Documentation

Posts the composed news article and encoded file.

If no file has been included, the user will be asked for a file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-post-news-inews ()
  "Posts the composed news article and encoded file.
If no file has been included, the user will be asked for a file."
  (interactive)

  (let (file-name)

    (if gnus-uu-post-inserted-file-name
	(setq file-name gnus-uu-post-inserted-file-name)
      (setq file-name (gnus-uu-post-insert-binary)))

    (gnus-uu-post-encoded file-name gnus-uu-post-threaded))
  (setq gnus-uu-post-inserted-file-name nil)
  (when gnus-uu-winconf-post-news
    (set-window-configuration gnus-uu-winconf-post-news)))