root/trunk/config/bwbuild/default/cal.options.xml

Revision 2410 (checked in by bleibson, 4 years ago)

Add feeder app to builds.

  • Property svn:eol-style set to LF
Line 
1 <!-- This provides run time options for each of the configured applications.
2   -->
3 <bedework-options>
4   <org>
5     <bedework>
6       <global>
7         <version>3.5</version>
8
9         <!-- This property is how the running system finds the system settings.
10              In theory we could have multiple settings with different names
11          -->
12         <systemName>bedework</systemName>
13
14         <!-- This is used to prefix administrative group names to distinguish
15              them from user group names. -->
16         <adminGroupsIdPrefix>agrp_</adminGroupsIdPrefix>
17
18         <!-- Uncomment this and set the value to one of the supported portals
19              Values that will result in something happening are
20              liferay5
21              liferay4
22              uportal2
23         <portalPlatform>your-portal</portalPlatform>
24          -->
25
26         <!-- uris to cross link apps - of dubious usefulness -->
27         <publicAdminUri>/caladmin</publicAdminUri>
28         <publicCalendarUri>/cal</publicCalendarUri>
29         <personalCalendarUri>/ucal</personalCalendarUri>
30
31         <!-- CardDAV server locations -->
32         <publicCardDAVUri>http://localhost:8080/carddav</publicCardDAVUri>
33         <personalCardDAVUri>http://localhost:8080/ucarddav</personalCardDAVUri>
34
35         <!-- Timezone server locations -->
36         <timezonesUri>http://localhost:8080/tzsvr</timezonesUri>
37
38         <systemRoots  classname="org.bedework.calfacade.configs.SystemRoots" >
39           <principalRoot>/principals</principalRoot>
40           <userPrincipalRoot>/principals/users</userPrincipalRoot>
41           <groupPrincipalRoot>/principals/groups</groupPrincipalRoot>
42           <bwadmingroupPrincipalRoot>/principals/groups/bwadmin</bwadmingroupPrincipalRoot>
43           <resourcePrincipalRoot>/principals/resources</resourcePrincipalRoot>
44           <venuePrincipalRoot>/principals/locations</venuePrincipalRoot>
45           <ticketPrincipalRoot>/principals/tickets</ticketPrincipalRoot>
46           <hostPrincipalRoot>/principals/hosts</hostPrincipalRoot>
47         </systemRoots>
48
49         <module>
50           <!-- A dummy module with no directory. -->
51           <dir-config classname="org.bedework.calfacade.configs.DirConfigProperties">
52             <!-- List domains at your site separated by commas.
53                     A single leading wildcard "*" is allowed.
54                     If there is a single domain with no wildcard it wil be stripped from
55                     user accounts as they are entered and added as they are turned
56                     back into CUAs.
57                     Wildcarded or multiple domains will cause retention of the domain
58                     (partially untested feature) -->
59             <domains>mysite.edu</domains>
60
61             <!-- defaultDomain can be left unspecified for no default or a single
62                    exactly specified domain  -->
63             <defaultDomain>mysite.edu</defaultDomain>
64
65             <debug>true</debug>
66           </dir-config>
67
68           <!-- An example of how we might configure an ldap directory module. -->
69           <user-ldap-group classname="org.bedework.calfacade.configs.LdapConfigProperties">
70             <domains>mysite.edu</domains>
71             <defaultDomain>mysite.edu</defaultDomain>
72
73             <initialContextFactory>com.sun.jndi.ldap.LdapCtxFactory</initialContextFactory>
74             <providerUrl>ldap://localhost:10389</providerUrl>
75             <groupContextDn>ou=groups, dc=bedework, dc=org</groupContextDn>
76             <groupMemberAttr>member</groupMemberAttr>
77             <userDnPrefix>uid=</userDnPrefix>
78             <userDnSuffix>,ou=accounts, dc=bedework, dc=org</userDnSuffix>
79             <groupDnPrefix>cn=</groupDnPrefix>
80             <groupDnSuffix>,ou=groups,dc=bedework, dc=org</groupDnSuffix>
81             <debug>true</debug>
82
83             <securityAuthentication>simple</securityAuthentication>
84             <securityProtocol>NONE</securityProtocol>
85             <authDn>uid=admin,ou=system</authDn>
86             <authPw>secret</authPw>
87           </user-ldap-group>
88
89           <testmail classname="org.bedework.mail.MailConfigProperties">
90             <protocol>smtp</protocol>
91             <protocolClass>com.sun.mail.smtp.SMTPTransport</protocolClass>
92             <serverIp>localhost</serverIp>
93             <from>calendar.myplace.edu</from>
94             <subject>Message from demo calendar server</subject>
95             <disabled>false</disabled>
96           </testmail>
97
98           <dummymail classname="org.bedework.mail.MailConfigProperties">
99             <disabled>false</disabled>
100           </dummymail>
101
102           <default-pwencrypt classname="org.bedework.calfacade.security.DefaultPwEncryptionConfig">
103             <privKeys>@QUICKSTART_DIR@/data/bedework/privkeys</privKeys>
104             <pubKeys>@QUICKSTART_DIR@/data/bedework/pubkeys</pubKeys>
105
106             <debug>true</debug>
107             <verbose>true</verbose>
108           </default-pwencrypt>
109         </module>
110       </global>
111
112       <syspars classname="org.bedework.calfacade.BwSystem">
113         <!-- name must match the global system name -->
114         <name>bedework</name>
115         <tzid>America/New_York</tzid>
116         <systemid>demobedework@mysite.edu</systemid>
117
118         <publicCalendarRoot>public</publicCalendarRoot>
119         <userCalendarRoot>user</userCalendarRoot>
120         <userDefaultCalendar>calendar</userDefaultCalendar>
121         <defaultTrashCalendar>Trash</defaultTrashCalendar>
122         <userInbox>Inbox</userInbox>
123         <userOutbox>Outbox</userOutbox>
124         <deletedCalendar>Deleted</deletedCalendar>
125         <busyCalendar>Busy</busyCalendar>
126
127         <defaultUserViewName>All</defaultUserViewName>
128         <defaultUserHour24>true</defaultUserHour24>
129
130         <publicUser>public-user</publicUser>
131
132         <httpConnectionsPerUser>10</httpConnectionsPerUser>
133         <httpConnectionsPerHost>50</httpConnectionsPerHost>
134         <httpConnections>200</httpConnections>
135
136         <!-- size limits -->
137         <maxPublicDescriptionLength>500</maxPublicDescriptionLength>
138         <maxUserDescriptionLength>5000</maxUserDescriptionLength>
139         <maxUserEntitySize>100000</maxUserEntitySize>
140         <defaultUserQuota>10000000</defaultUserQuota> <!-- 10 Meg OK? -->
141
142         <!-- Max number of instances per recurring event -->
143         <maxInstances>1000</maxInstances>
144
145         <!-- Max number of years per recurring event -->
146         <maxYears>50</maxYears>
147
148         <userauthClass>org.bedework.calsvc.directory.UserAuthUWDbImpl</userauthClass>
149         <mailerClass>org.bedework.mail.DummyMailer</mailerClass>
150         <admingroupsClass>org.bedework.calsvc.directory.AdminGroupsDbImpl</admingroupsClass>
151         <usergroupsClass>org.bedework.calsvc.directory.UserGroupsLdapImpl</usergroupsClass>
152         <!--
153         <usergroupsClass>org.bedework.calsvc.directory.GroupsDbImpl</usergroupsClass>
154         -->
155
156         <directoryBrowsingDisallowed>true</directoryBrowsingDisallowed>
157
158         <indexRoot>lucene/indexroot</indexRoot>
159
160         <rootUsers>admin</rootUsers>
161       </syspars>
162
163       <app>
164         <!-- ==================================================================
165                           Timezones server
166              ================================================================== -->
167         <tzsvr classname="org.bedework.calfacade.configs.ConfigCommon">
168           <appType>tzsvr</appType>
169           <publicAdmin>false</publicAdmin>
170           <guestMode>true</guestMode>
171         </tzsvr>
172
173         <!-- ==================================================================
174                           Config web client
175              ================================================================== -->
176         <bwconfig classname="org.bedework.calfacade.configs.ConfigCommon">
177           <appType>webconfig</appType>
178           <publicAdmin>false</publicAdmin>
179           <guestMode>false</guestMode>
180         </bwconfig>
181
182         <!-- ==================================================================
183                           Admin web client CalAdmin
184              ================================================================== -->
185         <CalAdmin classname="org.bedework.calfacade.configs.AdminConfig">
186           <autoCreateContacts>false</autoCreateContacts>
187           <autoDeleteContacts>false</autoDeleteContacts>
188           <autoCreateLocations>false</autoCreateLocations>
189           <autoDeleteLocations>false</autoDeleteLocations>
190
191           <!-- if these are false only superuser can maintain public
192                categories, locations and contacts -->
193           <allowEditAllCategories>true</allowEditAllCategories>
194           <allowEditAllLocations>true</allowEditAllLocations>
195           <allowEditAllContacts>true</allowEditAllContacts>
196
197           <categoryOptional>true</categoryOptional>
198
199           <noGroupAllowed>false</noGroupAllowed>
200
201           <appType>webadmin</appType>
202           <publicAdmin>true</publicAdmin>
203           <guestMode>false</guestMode>
204
205           <!-- This will become a system configuration in time -->
206           <submissionRoot>/public/unbrowsable/submissions</submissionRoot>
207
208           <!-- Default value for 24 hour mode -->
209           <hour24>true</hour24>
210
211           <!-- Default value for minute increments -->
212           <minIncrement>5</minIncrement>
213
214           <logPrefix>PubEventsAdmin</logPrefix>
215
216           <appRoot>http://localhost:8080/caladminrsrc</appRoot>
217         </CalAdmin>
218
219         <!-- ==================================================================
220                           Public event submission web client EventSubmit
221              ================================================================== -->
222         <EventSubmit classname="org.bedework.calfacade.configs.ClientConfig">
223           <autoCreateContacts>false</autoCreateContacts>
224           <autoDeleteContacts>false</autoDeleteContacts>
225           <autoCreateLocations>false</autoCreateLocations>
226           <autoDeleteLocations>false</autoDeleteLocations>
227
228           <appType>websubmit</appType>
229           <publicAdmin>false</publicAdmin>
230           <guestMode>false</guestMode>
231
232           <!-- This will become a system configuration in time -->
233           <submissionRoot>/public/unbrowsable/submissions</submissionRoot>
234
235           <!-- Default value for 24 hour mode -->
236           <hour24>true</hour24>
237
238           <!-- Default value for minute increments -->
239           <minIncrement>5</minIncrement>
240
241           <showYearData>false</showYearData>
242
243           <logPrefix>EventSubmit</logPrefix>
244
245           <appRoot>http://localhost:8080/eventsubmitrsrc</appRoot>
246
247           <refreshAction>setup.do</refreshAction>
248           <refreshInterval>900</refreshInterval>
249         </EventSubmit>
250
251         <!-- ==================================================================
252                           Public web client Events
253              ================================================================== -->
254         <Events classname="org.bedework.calfacade.configs.ClientConfig">
255           <cachingOn>true</cachingOn>
256           <cachePrefix>bwpubevents</cachePrefix>
257
258           <autoCreateContacts>false</autoCreateContacts>
259           <autoDeleteContacts>false</autoDeleteContacts>
260           <autoCreateLocations>false</autoCreateLocations>
261           <autoDeleteLocations>false</autoDeleteLocations>
262
263           <appType>webpublic</appType>
264           <publicAdmin>false</publicAdmin>
265           <guestMode>true</guestMode>
266
267           <!-- Default value for 24 hour mode -->
268           <hour24>true</hour24>
269
270           <!-- Default value for minute increments -->
271           <minIncrement>5</minIncrement>
272
273           <showYearData>false</showYearData>
274
275           <logPrefix>PubEvents</logPrefix>
276
277           <appRoot>http://localhost:8080/calrsrc</appRoot>
278
279           <refreshAction>setup.do</refreshAction>
280           <refreshInterval>300</refreshInterval>
281
282           <calSuite>MainCampus</calSuite>
283         </Events>
284
285
286         <!-- ==================================================================
287                           Feed Service
288              ================================================================== -->
289         <Feeder classname="org.bedework.calfacade.configs.ClientConfig">
290           <cachingOn>true</cachingOn>
291           <cachePrefix>bwfeeder</cachePrefix>
292
293           <autoCreateContacts>false</autoCreateContacts>
294           <autoDeleteContacts>false</autoDeleteContacts>
295           <autoCreateLocations>false</autoCreateLocations>
296           <autoDeleteLocations>false</autoDeleteLocations>
297
298           <appType>feeder</appType>
299           <publicAdmin>false</publicAdmin>
300           <guestMode>true</guestMode>
301
302           <!-- Default value for 24 hour mode -->
303           <hour24>true</hour24>
304
305           <!-- Default value for minute increments -->
306           <minIncrement>5</minIncrement>
307
308           <showYearData>false</showYearData>
309
310           <logPrefix>Feeder</logPrefix>
311
312           <appRoot>http://localhost:8080/calfeedrsrc</appRoot>
313
314           <refreshAction>setup.do</refreshAction>
315           <refreshInterval>300</refreshInterval>
316
317           <calSuite>MainCampus</calSuite>
318         </Feeder>
319
320         <!-- ==================================================================
321                           Demo departmental Public web client SoEDept
322              ================================================================== -->
323         <SoEDept classname="org.bedework.calfacade.configs.ClientConfig">
324           <cachingOn>true</cachingOn>
325           <cachePrefix>bwpubevents</cachePrefix>
326
327           <autoCreateContacts>false</autoCreateContacts>
328           <autoDeleteContacts>false</autoDeleteContacts>
329           <autoCreateLocations>false</autoCreateLocations>
330           <autoDeleteLocations>false</autoDeleteLocations>
331
332           <appType>webpublic</appType>
333           <publicAdmin>false</publicAdmin>
334           <guestMode>true</guestMode>
335
336           <!-- Default value for 24 hour mode -->
337           <hour24>true</hour24>
338
339           <!-- Default value for minute increments -->
340           <minIncrement>5</minIncrement>
341
342           <showYearData>false</showYearData>
343
344           <logPrefix>SoEDept</logPrefix>
345
346           <appRoot>http://localhost:8080/calrsrc</appRoot>
347
348           <refreshAction>setup.do</refreshAction>
349           <refreshInterval>300</refreshInterval>
350
351           <calSuite>SoEDepartmental</calSuite>
352         </SoEDept>
353
354         <!-- ==================================================================
355                           User web client UserCal
356              ================================================================== -->
357         <UserCal classname="org.bedework.calfacade.configs.ClientConfig">
358           <autoCreateContacts>false</autoCreateContacts>
359           <autoDeleteContacts>false</autoDeleteContacts>
360           <autoCreateLocations>false</autoCreateLocations>
361           <autoDeleteLocations>false</autoDeleteLocations>
362
363           <appType>webuser</appType>
364           <publicAdmin>false</publicAdmin>
365           <guestMode>false</guestMode>
366
367           <!-- Default value for 24 hour mode -->
368           <hour24>true</hour24>
369
370           <!-- Default value for minute increments -->
371           <minIncrement>5</minIncrement>
372
373           <showYearData>false</showYearData>
374
375           <logPrefix>PersonalCalendar</logPrefix>
376
377           <appRoot>http://localhost:8080/ucalrsrc</appRoot>
378
379           <refreshAction>setup.do</refreshAction>
380           <refreshInterval>300</refreshInterval>
381         </UserCal>
382
383         <!-- ==================================================================
384                           User CalDAV server UserCalDAV
385              ================================================================== -->
386         <Usercaldav classname="org.bedework.caldav.util.CalDAVConfig">
387           <appType>usercaldav</appType>
388           <!--
389           <publicAdmin>false</publicAdmin>
390           -->
391           <guestMode>false</guestMode>
392
393           <sysintfImpl>org.bedework.caldav.bwserver.BwSysIntfImpl</sysintfImpl>
394
395           <!-- Comment out or delete for no real time server to server service
396                Currently under development and may present a security risk in
397                production systems -->
398           <realTimeServiceURI>/rtsvc</realTimeServiceURI>
399
400           <!-- Comment out or delete for no freebusy url service -->
401           <fburlServiceURI>/fbsvc</fburlServiceURI>
402
403           <!-- Comment out or delete for no web calendar service -->
404           <webcalServiceURI>/webcal</webcalServiceURI>
405         </Usercaldav>
406
407         <!-- ==================================================================
408                           Public (unauthenticated) CalDAV server PublicCalDAV
409              ================================================================== -->
410         <Pubcaldav classname="org.bedework.caldav.util.CalDAVConfig">
411           <appType>publiccaldav</appType>
412           <!--
413           <publicAdmin>false</publicAdmin>
414            -->
415           <guestMode>true</guestMode>
416
417           <sysintfImpl>org.bedework.caldav.bwserver.BwSysIntfImpl</sysintfImpl>
418
419           <!-- Comment out or delete for no real time server to server service
420                Currently under development and may present a security risk in
421                production systems -->
422           <realTimeServiceURI>/rtsvc</realTimeServiceURI>
423
424           <!-- Comment out or delete for no freebusy url service -->
425           <fburlServiceURI>/fbsvc</fburlServiceURI>
426
427           <!-- Comment out or delete for no web calendar service -->
428           <webcalServiceURI>/webcal</webcalServiceURI>
429         </Pubcaldav>
430
431         <!-- ==================================================================
432                           CalDAV test suite
433              ================================================================== -->
434         <caldavTest classname="org.bedework.calfacade.configs.ConfigCommon">
435           <appType>caldavTest</appType>
436           <publicAdmin>false</publicAdmin>
437           <guestMode>false</guestMode>
438         </caldavTest>
439
440         <!-- ==================================================================
441                           bedework test suite
442              ================================================================== -->
443         <test classname="org.bedework.calfacade.configs.ConfigCommon">
444           <appType>testsuite</appType>
445           <publicAdmin>false</publicAdmin>
446           <guestMode>false</guestMode>
447         </test>
448
449         <!-- ==================================================================
450                           Dump restore program dumpres
451              ================================================================== -->
452         <dumpres classname="org.bedework.calfacade.configs.DumpRestoreConfig">
453           <debug>true</debug>
454           <appType>dumprestore</appType>
455           <guestMode>true</guestMode>
456           <debugEntity>false</debugEntity>
457           <superGroupName>campusAdminGroups</superGroupName>
458           <defaultPublicCalPath>/public/Other Events/Other</defaultPublicCalPath>
459         </dumpres>
460
461         <!-- ==================================================================
462                           Crawler program
463              ================================================================== -->
464         <indexer classname="org.bedework.calfacade.configs.BwCrawlerConfig">
465           <debug>true</debug>
466           <appType>indexer</appType>
467           <guestMode>true</guestMode>
468           <debugEntity>false</debugEntity>
469         </indexer>
470
471         <!-- ==================================================================
472                           System events logger program
473              ================================================================== -->
474         <sysevlog classname="org.bedework.calfacade.configs.BwCrawlerConfig">
475           <debug>true</debug>
476           <appType>sysevlog</appType>
477           <guestMode>true</guestMode>
478           <debugEntity>false</debugEntity>
479         </sysevlog>
480
481         <!-- ==================================================================
482                           In/outbox scheduler program
483              ================================================================== -->
484         <iosched classname="org.bedework.calfacade.configs.BwCrawlerConfig">
485           <debug>true</debug>
486           <appType>inoutsched</appType>
487           <guestMode>true</guestMode>
488           <debugEntity>false</debugEntity>
489         </iosched>
490       </app>
491     </bedework>
492   </org>
493 </bedework-options>
494
Note: See TracBrowser for help on using the browser.