comparison lisp/mail/feedmail.el @ 47926:5e18e835d9fa

(feedmail-nuke-body-in-fcc, feedmail-queue-draft-directory): Fix typo.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 17 Oct 2002 16:53:45 +0000
parents b61ebf167ba0
children f5dd8ebce303
comparison
equal deleted inserted replaced
47925:59510270b3ea 47926:5e18e835d9fa
426 ) 426 )
427 427
428 428
429 (defcustom feedmail-nuke-body-in-fcc nil 429 (defcustom feedmail-nuke-body-in-fcc nil
430 "*If non-nil remove body of message in copies saved via Fcc:. 430 "*If non-nil remove body of message in copies saved via Fcc:.
431 If an positive integer value, leave (up to) that many lines of the 431 If a positive integer value, leave (up to) that many lines of the
432 beginning of the body intact. The result is that the Fcc: copy will 432 beginning of the body intact. The result is that the Fcc: copy will
433 consist only of the message headers, serving as a sort of an outgoing 433 consist only of the message headers, serving as a sort of an outgoing
434 message log." 434 message log."
435 :group 'feedmail-headers 435 :group 'feedmail-headers
436 :type '(choice (const nil) (const t) integer) 436 :type '(choice (const nil) (const t) integer)
843 843
844 (defcustom feedmail-queue-draft-directory 844 (defcustom feedmail-queue-draft-directory
845 (if (memq system-type '(axp-vms vax-vms)) 845 (if (memq system-type '(axp-vms vax-vms))
846 (expand-file-name (concat (getenv "HOME") "[.MAIL.DRAFT]")) 846 (expand-file-name (concat (getenv "HOME") "[.MAIL.DRAFT]"))
847 (concat (getenv "HOME") "/mail/draft")) 847 (concat (getenv "HOME") "/mail/draft"))
848 "*Name of an directory where draft messages will be queued. 848 "*Name of a directory where draft messages will be queued.
849 Directory will be created if necessary. Should be a string that 849 Directory will be created if necessary. Should be a string that
850 doesn't end with a slash. Default, except on VMS, is \"$HOME/mail/draft\"." 850 doesn't end with a slash. Default, except on VMS, is \"$HOME/mail/draft\"."
851 :group 'feedmail-queue 851 :group 'feedmail-queue
852 :type 'string 852 :type 'string
853 ) 853 )