root/trunk/calendar3/config/configs/democal.options.xml

Revision 469 (checked in by douglm, 7 years ago)

Change getSpecialCalendar to optionally create. Avoids hibernate problem.

Change free/busy response to be at caldav12

Line 
1 <bedework-options>
2   <org>
3     <bedework>
4       <global>
5
6         <module>
7           <user-ldap-group classname="org.bedework.calcore.ldap.LdapConfigProperties">
8             <initialContextFactory>com.sun.jndi.ldap.LdapCtxFactory</initialContextFactory>
9             <providerUrl>ldap://localhost/</providerUrl>
10             <groupContextDn>ou=groups, dc=bedework, dc=org</groupContextDn>
11             <groupMemberAttr>uniqueMember</groupMemberAttr>
12             <userDnPrefix>uid=</userDnPrefix>
13             <userDnSuffix>,ou=accounts, dc=bedework, dc=org</userDnSuffix>
14             <groupDnPrefix>cn=</groupDnPrefix>
15             <groupDnSuffix>,ou=groups, dc=bedework, dc=org</groupDnSuffix>
16             <debug>true</debug>
17           </user-ldap-group>
18         </module>
19
20       </global>
21
22       <!-- Only used for system initialisation or conversion from 2.3 - ignored thereafter -->
23       <syspars classname="org.bedework.calfacade.BwSystem">
24         <!-- name must match the global system name -->
25         <name>bedework</name>
26         <tzid>America/New_York</tzid>
27         <systemid>demobedework@mysite.edu</systemid>
28
29         <publicCalendarRoot>public</publicCalendarRoot>
30         <userCalendarRoot>user</userCalendarRoot>
31         <userDefaultCalendar>calendar</userDefaultCalendar>
32         <defaultTrashCalendar>Trash</defaultTrashCalendar>
33         <userInbox>Inbox</userInbox>
34         <userOutbox>Outbox</userOutbox>
35         <deletedCalendar>Deleted</deletedCalendar>
36         <busyCalendar>Busy</busyCalendar>
37
38         <defaultUserViewName>All</defaultUserViewName>
39
40         <publicUser>public-user</publicUser>
41
42         <httpConnectionsPerUser>10</httpConnectionsPerUser>
43         <httpConnectionsPerHost>50</httpConnectionsPerHost>
44         <httpConnections>200</httpConnections>
45
46
47         <!-- size limits -->
48         <maxPublicDescriptionLength>500</maxPublicDescriptionLength>
49         <maxUserDescriptionLength>1000</maxUserDescriptionLength>
50         <maxUserEntitySize>100000</maxUserEntitySize>
51         <defaultUserQuota>10000000</defaultUserQuota> <!-- 10 Meg OK? -->
52
53         <!-- Max number of instances per recurring event -->
54         <maxInstances>1000</maxInstances>
55
56         <userauthClass>org.bedework.calcore.hibernate.UserAuthUWDbImpl</userauthClass>
57         <mailerClass>org.bedework.mail.DummyMailer</mailerClass>
58         <admingroupsClass>org.bedework.calcore.hibernate.AdminGroupsDbImpl</admingroupsClass>
59         <!--
60         <usergroupsClass>org.bedework.calcore.ldap.UserGroupsLdapImpl</usergroupsClass>
61         -->
62         <usergroupsClass>org.bedework.calcore.hibernate.GroupsDbImpl</usergroupsClass>
63       </syspars>
64
65       <app>
66         <dumpres classname="org.bedework.dumprestore.DumpRestoreConfig">
67           <debug>true</debug>
68           <debugEntity>false</debugEntity>
69           <superGroupName>campusAdminGroups</superGroupName>
70           <defaultPublicCalPath>/public/Other Events/Other</defaultPublicCalPath>
71         </dumpres>
72
73         <!-- Use the restore utility to convert from uwcal 2.3 -->
74         <restoreFrom2p3px classname="org.bedework.dumprestore.DumpRestoreConfig">
75           <debug>true</debug>
76           <debugEntity>false</debugEntity>
77           <from2p3px>true</from2p3px>
78           <timezonesFilename>resources/bwtimezones.xml</timezonesFilename>
79           <superGroupName>campusAdminGroups</superGroupName>
80           <defaultPublicCalPath>/public/Other Events/Other</defaultPublicCalPath>
81         </restoreFrom2p3px>
82       </app>
83     </bedework>
84   </org>
85 </bedework-options>
86
Note: See TracBrowser for help on using the browser.