# HG changeset patch # User Roland McGrath # Date 747637539 0 # Node ID 4d3426d8b92ae0a0122aee21795fcad896c310ad # Parent d14a87abdb46e2a26de204e9000c3202836c1153 (rmail-spool-directory): Use "/var/mail/" if system-type is netbsd. diff -r d14a87abdb46 -r 4d3426d8b92a lisp/paths.el --- 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.")