+2005-10-20 Jari Aalto <jari.aalto@cante.net>
+
+ * mail/sendmail.el (mail-setup-hook, mail-aliases)
+ (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
+ (mail-citation-prefix-regexp, mail-signature-file)
+ (mail-default-headers, mail-bury-selects-summary)
+ (mail-send-nonascii): Add autoload cookies.
+
2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
* frame.el (blink-cursor-mode): Add `mac' to the list of
:type '(choice (const nil) file)
:group 'sendmail)
+;;;###autoload
(defcustom mail-setup-hook nil
"Normal hook, run each time a new outgoing mail message is initialized.
The function `mail-setup' runs this hook."
:options '(fortune-to-signature spook mail-abbrevs-setup)
:group 'sendmail)
+;;;###autoload
(defvar mail-aliases t
"Alist of mail address aliases,
or t meaning should be initialized from your mail aliases file.
(defvar mail-alias-modtime nil
"The modification time of your mail alias file when it was last examined.")
+;;;###autoload
(defcustom mail-yank-prefix nil
"*Prefix insert on lines of yanked message being replied to.
nil means use indentation."
:type '(choice (const nil) string)
:group 'sendmail)
+;;;###autoload
(defcustom mail-indentation-spaces 3
"*Number of spaces to insert at the beginning of each cited line.
Used by `mail-yank-original' via `mail-indent-citation'."
:type 'integer
:group 'sendmail)
+
(defvar mail-yank-hooks nil
"Obsolete hook for modifying a citation just inserted in the mail buffer.
Each hook function can find the citation between (point) and (mark t).
This enables the hook functions to see the whole message header
regardless of what part of it (if any) is included in the cited text.")
+;;;###autoload
(defcustom mail-citation-prefix-regexp "[ \t]*[-a-z0-9A-Z]*>+[ \t]*\\|[ \t]*"
"*Regular expression to match a citation prefix plus whitespace.
It should match whatever sort of citation prefixes you want to handle,
:group 'sendmail)
(put 'mail-signature 'risky-local-variable t)
+;;;###autoload
(defcustom mail-signature-file "~/.signature"
"*File containing the text inserted at end of mail buffer."
:type 'file
(put 'mail-reply-action 'permanent-local t)
(put 'mail-send-actions 'permanent-local t)
+;;;###autoload
(defcustom mail-default-headers nil
"*A string containing header lines, to be inserted in outgoing messages.
It is inserted before you edit the message,
:type '(choice (const nil) string)
:group 'sendmail)
+;;;###autoload
(defcustom mail-bury-selects-summary t
"*If non-nil, try to show RMAIL summary buffer after returning from mail.
The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
:type 'boolean
:group 'sendmail)
+;;;###autoload
(defcustom mail-send-nonascii 'mime
"*Specify whether to allow sending non-ASCII characters in mail.
If t, that means do allow it. nil means don't allow it.