+2005-10-27 Bill Wohler <wohler@newt.com>
+
+ * mh-customize.el (mh-compose-insertion, mh-x-face-file): Checkdoc
+ fixes.
+
+ * mh-mime.el (mh-mh-to-mime, mh-mml-attach-file)
+ (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt)
+ (mh-mml-secure-message-signencrypt): Ditto
+
2005-10-24 Bill Wohler <wohler@newt.com>
* mh-gnus.el: Load mml.el in order to see if
;;; Editing a Draft (:group 'mh-letter)
(defcustom mh-compose-insertion (if (locate-library "mml") 'mml 'mh)
- "Type of tags used when composing MIME messages. In addition to MH-style
-directives, MH-E also supports MML (MIME Meta Language) tags. (see Info node
-`(emacs-mime)Composing'). This option can be used to choose between them. By
-default, this option is set to \"MML\" if it is supported since it provides a
-lot more functionality. This option can also be set to \"MH\" if MH-style
-directives are preferred."
+ "Type of tags used when composing MIME messages.
+In addition to MH-style directives, MH-E also supports MML (MIME Meta
+Language) tags. (see Info node `(emacs-mime)Composing'). This option can be
+used to choose between them. By default, this option is set to \"MML\" if it
+is supported since it provides a lot more functionality. This option can also
+be set to \"MH\" if MH-style directives are preferred."
:type '(choice (const :tag "MML" mml)
(const :tag "MH" mh))
:group 'mh-letter)
The \"X-Face:\" header field, which is a low-resolution, black and white
image, can be generated using the \"compface\"
-(ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.Z) command. The
+\(ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.Z) command. The
\"Online X-Face Converter\" (http://www.dairiki.org/xface/) is a useful
resource for quick conversion of images into \"X-Face:\" header fields.
`mh-mh-to-mime-args' to \"-check\". The recipient of your message can then run
\"mhbuild -check\" on the message--\"mhbuild\" (\"mhn\") will complain if the
message has been corrupted on the way. This command only consults this option
-when given a prefix argument.
+when given a prefix argument EXTRA-ARGS.
The value of `mh-mh-to-mime-hook' is a list of functions to be called after
the message has been formatted.
(defun mh-mml-attach-file (&optional disposition)
"Add a tag to insert a MIME message part from a file.
You are prompted for the filename containing the object, the media type if it
-cannot be determined automatically, a content description and the disposition
+cannot be determined automatically, a content description and the DISPOSITION
of the attachment.
This is basically `mml-attach-file' from Gnus, modified such that a prefix
A proper multipart message is created for you when you send the message. Use
the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
(interactive (list (mh-mml-query-cryptographic-method)))
(mh-secure-message method "sign" mh-identity-pgg-default-user-id))
A proper multipart message is created for you when you send the message. Use
the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
(interactive (list (mh-mml-query-cryptographic-method)))
(mh-secure-message method "encrypt" mh-identity-pgg-default-user-id))
A proper multipart message is created for you when you send the message. Use
the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
(interactive (list (mh-mml-query-cryptographic-method)))
(mh-secure-message method "signencrypt" mh-identity-pgg-default-user-id))