diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-07-23 03:40:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-07-23 03:40:34 +0000 |
commit | 06470851ed8433e49fcb9de36f0010d2c2d6b7cc (patch) | |
tree | 9d26019b93cee176075bbb47e993d6e2ca3df998 /fetchmailconf | |
parent | b481a92175821bd7e2d014282cbf01c457b52d3a (diff) | |
download | fetchmail-06470851ed8433e49fcb9de36f0010d2c2d6b7cc.tar.gz fetchmail-06470851ed8433e49fcb9de36f0010d2c2d6b7cc.tar.bz2 fetchmail-06470851ed8433e49fcb9de36f0010d2c2d6b7cc.zip |
Minor update.
svn path=/trunk/; revision=2927
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 7f3778f7..16fc806c 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1522,8 +1522,8 @@ class UserEdit(Frame, MyWidget): self.fetchlimit, '30').pack(side=TOP, fill=X) LabeledEntry(limwin, 'Max messages to forward per poll:', self.batchlimit, '30').pack(side=TOP, fill=X) - if self.parent.server.protocol in ('IMAP', 'IMAP-K4', 'IMAP-GSS'): - LabeledEntry(limwin, 'Interval between expunges (IMAP):', + if self.parent.server.protocol != 'ETRN': + LabeledEntry(limwin, 'Interval between expunges:', self.expunge, '30').pack(side=TOP, fill=X) Checkbutton(limwin, text="Idle after each poll (IMAP only)", variable=self.idle).pack(side=TOP, anchor=W) |