aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-05-26 14:09:45 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-05-26 14:09:45 +0000
commit58c426c508ab2376a050ff0ade4cc171ccd2ab10 (patch)
tree18c7bd6e6664c1da000bb3d649df6746e8adcc16 /fetchmailconf
parent02fd5db050c01ab1d9e2c8aed5e704317464ffdc (diff)
downloadfetchmail-58c426c508ab2376a050ff0ade4cc171ccd2ab10.tar.gz
fetchmail-58c426c508ab2376a050ff0ade4cc171ccd2ab10.tar.bz2
fetchmail-58c426c508ab2376a050ff0ade4cc171ccd2ab10.zip
Done with fetch/post abstraction.
svn path=/trunk/; revision=1853
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf12
1 files changed, 1 insertions, 11 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 4615d1ff..47432538 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -539,18 +539,8 @@ class ConfigurationEdit(Frame, MyWidget):
self.master.title('fetchmail ' + self.mode + ' configurator');
self.master.iconname('fetchmail ' + self.mode + ' configurator');
Pack.config(self)
+ self.post(Controls, 'configuration')
- self.poll_interval = StringVar(self)
- self.poll_interval.set(`self.configuration.poll_interval`)
- self.syslog = BooleanVar(self)
- self.syslog.set(self.configuration.syslog)
- self.logfile = StringVar(self)
-
- if self.configuration.logfile: self.logfile.set(self.configuration.logfile);
- self.idfile = StringVar(self)
- if self.configuration.idfile: self.idfile.set(self.configuration.idfile);
- self.invisible = BooleanVar(self)
- self.invisible.set(self.configuration.invisible)
dispose_window(self,
'Configurator ' + self.mode + ' Controls',
ConfigurationEdit.mode_to_help[self.mode])