diff options
Diffstat (limited to 'fetchmailconf')
| -rwxr-xr-x | fetchmailconf | 12 | 
1 files changed, 8 insertions, 4 deletions
diff --git a/fetchmailconf b/fetchmailconf index d0e69674..7adf58b4 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -619,9 +619,16 @@ class ConfigurationEdit(Frame, MyWidget):          df = Frame(gf) +        ff = Frame(df) +        if self.mode != 'novice': +            # Set the postmaster +            log = LabeledEntry(ff, '     Postmaster:', self.postmaster, '14') +            log.pack(side=RIGHT, anchor=E)          # Set the poll interval -        de = LabeledEntry(df, '     Poll interval:', self.poll_interval, '14') +        de = LabeledEntry(ff, '     Poll interval:', self.poll_interval, '14')          de.pack(side=RIGHT, anchor=E) +        ff.pack() +          df.pack()          if self.mode != 'novice': @@ -641,9 +648,6 @@ class ConfigurationEdit(Frame, MyWidget):              # Set the idfile              log = LabeledEntry(gf, '     Idfile:', self.idfile, '14')              log.pack(side=RIGHT, anchor=E) -            # Set the postmaster -            log = LabeledEntry(gf, '     Postmaster:', self.postmaster, '14') -            log.pack(side=RIGHT, anchor=E)  	gf.pack(fill=X)  | 
