This repository has been archived by the owner on Feb 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathcaldavd-stdconfig.plist
2256 lines (1732 loc) · 54 KB
/
caldavd-stdconfig.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
Copyright (c) 2006-2017 Apple Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<plist version="1.0">
<dict>
<!-- Public network address information
This is the server's public network address, which is provided to clients
in URLs and the like. It may or may not be the network address that the
server is listening to directly, though it is by default. For example, it
may be the address of a load balancer or proxy which forwards connections
to the server. -->
<!-- Network host name. -->
<key>ServerHostName</key>
<string></string>
<!-- HTTP port (0 to disable HTTP) -->
<key>HTTPPort</key>
<integer>0</integer>
<!-- SSL port (0 to disable HTTPS) -->
<key>SSLPort</key>
<integer>0</integer>
<!-- Whether to listen on SSL port(s) -->
<key>EnableSSL</key>
<false/>
<!-- Whether the service is offloading TLS duty to a proxy -->
<key>BehindTLSProxy</key>
<false/>
<!-- If True, all nonSSL requests redirected to an SSL Port -->
<key>RedirectHTTPToHTTPS</key>
<false/>
<!-- SSLv2_METHOD, SSLv3_METHOD, SSLv23_METHOD, TLSv1_METHOD -->
<key>SSLMethod</key>
<string>SSLv23_METHOD</string>
<key>SSLCiphers</key>
<string>RC4-SHA:HIGH:!ADH</string>
<!-- Max-age value for Strict-Transport-Security header; set to 0 to disable
header. -->
<key>StrictTransportSecuritySeconds</key>
<integer>604800</integer>
<!-- Network address configuration information.
This configures the actual network address that the server binds to. -->
<key>SocketFiles</key>
<dict>
<key>Enabled</key>
<false/>
<!-- Socket file to listen for secure requests on -->
<key>Secured</key>
<string>secured.sock</string>
<!-- Socket file to listen for insecure requests on -->
<key>Unsecured</key>
<string>unsecured.sock</string>
<key>Owner</key>
<string></string>
<key>Group</key>
<string></string>
<key>Permissions</key>
<integer>504</integer>
</dict>
<key>SocketRoot</key>
<string>/tmp/calendarserver</string>
<!-- List of IP addresses to bind to [empty = all] -->
<key>BindAddresses</key>
<array>
</array>
<!-- List of port numbers to bind to for HTTP [empty = same as "Port"] -->
<key>BindHTTPPorts</key>
<array>
</array>
<!-- List of port numbers to bind to for SSL [empty = same as "SSLPort"] -->
<key>BindSSLPorts</key>
<array>
</array>
<!-- File descriptors to inherit for HTTP requests [empty = don't inherit] -->
<key>InheritFDs</key>
<array>
</array>
<!-- File descriptors to inherit for HTTPS requests [empty = don't inherit] -->
<key>InheritSSLFDs</key>
<array>
</array>
<!-- Use a 'meta' FD, i.e. an FD to transmit other FDs to slave processes. -->
<key>UseMetaFD</key>
<true/>
<!-- Inherited file descriptor to call recvmsg() on to receive sockets (none =
don't inherit) -->
<key>MetaFD</key>
<integer>0</integer>
<!-- Database configuration information.
Defines what kind of database to use: file (deprecated) or SQL. File-based
DB is only supported for migration purposes - it cannot be used for a real
service.
For an SQL-based DB, configuration of connection parameters and various
timeouts is provided. -->
<!-- True: database; False: files (deprecated) -->
<key>UseDatabase</key>
<true/>
<!-- Possible values: empty, meaning 'spawn postgres yourself', or 'postgres'
or 'oracle', meaning 'connect to a postgres or Oracle database as
specified by the 'DSN' configuration key. -->
<key>DBType</key>
<string></string>
<!-- Features supported by the database
'skip-locked': SKIP LOCKED available with SELECT (remove if using postgres
< v9.5) -->
<key>DBFeatures</key>
<array>
<string>skip-locked</string>
</array>
<!-- The username to use when DBType is empty -->
<key>SpawnedDBUser</key>
<string>caldav</string>
<!-- Used to connect to an external database if DBType is non-empty -->
<key>DatabaseConnection</key>
<dict>
<!-- Database connection endpoint -->
<key>endpoint</key>
<string></string>
<!-- Name of database or Oracle SID -->
<key>database</key>
<string></string>
<!-- User name to connect as -->
<key>user</key>
<string></string>
<!-- Password to use -->
<key>password</key>
<string></string>
<!-- Set to True to require SSL (pg8000 only). -->
<key>ssl</key>
<false/>
</dict>
<!-- Use a shared database connection pool in the master process, rather than
having each client make its connections directly. -->
<key>SharedConnectionPool</key>
<false/>
<!-- Internally used by database to tell slave processes to inherit a file
descriptor and use it as an AMP connection over a UNIX socket; see
twext.enterprise.adbapi2.ConnectionPoolConnection -->
<key>DBAMPFD</key>
<integer>0</integer>
<!-- Set to True to prevent the server or utility tools from running if the
database needs a schema upgrade. -->
<key>FailIfUpgradeNeeded</key>
<true/>
<!-- Set to True to check the current database schema against the schema file
matching the database schema version. -->
<key>CheckExistingSchema</key>
<false/>
<!-- When upgrading, only upgrade homes where the owner UID starts with the
specified prefix. The upgrade will only be partial and only apply to
upgrade pieces that affect entire homes. The upgrade will need to be run
again without this prefix set to complete the overall upgrade. -->
<key>UpgradeHomePrefix</key>
<string></string>
<!-- Timeout transactions that take longer than the specified number of
seconds. Zero means no timeouts. 5 minute default. -->
<key>TransactionTimeoutSeconds</key>
<integer>300</integer>
<!-- When a transactions times out tell HTTP clients clients to retry after
this amount of time -->
<key>TransactionHTTPRetrySeconds</key>
<integer>300</integer>
<!-- Work queue configuration information -->
<key>WorkQueue</key>
<dict>
<!-- Interval in seconds for job queue polling -->
<key>queuePollInterval</key>
<real>0.1</real>
<!-- Number of seconds before an assigned job is considered overdue -->
<key>queueOverdueTimeout</key>
<integer>300</integer>
<!-- Array of array that describe the threshold and new polling interval for
job queue polling back off -->
<key>queuePollingBackoff</key>
<array>
<array>
<integer>60</integer>
<integer>60</integer>
</array>
<array>
<integer>5</integer>
<integer>1</integer>
</array>
</array>
<!-- Queue capacity (percentage) which causes job processing to halt -->
<key>overloadLevel</key>
<integer>95</integer>
<!-- Queue capacity (percentage) at which only high priority items are run -->
<key>highPriorityLevel</key>
<integer>80</integer>
<!-- Queue capacity (percentage) at which only high/medium priority items are
run -->
<key>mediumPriorityLevel</key>
<integer>50</integer>
<!-- This is used to help with concurrency problems when the underlying DB
does not support a proper "LIMIT" term with the query (Oracle). It should
be set to no more than 1 plus the number of app-servers in use. For a
single app-server, always use 1. -->
<key>rowLimit</key>
<integer>1</integer>
<!-- When a job fails, reschedule it this number of seconds in the future -->
<key>failureRescheduleInterval</key>
<integer>60</integer>
<!-- When a job can't run because of a lock, reschedule it this number of
seconds in the future -->
<key>lockRescheduleInterval</key>
<integer>60</integer>
<!-- dict of work table name's, whose values are dicts containing "priority"
and "weight" items to use for newly created work. -->
<key>workParameters</key>
<dict>
</dict>
</dict>
<!-- Types of service provided -->
<!-- Enable CalDAV service -->
<key>EnableCalDAV</key>
<true/>
<!-- Enable CardDAV service -->
<key>EnableCardDAV</key>
<true/>
<!-- When True override all other services and set the server into podding-only
mode -->
<key>MigrationOnly</key>
<false/>
<!-- Data store -->
<!-- The top level directory, contains (by default) ConfigRoot and DataRoot -->
<key>ServerRoot</key>
<string>/var/db/caldavd</string>
<!-- Data directory, parent to DatabaseRoot, AttachmentsRoot, and others -->
<key>DataRoot</key>
<string>Data</string>
<!-- Database directory, contains PostgreSQL cluster -->
<key>DatabaseRoot</key>
<string>Database</string>
<!-- Attachments directory, where file attachments are stored -->
<key>AttachmentsRoot</key>
<string>Attachments</string>
<!-- Documents directory, contains files to be served as HTTP resources at the
root level -->
<key>DocumentRoot</key>
<string>Documents</string>
<!-- Config directory, contains additional config files -->
<key>ConfigRoot</key>
<string>Config</string>
<!-- Log directory, contains access.log, error.log and others -->
<key>LogRoot</key>
<string>/var/log/caldavd</string>
<!-- Run-time directory, contains PID files and UNIX socket files -->
<key>RunRoot</key>
<string>/var/run/caldavd</string>
<!-- WebCal directory, contains HTML implementing the web calendar -->
<key>WebCalendarRoot</key>
<string>/Applications/Server.app/Contents/ServerRoot/usr/share/collabd/webcal/public</string>
<!-- Quotas -->
<!-- Attachments -->
<!-- User attachment quota (in bytes - default 100MB) -->
<key>UserQuota</key>
<integer>104857600</integer>
<!-- Maximum size for a single attachment (in bytes - default 10MB) -->
<key>MaximumAttachmentSize</key>
<integer>10485760</integer>
<!-- Maximum number of attachments per instance -->
<key>MaximumAttachmentsPerInstance</key>
<integer>5</integer>
<!-- Resource data -->
<!-- Maximum number of calendars/address books allowed in a home -->
<key>MaxCollectionsPerHome</key>
<integer>50</integer>
<!-- Maximum number of resources in a calendar/address book -->
<key>MaxResourcesPerCollection</key>
<integer>10000</integer>
<!-- Maximum resource size (in bytes) -->
<key>MaxResourceSize</key>
<integer>1048576</integer>
<!-- Maximum number of unique attendees -->
<key>MaxAttendeesPerInstance</key>
<integer>100</integer>
<!-- Maximum number of instances the server will index -->
<key>MaxAllowedInstances</key>
<integer>3000</integer>
<!-- Set to URL path of wiki authentication service, e.g. "/auth", in order to
use javascript authentication dialog. Empty string indicates standard
browser authentication dialog should be used. -->
<key>WebCalendarAuthPath</key>
<string></string>
<!-- Define mappings of URLs to file system objects (directories or files) -->
<key>Aliases</key>
<array>
</array>
<!-- Directory service
A directory service provides information about principals (e.g. users,
groups, locations and resources) to the server. -->
<key>DirectoryService</key>
<dict>
<key>Enabled</key>
<true/>
<key>type</key>
<string>xml</string>
<key>params</key>
<dict>
<key>recordTypes</key>
<array>
<string>users</string>
<string>groups</string>
</array>
<key>xmlFile</key>
<string>accounts.xml</string>
</dict>
</dict>
<key>DirectoryRealmName</key>
<string></string>
<!-- Apply an additional filter for attendee lookups where names must start
with the search tokens rather than just contain them. -->
<key>DirectoryFilterStartsWith</key>
<false/>
<!-- Locations and Resources service
Supplements the directory service with information about locations and
resources. -->
<key>ResourceService</key>
<dict>
<key>Enabled</key>
<true/>
<key>type</key>
<string>xml</string>
<key>params</key>
<dict>
<key>recordTypes</key>
<array>
<string>locations</string>
<string>resources</string>
<string>addresses</string>
</array>
<key>xmlFile</key>
<string>resources.xml</string>
</dict>
</dict>
<!-- Augment service
Augments for the directory service records to add calendar specific
attributes. -->
<key>AugmentService</key>
<dict>
<key>type</key>
<string>xml</string>
<key>params</key>
<dict>
<key>xmlFiles</key>
<array>
</array>
<key>statSeconds</key>
<integer>15</integer>
</dict>
</dict>
<!-- Proxies -->
<!-- Allows for initialization of the proxy database from an XML file -->
<key>ProxyLoadFromFile</key>
<string></string>
<!-- Special principals -->
<!-- Principals with "DAV:all" access (relative URLs) -->
<key>AdminPrincipals</key>
<array>
</array>
<!-- Principals with "DAV:read" access (relative URLs) -->
<key>ReadPrincipals</key>
<array>
</array>
<!-- Create "proxy access" principals -->
<key>EnableProxyPrincipals</key>
<true/>
<!-- Permissions -->
<!-- Allow unauthenticated read access to / -->
<key>EnableAnonymousReadRoot</key>
<true/>
<!-- Allow unauthenticated read access to hierarchy -->
<key>EnableAnonymousReadNav</key>
<false/>
<!-- Allow listing of principal collections -->
<key>EnablePrincipalListings</key>
<true/>
<!-- Render calendar collections as a monolithic iCalendar object -->
<key>EnableMonolithicCalendars</key>
<true/>
<!-- Client controls -->
<!-- List of regexes for clients to disallow -->
<key>RejectClients</key>
<array>
</array>
<!-- Authentication -->
<key>Authentication</key>
<dict>
<!-- Clear text; best avoided -->
<key>Basic</key>
<dict>
<key>Enabled</key>
<true/>
<!-- Advertised over non-SSL? -->
<key>AllowedOverWireUnencrypted</key>
<false/>
</dict>
<!-- Digest challenge/response -->
<key>Digest</key>
<dict>
<key>Enabled</key>
<true/>
<key>Algorithm</key>
<string>md5</string>
<key>Qop</key>
<string></string>
<!-- Advertised over non-SSL? -->
<key>AllowedOverWireUnencrypted</key>
<true/>
</dict>
<!-- Kerberos/SPNEGO -->
<key>Kerberos</key>
<dict>
<key>Enabled</key>
<false/>
<key>ServicePrincipal</key>
<string></string>
<!-- Advertised over non-SSL? -->
<key>AllowedOverWireUnencrypted</key>
<true/>
</dict>
<!-- TLS Client Certificate -->
<key>ClientCertificate</key>
<dict>
<key>Enabled</key>
<false/>
<!-- Advertised over non-SSL? -->
<key>AllowedOverWireUnencrypted</key>
<true/>
<!-- Always require a client cert -->
<key>Required</key>
<true/>
<!-- Array of acceptable client cert CA file names -->
<key>CAFiles</key>
<array>
</array>
<!-- Send the list of acceptable CAs to the client -->
<key>SendCAsToClient</key>
<true/>
</dict>
<key>Wiki</key>
<dict>
<key>Enabled</key>
<false/>
<key>Cookie</key>
<string>cc.collabd_session_guid</string>
<key>EndpointDescriptor</key>
<string>unix:path=/var/run/collabd</string>
</dict>
</dict>
<!-- Logging -->
<!-- Apache-style access log -->
<key>AccessLogFile</key>
<string>access.log</string>
<!-- Server activity log (the verbosity is controlled by DefaultLogLevel and
LogLevels keys) -->
<key>ErrorLogFile</key>
<string>error.log</string>
<!-- Agent activity log (only applies to Server.app edition) -->
<key>AgentLogFile</key>
<string>agent.log</string>
<!-- Utility log (used for command line utilities; the name will be dynamically
changed to that of the utility being run) -->
<key>UtilityLogFile</key>
<string>utility.log</string>
<!-- True = use log file, False = stdout -->
<key>ErrorLogEnabled</key>
<true/>
<!-- Rotate error log after so many megabytes -->
<key>ErrorLogRotateMB</key>
<integer>10</integer>
<!-- Retain this many error log files -->
<key>ErrorLogMaxRotatedFiles</key>
<integer>5</integer>
<!-- Rotate error log when service starts -->
<key>ErrorLogRotateOnStart</key>
<false/>
<key>PIDFile</key>
<string>caldavd.pid</string>
<key>RotateAccessLog</key>
<false/>
<key>EnableExtendedAccessLog</key>
<true/>
<key>EnableExtendedTimingAccessLog</key>
<false/>
<!-- Controls the verbosity of ErrorLogFile (valid values are error, warn,
info, debug; default is info) -->
<key>DefaultLogLevel</key>
<string></string>
<!-- Allows overriding log levels on a per-package, per-module, or even per-
class basis -->
<key>LogLevels</key>
<dict>
</dict>
<!-- Used internally to track which worker process is logging a message -->
<key>LogID</key>
<string></string>
<key>AccountingCategories</key>
<dict>
<!-- Log regular HTTP requests -->
<key>HTTP</key>
<false/>
<!-- Log non-freebusy iTIP details -->
<key>iTIP</key>
<false/>
<!-- Log freebusy iTIP details -->
<key>iTIP-VFREEBUSY</key>
<false/>
<!-- Log extra details about implicit scheduling errors -->
<key>Implicit Errors</key>
<false/>
<!-- Log extra details about auto-accept iTIP processing -->
<key>AutoScheduling</key>
<false/>
<!-- Log iSchedule HTTP requests (including cross-pod) -->
<key>iSchedule</key>
<false/>
<!-- Log cross-pod conduit HTTP requests -->
<key>xPod</key>
<false/>
<!-- Log invalid recurrence instance details -->
<key>Invalid Instance</key>
<false/>
<!-- Log cross-pod migration details -->
<key>migration</key>
<false/>
</dict>
<key>AccountingPrincipals</key>
<array>
</array>
<!-- The parent directory for accounting log directories (by default, relative
to LogRoot) -->
<key>AccountingLogRoot</key>
<string>accounting</string>
<key>Stats</key>
<dict>
<key>EnableUnixStatsSocket</key>
<false/>
<key>UnixStatsSocket</key>
<string>caldavd-stats.sock</string>
<key>EnableTCPStatsSocket</key>
<false/>
<key>TCPStatsPort</key>
<integer>8100</integer>
</dict>
<key>LogDatabase</key>
<dict>
<key>LabelsInSQL</key>
<false/>
<key>Statistics</key>
<false/>
<key>StatisticsLogFile</key>
<string>sqlstats.log</string>
<key>SQLStatements</key>
<false/>
<key>TransactionWaitSeconds</key>
<integer>0</integer>
</dict>
<!-- SSL/TLS -->
<!-- Public key -->
<key>SSLCertificate</key>
<string></string>
<!-- Private key -->
<key>SSLPrivateKey</key>
<string></string>
<!-- Certificate Authority Chain -->
<key>SSLAuthorityChain</key>
<string></string>
<key>SSLPassPhraseDialog</key>
<string>/etc/apache2/getsslpassphrase</string>
<key>SSLCertAdmin</key>
<string>/Applications/Server.app/Contents/ServerRoot/usr/sbin/certadmin</string>
<!-- Keychain identity to use in place of cert files -->
<key>SSLKeychainIdentity</key>
<string></string>
<!-- Process management -->
<!-- Username and Groupname to drop privileges to, if empty privileges will not
be dropped. -->
<key>UserName</key>
<string></string>
<key>GroupName</key>
<string></string>
<!-- Multi-process -->
<key>ProcessType</key>
<string>Combined</string>
<key>MultiProcess</key>
<dict>
<key>ProcessCount</key>
<integer>0</integer>
<key>MinProcessCount</key>
<integer>2</integer>
<key>PerCPU</key>
<integer>1</integer>
<key>PerGB</key>
<integer>1</integer>
<key>StaggeredStartup</key>
<dict>
<key>Enabled</key>
<false/>
<key>Interval</key>
<integer>15</integer>
</dict>
</dict>
<!-- How large a spawned process is allowed to get before it's stopped -->
<key>MemoryLimiter</key>
<dict>
<key>Enabled</key>
<true/>
<!-- How often to check memory sizes (in seconds) -->
<key>Seconds</key>
<integer>60</integer>
<!-- Memory limit (RSS in bytes) -->
<key>Bytes</key>
<integer>2147483648</integer>
<!-- True: only take into account resident memory; False: include virtual
memory -->
<key>ResidentOnly</key>
<true/>
</dict>
<!-- If enabled, will honor macOS Server ACLs to control access -->
<key>EnableSACLs</key>
<false/>
<!-- Make all data read-only -->
<key>EnableReadOnlyServer</key>
<false/>
<!-- Standard (or draft) WebDAV extensions -->
<!-- POST ;add-member extension -->
<key>EnableAddMember</key>
<true/>
<!-- REPORT collection-sync -->
<key>EnableSyncReport</key>
<true/>
<!-- REPORT collection-sync on home collections -->
<key>EnableSyncReportHome</key>
<true/>
<!-- Sync token includes config component -->
<key>EnableConfigSyncToken</key>
<true/>
<!-- /.well-known resource -->
<key>EnableWellKnown</key>
<true/>
<!-- Extended calendar-query REPORT -->
<key>EnableCalendarQueryExtended</key>
<true/>
<!-- Support Managed Attachments -->
<key>EnableManagedAttachments</key>
<false/>
<!-- server-info document -->
<key>EnableServerInfo</key>
<false/>
<!-- Generic CalDAV/CardDAV extensions -->
<!-- Allow clients to send/receive JSON jCal and jCard format data -->
<key>EnableJSONData</key>
<true/>
<!-- Non-standard CalDAV extensions -->
<!-- Calendar Drop Box -->
<key>EnableDropBox</key>
<false/>
<!-- Private Events -->
<key>EnablePrivateEvents</key>
<false/>
<!-- Old Timezone service -->
<key>EnableTimezoneService</key>
<false/>
<!-- New standard timezone service -->
<key>TimezoneService</key>
<dict>
<!-- Overall on/off switch -->
<key>Enabled</key>
<true/>
<!-- URI where service is hosted -->
<key>URI</key>
<string>/stdtimezones</string>
<!-- Can be "primary" or "secondary" -->
<key>Mode</key>
<string>primary</string>
<!-- Path to directory containing a zoneinfo - if None use default package
path secondary service MUST define its own writable path -->
<key>BasePath</key>
<string></string>
<!-- Path to db cache info - if None use default package path secondary
service MUST define its own writable path if not None -->
<key>XMLInfoPath</key>
<string></string>
<!-- User friendly JSON output -->
<key>PrettyPrintJSON</key>
<true/>
<key>SecondaryService</key>
<dict>
<!-- Only one of these should be used when a secondary service is used -->
<!-- Domain/IP of secondary service to discover -->
<key>Host</key>
<string></string>
<!-- HTTP(s) URI to secondary service -->
<key>URI</key>
<string></string>
<key>UpdateIntervalMinutes</key>
<integer>1440</integer>
</dict>
</dict>
<!-- Strip out VTIMEZONES that are known -->
<key>EnableTimezonesByReference</key>
<true/>
<!-- Use timezone data from twistedcaldav.zoneinfo - don't copy to Data
directory -->
<key>UsePackageTimezones</key>
<false/>
<!-- POST batch uploads -->
<key>EnableBatchUpload</key>
<true/>
<!-- Maximum number of resources in a batch POST -->
<key>MaxResourcesBatchUpload</key>
<integer>100</integer>
<!-- Maximum size of a batch POST (10 MB) -->
<key>MaxBytesBatchUpload</key>
<integer>10485760</integer>
<key>Sharing</key>
<dict>
<!-- Overall on/off switch -->
<key>Enabled</key>
<true/>
<!-- External (non-principal) sharees allowed -->
<key>AllowExternalUsers</key>
<false/>
<key>Calendars</key>
<dict>
<!-- Calendar on/off switch -->
<key>Enabled</key>
<true/>
<key>IgnorePerUserProperties</key>
<array>
<string>X-APPLE-STRUCTURED-LOCATION</string>
</array>
<key>CollectionProperties</key>
<dict>
<key>Shadowable</key>
<array>
<string>{urn:ietf:params:xml:ns:caldav}calendar-description</string>
</array>
<key>ProxyOverride</key>
<array>
<string>{urn:ietf:params:xml:ns:caldav}calendar-description</string>
<string>{com.apple.ical:}calendarcolor</string>
<string>{http://apple.com/ns/ical/}calendar-color</string>
<string>{http://apple.com/ns/ical/}calendar-order</string>
</array>
<key>Global</key>
<array>
</array>
</dict>
<key>Groups</key>
<dict>
<!-- Calendar sharing to groups on/off switch -->
<key>Enabled</key>
<true/>
<key>ReconciliationDelaySeconds</key>