aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-01 10:03:48 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-01 10:03:48 +0000
commit98db54bf23348e671c2fe41466bcd8a3c6bb3b79 (patch)
tree767fd56c8d88857d39d6cd7fdeda95917654dd5a /conf.c
parent269aaa8d4a838752b819ed9573e34b64864f8dfa (diff)
downloadfetchmail-98db54bf23348e671c2fe41466bcd8a3c6bb3b79.tar.gz
fetchmail-98db54bf23348e671c2fe41466bcd8a3c6bb3b79.tar.bz2
fetchmail-98db54bf23348e671c2fe41466bcd8a3c6bb3b79.zip
Don't require Tkinter to read configs.
svn path=/trunk/; revision=3164
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index b348194f..b627daba 100644
--- a/conf.c
+++ b/conf.c
@@ -126,7 +126,12 @@ void dump_config(struct runctl *runp, struct query *querylist)
indent_level = 0;
- fputs("from Tkinter import TRUE, FALSE\n\n", stdout);
+ /*
+ * These had better match the values fetchmailconf is expecting!
+ * (We don't want to import them from Tkinter because the user
+ * might not have it installed.)
+ */
+ fputs("TRUE=1; FALSE=0\n\n", stdout);
/*
* We need this in order to know whether `interface' and `monitor'