diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-11-04 23:23:04 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-11-04 23:23:04 +0000 |
commit | 28a9baeb83858fdb6ed6e9a31615172d7a8c6c58 (patch) | |
tree | c4980b94ec224eb5248f83f6b1b59d226379cc9a /fetchmailconf | |
parent | 8e4400dd9871f9043819b3fe50326ab47af96cfc (diff) | |
download | fetchmail-28a9baeb83858fdb6ed6e9a31615172d7a8c6c58.tar.gz fetchmail-28a9baeb83858fdb6ed6e9a31615172d7a8c6c58.tar.bz2 fetchmail-28a9baeb83858fdb6ed6e9a31615172d7a8c6c58.zip |
Added --showdots option by Thomas Jarosch <tomj@gmx.de>
svn path=/trunk/; revision=2981
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index f3d7004a..05a599ed 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -4,7 +4,7 @@ # by Eric S. Raymond, <esr@snark.thyrsus.com>. # Requires Python with Tkinter, and the following OS-dependent services: # posix, posixpath, socket -version = "1.29" +version = "1.30" from Tkinter import * from Dialog import * @@ -1747,7 +1747,10 @@ def copy_instance(toclass, fromdict): # The `optional' fields are the ones we can ignore for purposes of # conformability checking; they'll still get copied if they are # present in the dictionary. - optional = ('interface', 'monitor', 'netsec', 'ssl', 'sslkey', 'sslcert') + optional = ('interface', 'monitor', + 'netsec', + 'ssl', 'sslkey', 'sslcert', + 'showdots') class_sig = setdiff(toclass.__dict__.keys(), optional) class_sig.sort() dict_keys = setdiff(fromdict.keys(), optional) |