aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-31 05:33:56 +0000
committerDan Nicolaescu2008-07-31 05:33:56 +0000
commit7c2fb837ec2f0e0a509f22ccc35f9b43476a6119 (patch)
tree7ec796ef1f109e43c8be2cc8cfb8dc579cfa8033 /lisp/mail
parent69ab3201ca6f6ef1414d678fd9cb13dd4d6f6b95 (diff)
downloademacs-7c2fb837ec2f0e0a509f22ccc35f9b43476a6119.tar.gz
emacs-7c2fb837ec2f0e0a509f22ccc35f9b43476a6119.zip
* bitmaps/README:
* xfns.c: * termcap.c: * term.c: * syswait.h: * systty.h: * systime.h: * syssignal.h: * sysdep.c: * process.h: * process.c: * print.c: * ndir.h: * lread.c: * keyboard.c: * getpagesize.h: * floatfns.c: * fileio.c: * emacs.c: * doc.c: * dispnew.c: * dired.c: * data.c: * callproc.c: * buffer.c: * README: * Makefile.in: * s/template.h: * s/msdos.h: * m/vax.h: Remove VMS support. * s/vms.h: * vlimit.h: * uaf.h: * temacs.opt: * param.h: * ioctl.h: Remove file. * descrip.mms: * compile.com: Remove file. * Create.c: Remove VMS support. * message.el (Module): * gnus-start.el (Module): * gnus-registry.el (Module): * textmodes/texinfmt.el: * nxml/nxml-enc.el: * mail/feedmail.el: * international/mule.el: * international/latexenc.el: * emulation/viper-util.el: * emulation/viper-init.el: * emulation/viper-ex.el: * emacs-lisp/bytecomp.el: * version.el: * subr.el: * startup.el: * sort.el: * shadowfile.el: * recentf.el: * printing.el: * paths.el: * minibuffer.el: * ls-lisp.el: * loadup.el: * hippie-exp.el: * finder.el: * files.el: * ediff-util.el: * ediff-ptch.el: * ediff-init.el: * ediff-diff.el: * dired.el: * dired-aux.el: * cus-edit.el: * bindings.el: * arc-mode.el: * add-log.el: Remove VMS support. * obsolete/vmsproc.el: * obsolete/vms-pmail.el: * obsolete/vms-patch.el: Remove file. * etags.c: * emacsclient.c: Remove VMS support. * termcap.src: Remove file. * README: * PROBLEMS: * MACHINES: Remove VMS info. * ediff.texi: Remove VMS support. * os.texi: * intro.texi: * files.texi: Remove VMS support. * emacs.texi: Remove VMS support. * make-dist: * README: Remove VMS support. * vms: Remove directory.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/feedmail.el17
1 files changed, 4 insertions, 13 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index dfc14c02164..d0cbbb6a89a 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -808,30 +808,21 @@ without having to answer no to the individual message prompts."
808 :type 'boolean) 808 :type 'boolean)
809 809
810 810
811;; I provided a default for VMS because someone asked for it (the
812;; normal default doesn't work there), but, puh-lease!, it is a user
813;; definable option, so if you don't like the default, change it to
814;; whatever you want. I am unable to directly test the VMS goop
815;; provided here by levitte@lp.se (Richard Levitte - VMS Whacker).
816(defcustom feedmail-queue-directory 811(defcustom feedmail-queue-directory
817 (if (memq system-type '(axp-vms vax-vms)) 812 (concat (getenv "HOME") "/mail/q")
818 (expand-file-name (concat (getenv "HOME") "[.MAIL.Q]"))
819 (concat (getenv "HOME") "/mail/q"))
820 "*Name of a directory where messages will be queued. 813 "*Name of a directory where messages will be queued.
821Directory will be created if necessary. Should be a string that 814Directory will be created if necessary. Should be a string that
822doesn't end with a slash. Default, except on VMS, is \"$HOME/mail/q\"." 815doesn't end with a slash. Default is \"$HOME/mail/q\"."
823 :group 'feedmail-queue 816 :group 'feedmail-queue
824 :type 'string 817 :type 'string
825 ) 818 )
826 819
827 820
828(defcustom feedmail-queue-draft-directory 821(defcustom feedmail-queue-draft-directory
829 (if (memq system-type '(axp-vms vax-vms)) 822 (concat (getenv "HOME") "/mail/draft")
830 (expand-file-name (concat (getenv "HOME") "[.MAIL.DRAFT]"))
831 (concat (getenv "HOME") "/mail/draft"))
832 "*Name of a directory where draft messages will be queued. 823 "*Name of a directory where draft messages will be queued.
833Directory will be created if necessary. Should be a string that 824Directory will be created if necessary. Should be a string that
834doesn't end with a slash. Default, except on VMS, is \"$HOME/mail/draft\"." 825doesn't end with a slash. Default is \"$HOME/mail/draft\"."
835 :group 'feedmail-queue 826 :group 'feedmail-queue
836 :type 'string 827 :type 'string
837 ) 828 )