aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-05-26 03:21:58 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-05-26 03:21:58 +0000
commit1afc25e9c598e72a8c3f55f810516b0b4049ec27 (patch)
treec5ed2bc490573a1911bb1af5ea5a2ce4b53ad538 /fetchmailconf
parentb12c8d23446019568e5a6e1ca9a64d07b95a5126 (diff)
downloadfetchmail-1afc25e9c598e72a8c3f55f810516b0b4049ec27.tar.gz
fetchmail-1afc25e9c598e72a8c3f55f810516b0b4049ec27.tar.bz2
fetchmail-1afc25e9c598e72a8c3f55f810516b0b4049ec27.zip
First hack at novice configure.
svn path=/trunk/; revision=1838
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 02f3a530..dda6bd08 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -516,7 +516,7 @@ class ConfigurationEdit(Frame):
text='Fetchmail Run Controls',
bd=2).pack(side=TOP, pady=10)
- df = Frame(gf, relief=RAISED, bd=2)
+ df = Frame(gf)
# Set the poll interval
de = LabeledEntry(df, ' Poll interval:', self.poll_interval, '14')
@@ -524,7 +524,7 @@ class ConfigurationEdit(Frame):
df.pack()
if self.mode != 'novice':
- sf = Frame(gf, relief=RAISED, bd=2)
+ sf = Frame(gf)
Checkbutton(sf,
{'text':'Log to syslog?',
'variable':self.syslog,