Function: gnus-group-mail
gnus-group-mail is an autoloaded, interactive and byte-compiled
function defined in gnus-msg.el.gz.
Signature
(gnus-group-mail &optional ARG)
Documentation
Start composing a mail.
If ARG, use the group under the point to find a posting style. If ARG is 1, prompt for a group name to find the posting style.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
;;; Post news commands of Gnus group mode and summary mode
(defun gnus-group-mail (&optional arg)
"Start composing a mail.
If ARG, use the group under the point to find a posting style.
If ARG is 1, prompt for a group name to find the posting style."
(interactive "P")
(let* (;;(group gnus-newsgroup-name)
;; make sure last viewed article doesn't affect posting styles:
(gnus-article-copy)
;; (buffer (current-buffer))
(gnus-newsgroup-name
(if arg
(if (= 1 (prefix-numeric-value arg))
(gnus-group-completing-read
"Use posting style of group"
nil (gnus-read-active-file-p))
(gnus-group-group-name))
"")))
(gnus-setup-message 'message (message-mail))))