Mercurial > emacs
changeset 4691:4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Fri, 10 Sep 1993 05:05:39 +0000 |
parents | d14a87abdb46 |
children | e58fefa3c3ab |
files | lisp/paths.el |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/paths.el Fri Sep 10 05:02:57 1993 +0000 +++ b/lisp/paths.el Fri Sep 10 05:05:39 1993 +0000 @@ -100,10 +100,12 @@ Will use `gnus-startup-file'-SERVER instead if exists.") (defconst rmail-spool-directory - (if (memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu - irix silicon-graphics-unix)) - "/usr/mail/" - "/usr/spool/mail/") + (cond ((memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu + irix silicon-graphics-unix)) + "/usr/mail/") + ((eq system-type 'netbsd) + "/var/mail/") + (t "/usr/spool/mail/")) "Name of directory used by system mailer for delivering new mail. Its name should end with a slash.")