[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[minion-cvs] Make encryptfookey optional



Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv22162/lib/mixminion/server

Modified Files:
	ServerConfig.py 
Log Message:
Make encryptfookey optional

Index: ServerConfig.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerConfig.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ServerConfig.py	5 Jan 2003 13:19:54 -0000	1.12
+++ ServerConfig.py	6 Jan 2003 05:40:46 -0000	1.13
@@ -154,13 +154,13 @@
                      'Daemon' : ('ALLOW', C._parseBoolean, "no"),
                      # Deprecated.
                      'NoDaemon' : ('ALLOW', C._parseBoolean, None),
-                     'EncryptIdentityKey' :('REQUIRE', C._parseBoolean, "yes"),
+                     'EncryptIdentityKey' :('ALLOW', C._parseBoolean, "no"),
                      'IdentityKeyBits': ('ALLOW', C._parseInt, "2048"),
                      'PublicKeyLifetime' : ('ALLOW', C._parseInterval,
                                             "30 days"),
                      'PublicKeySloppiness': ('ALLOW', C._parseInterval,
                                              "5 minutes"),
-                     'EncryptPrivateKey' : ('REQUIRE', C._parseBoolean, "no"),
+                     'EncryptPrivateKey' : ('ALLOW', C._parseBoolean, "no"),
                      'Mode' : ('REQUIRE', C._parseServerMode, "local"),
                      'Nickname': ('ALLOW', C._parseNickname, None),
                      'Contact-Email': ('ALLOW', None, None),