Leon <[EMAIL PROTECTED]> writes:

> When attaching a file, there is a "one line description:"? How can I
> set it default to the file name? I find it useful because when I
> download the attachment from webmail interface the description is the
> file name to save.

You could write a function that wraps around mml-attach-file and use
that instead. E.g. (untested):

--8<---------------cut here---------------start------------->8---
(defun my-attach-file (file &optional type description disposition)
  (interactive
   (let* ((file (mml-minibuffer-read-file "Attach file: "))
          (type (mml-minibuffer-read-type file))
          (description
           (read-string
            (format "One line description (default %s): " file) nil nil file))
          (disposition (mml-minibuffer-read-disposition type)))
          (list file type description disposition)))
  (mml-attach-file file type description disposition))
--8<---------------cut here---------------end--------------->8---

regards,
andreas


_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to