diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2001-03-06 04:53:05 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2001-03-06 04:53:05 +0000 |
commit | efc733172cbd23a5801c2b294e373adceb66510c (patch) | |
tree | 47e31d30a4be03281588c1c99f447d169c503069 /mail | |
parent | This isn't called "Communicator" any more. (diff) |
Fix a blaringly obvious bug: should be ``info exists env(MAIL)'', not
``info exists $env(MAIL)''.
Notes
Notes:
svn path=/head/; revision=39112
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postilion/files/patch-af | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/postilion/files/patch-af b/mail/postilion/files/patch-af index 3c0758b5225d..30456c07fb66 100644 --- a/mail/postilion/files/patch-af +++ b/mail/postilion/files/patch-af @@ -1,9 +1,10 @@ --- postilion/options.tcl Wed Feb 23 17:27:28 2000 +++ postilion/options.tcl Mon Feb 12 19:24:36 2001 @@ -217,5 +217,5 @@ - if [info exists $env(MAIL)] { +- if [info exists $env(MAIL)] { - set option(default_folder) "INBOX file {} /var/spool/mail/$env(USER)" - } else { ++ if [info exists env(MAIL)] { set option(default_folder) "INBOX file {} $env(MAIL)" + } else { + set option(default_folder) "INBOX file {} /var/mail/$env(USER)" |