Revision: 816 http://trac.macosforge.org/projects/calendarserver/changeset/816 Author: wsanchez@apple.com Date: 2006-12-12 16:02:26 -0800 (Tue, 12 Dec 2006) Log Message: ----------- Drop box should be off by default. SSL should be on by default, HTTP should be off. Modified Paths: -------------- CalendarServer/trunk/twistedcaldav/config.py Modified: CalendarServer/trunk/twistedcaldav/config.py =================================================================== --- CalendarServer/trunk/twistedcaldav/config.py 2006-12-13 00:01:05 UTC (rev 815) +++ CalendarServer/trunk/twistedcaldav/config.py 2006-12-13 00:02:26 UTC (rev 816) @@ -29,7 +29,7 @@ 'type': 'twistedcaldav.directory.appleopendirectory.OpenDirectoryService' }, 'DocumentRoot': '/Library/CalendarServer/Documents', - 'DropBoxEnabled': True, + 'DropBoxEnabled': False, 'ErrorLogFile': '/var/log/caldavd/error.log', 'ManholePort': 0, 'MaximumAttachmentSizeBytes': 1048576, @@ -39,8 +39,8 @@ 'ResetAccountACLs': False, 'RunStandalone': True, 'SSLCertificate': '/etc/certificates/Default.crt', - 'SSLEnable': False, - 'SSLOnly': False, + 'SSLEnable': True, + 'SSLOnly': True, 'SSLPort': 8443, 'SSLPrivateKey': '/etc/certificates/Default.key', 'ServerLogFile': '/var/log/caldavd/server.log',