1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Fix a blaringly obvious bug: should be ``info exists env(MAIL)'', not

``info exists $env(MAIL)''.
This commit is contained in:
Mikhail Teterin 2001-03-06 04:53:05 +00:00
parent 4b9de71457
commit efc733172c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39112

View File

@ -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)"