Variable: gnus-outgoing-message-group

gnus-outgoing-message-group is a customizable variable defined in gnus-msg.el.gz.

This variable is obsolete since 24.1; use gnus-message-archive-group instead.

Value

nil

Documentation

All outgoing messages will be put in this group.

If you want to store all your outgoing mail and articles in the group
"nnml:archive", you set this variable to that value. This variable
can also be a list of group names.

If you want to have greater control over what group to put each message in, you can set this variable to a function that checks the current newsgroup name and then returns a suitable group name (or list of names).

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defcustom gnus-outgoing-message-group nil
  "All outgoing messages will be put in this group.
If you want to store all your outgoing mail and articles in the group
\"nnml:archive\", you set this variable to that value.  This variable
can also be a list of group names.

If you want to have greater control over what group to put each
message in, you can set this variable to a function that checks the
current newsgroup name and then returns a suitable group name (or list
of names)."
  :group 'gnus-message
  :type '(choice (const nil)
		 (function)
		 (string :tag "Group")
		 (repeat :tag "List of groups" (string :tag "Group"))))