aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-05-26 05:50:49 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-05-26 05:50:49 +0000
commit65a1cca16337d23b2112df903622d4d3168ceae5 (patch)
tree8f68c5a23f1aa49cb2a7d69f62bd4147cdbfbf06
parent69c61e3ad7ec60d9c286e72d2857119fd49f7ca3 (diff)
downloadfetchmail-65a1cca16337d23b2112df903622d4d3168ceae5.tar.gz
fetchmail-65a1cca16337d23b2112df903622d4d3168ceae5.tar.bz2
fetchmail-65a1cca16337d23b2112df903622d4d3168ceae5.zip
Cleanup.
svn path=/trunk/; revision=1844
-rwxr-xr-xfetchmailconf12
1 files changed, 9 insertions, 3 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 2ae6042c..ad84ea80 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -757,6 +757,8 @@ class ServerEdit(Frame):
def save(self):
self.gather()
+ for u in self.server.users:
+ print "Attempting to save for a user named " + u.remote
Widget.destroy(self.master)
def refreshPort(self):
@@ -1025,7 +1027,8 @@ class UserEdit(Frame):
#
-# And this is the main sequence
+# Top-level window that offers either novice or expert mode
+# (but not both at once; it disappears when one is selected).
#
class MainWindow(Frame):
@@ -1067,8 +1070,11 @@ Or you can just select `Quit' to leave the configurator now.
ConfigurationEdit(Configuration, 'expert')
def leave(self):
- if ConfirmQuit(self, "configuration editor"):
- self.quit()
+ self.quit()
+
+#
+# And this is the main sequence
+#
def intersect(list1, list2):
# Compute set intersection of lists