diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-26 14:09:45 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-26 14:09:45 +0000 |
commit | 58c426c508ab2376a050ff0ade4cc171ccd2ab10 (patch) | |
tree | 18c7bd6e6664c1da000bb3d649df6746e8adcc16 /fetchmailconf | |
parent | 02fd5db050c01ab1d9e2c8aed5e704317464ffdc (diff) | |
download | fetchmail-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-x | fetchmailconf | 12 |
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]) |