]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/opensrf.xml.example
167611a05893f048a469ff28f44ba0b26832bc12
[Evergreen.git] / Open-ILS / examples / opensrf.xml.example
1 <?xml version='1.0'?>
2
3 <!-- 
4 Example opensrf config file for OpenILS
5 vim:et:ts=4:sw=4:
6 -->
7
8 <opensrf version='0.0.3'>
9
10     <default>
11
12         <!-- unless otherwise overidden, use this locale -->
13         <default_locale>en-US</default_locale>
14
15         <dirs>
16             <log>LOCALSTATEDIR/log</log> <!-- unix::server log files -->
17             <sock>LOCALSTATEDIR/lock</sock> <!-- unix::server sock files -->
18             <pid>LOCALSTATEDIR/run</pid>
19             <xsl>LOCALSTATEDIR/xsl</xsl>
20             <script>LOCALSTATEDIR</script>
21             <script_lib>LOCALSTATEDIR</script_lib>
22             <templates>LOCALSTATEDIR/templates</templates>
23         </dirs>
24
25         <!-- global data visibility settings -->
26         <share>
27             <user>
28                 <!-- Set to "true" to require patron opt-in for foreign (non-home_ou) transactions -->
29                 <opt_in>false</opt_in>
30             </user>
31         </share>
32
33         <IDL>SYSCONFDIR/fm_IDL.xml</IDL> <!-- top level IDL file -->
34         <IDL2js>fm_IDL2js.xsl</IDL2js> <!-- IDL JS XSLT -->
35
36
37         <server_type>prefork</server_type> <!-- net::server type -->
38
39         <ils_events>LOCALSTATEDIR/data/ils_events.xml</ils_events> <!-- ILS events description file -->
40
41         <email_notify> <!-- this will eventually move into the notifications section below... -->
42             <!-- global email notification settings -->
43             <template>LOCALSTATEDIR/data/hold_notification_template.example</template>
44             <smtp_server>localhost</smtp_server>
45
46             <!--
47             in most cases, this is overridden by location 
48             specific config settings.  this is just the default
49             -->
50             <sender_address>evergreen@localhost</sender_address>
51         </email_notify>
52
53
54       <notifications>
55         <!-- global mail server settings -->
56         <smtp_server>localhost</smtp_server>
57         <sender_address>evergreen@localhost</sender_address>
58
59         <!-- global telephony (asterisk) settings -->
60         <telephony>
61             <!-- replace all values below when telephony server is configured -->
62             <enabled>0</enabled>
63             <driver>SIP</driver>    <!-- SIP (default) or multi -->
64             <channels>              <!-- explicit list of channels used if multi -->
65                                     <!-- A channel specifies technology/resource -->
66                 <channel>Zap/1</channel>
67                 <channel>Zap/2</channel>
68                 <channel>IAX/user:secret@widgets.biz</channel>
69             </channels>
70             <host>localhost</host>
71             <port>10080</port>
72             <user>evergreen</user>
73             <pw>evergreen</pw>
74             <!--
75                 The overall composition of callfiles is determined by the
76                 relevant template, but this section can be invoked for callfile
77                 configs common to all outbound calls.
78                 callfile_lines will be inserted into ALL generated callfiles
79                 after the Channel line.  This content mat be overridden
80                 (in whole) by the org unit setting callfile_lines.
81                 Warning: Invalid syntax may break ALL outbound calls.
82             -->
83             <!-- <callfile_lines>
84                 MaxRetries: 3
85                 RetryTime: 60
86                 WaitTime: 30
87                 Archive: 1
88                 Extension: 10
89             </callfile_lines> -->
90         </telephony>
91
92         <!-- Overdue notices: DEPRECATED in 2.0 in favour of Action/Trigger Notifications -->
93         <overdue>
94
95             <!-- optionally, you can define a sender address per notice type -->
96             <sender_address>overdue@localhost</sender_address>
97
98             <!-- The system can generate an XML file of overdue notices.  This is the
99                 directory where they are stored.  Files are named overdue.YYYY-MM-DD.xml -->
100             <notice_dir>LOCALSTATEDIR/data/overdue</notice_dir>
101             <combined_template>LOCALSTATEDIR/data/templates/overdue_combined_xml.example</combined_template>
102
103             <notice>
104                 <!-- Notify at 7 days overdue -->
105                 <notify_interval>7 days</notify_interval>
106                 <!-- Options include always, noemail, and never.  'noemail' means a notice
107                      will be appended to the notice file only if the patron has no valid email address.  -->
108                 <file_append>noemail</file_append>
109                 <!-- do we attempt email notification? -->
110                 <email_notify>false</email_notify>
111                 <!-- notice template file -->
112                 <email_template>LOCALSTATEDIR/data/templates/overdue_7day.example</email_template>
113             </notice>
114         </overdue>
115
116         <!-- Courtesy notices: DEPRECATED in 2.0 in favour of Action/Trigger Notifications -->
117         <predue>
118             <notice>
119                 <!-- All circulations that circulate between 5 and 13 days -->
120                 <circ_duration_range>
121                     <from>5 days</from>
122                     <to>13 days</to>
123                 </circ_duration_range>
124                 <!-- notify at 1 day before the due date -->
125                 <notify_interval>1 day</notify_interval>
126                 <file_append>false</file_append>
127                 <email_notify>false</email_notify>
128                 <email_template>LOCALSTATEDIR/data/templates/predue_1day.example</email_template>
129             </notice>
130         </predue>
131       </notifications>
132
133         <!-- Settings for the hold targeter cron job -->
134         <hold_targeter>
135             <!-- number of parallel processes to use during hold targeting;
136                  increasing can speed up (re)targeting a large number of
137                  hold requests, but with diminishing returns after a point;
138                  if increasing this value, it is recommend to do so slowly
139             -->
140             <parallel>1</parallel>
141         </hold_targeter>
142
143         <!-- Settings for the fine generator cron job -->
144         <fine_generator>
145             <!-- number of parallel processes to use during fine generation -->
146             <parallel>1</parallel>
147         </fine_generator>
148         
149         <reporter>
150             <!--
151             Settings for the reporter daemon process 
152             -->
153             <setup>
154                 <base_uri>https://localhost/reporter/</base_uri>
155                 <database>
156                     <driver>Pg</driver>
157                     <host>localhost</host>
158                     <port>5432</port>
159                     <db>evergreen</db>
160                     <user>postgres</user>
161                     <pw>postgres</pw>
162                     <application_name>Clark Kent (reports)</application_name>
163                 </database>
164                 <state_store>
165                     <driver>Pg</driver>
166                     <host>localhost</host>
167                     <port>5432</port>
168                     <db>evergreen</db>
169                     <user>postgres</user>
170                     <pw>postgres</pw>
171                     <application_name>Clark Kent (state)</application_name>
172                 </state_store>
173                 <files>
174                     <!-- successful report outputs go here -->
175                     <output_base>LOCALSTATEDIR/web/reporter</output_base>
176                     <success_template>LOCALSTATEDIR/data/report-success</success_template>
177                     <fail_template>LOCALSTATEDIR/data/report-fail</fail_template>
178                 </files>
179                 <!-- Number of reports that can be processed simultaneously.  This
180                      value can overriden by the -c/-concurrency command-line switch
181                      of clark-kent.pl.
182                 -->
183                 <parallel>1</parallel>
184                 <!-- Maximum number of rows in the query results allowed before
185                      Clark will refuse to draw a pie, bar, or line chart.  This
186                      value can be overriden by the -max-rows-for-charts command-line
187                      switch of clark-kent.pl.
188                 -->
189                 <max_rows_for_charts>1000</max_rows_for_charts>
190                 <!-- Maximum amount of time (in minutes) that an SQL query initiated
191                      by Clark Kent will be allowed to run before it is terminated.
192                      This value can be overriden by the -statement-timeout
193                      command-line switch of clark-kent.pl.
194                 -->
195                 <statement_timeout>60</statement_timeout>
196                 <!-- Maximum number of results permitted.  If set to a numeric value,
197                      Clark will limit the number of rows returned by report queries
198                      to this value.  Note that it will not be apparent to a user
199                      running a report from the staff interface that their report
200                      has been limited in this fashion.  This setting can be
201                      overriden by the -resultset-limit command-line switch of
202                      clark-kent.pl.
203
204                      A value of 0 means that no limit should be set.
205                 -->
206                 <resultset_limit>1048575</resultset_limit>
207             </setup>
208         </reporter>
209
210
211
212         <xml-rpc>
213             <!-- XML-RPC gateway.  Do NOT publish unprotected services here -->
214             <allowed_services>
215                 <!-- list of published services -->
216                 <service>opensrf.math</service>
217                 <service>opensrf.dbmath</service>
218                 <service>open-ils.cat</service>
219                 <service>open-ils.search</service>
220                 <service>open-ils.circ</service>
221                 <service>open-ils.actor</service>
222                 <service>open-ils.auth</service>
223                 <service>open-ils.auth_proxy</service>
224                 <service>open-ils.collections</service>
225                 <service>open-ils.justintime</service>
226             </allowed_services>
227         </xml-rpc>
228
229         <!--
230         Once upon a time, Z39.50 servers were defined here. As of Evergreen 2.2,
231         they are now defined in the database. See the Release Notes for
232         instructions on mapping the old XML entries to database tables.
233         -->
234
235         <added_content>
236             <!-- load the OpenLibrary added content module -->
237             <module>OpenILS::WWW::AddedContent::OpenLibrary</module>
238
239             <!--
240             Max number of seconds to wait for an added content request to 
241             return data.  Data not returned within the timeout is considered
242             a failure.
243
244             Note that the pool of Apache processes used by the AddedContent
245             module is the same pool used by core Evergreen processes such as
246             search, circulation, etc. Therefore, the higher you set this
247             timeout value, the more likely you are to run out of available
248             Apache processes resulting in an accidental (or purposeful) denial
249             of service - particularly if the added content server starts
250             responding abnormally slowly.
251
252             The safest option is to disable the AddedContent module completely,
253             but 3 seconds is a compromise between the threat of a denial of
254             service and the enhanced user experience offered by successful added
255             content requests.
256             -->
257             <timeout>3</timeout>
258
259             <!--
260             After added content lookups have been disabled due to too many
261             lookup failures, this is the amount of time to wait before
262             we try again
263             -->
264             <retry_timeout>600</retry_timeout>
265
266             <!--
267             maximum number of consecutive lookup errors a given process can 
268             have before added content lookups are disabled for everyone
269             -->
270             <max_errors>15</max_errors>
271
272             <!-- If a userid is required to access the added content.. -->
273             <userid>MY_USER_ID</userid>
274
275             <!--
276             Base URL for Amazon added content fetching. Not needed by OpenLibrary
277             <base_url>http://images.amazon.com/images/P/</base_url>
278             -->
279
280             <!--
281             Segregating the details for ContentCafe out for easier use.  At some point, we
282             may want to support multiple services at one time.
283             -->
284             <ContentCafe>
285                 <userid>MY_USER_ID</userid>
286                 <password>MY_PASSWORD</password>
287
288                 <!--
289                 Which order to put identifiers in.
290                 Default is "isbn,upc", ignoring currently unsupported issn.
291                 Should be all lowercase.
292                 Remove an identifier from the list to skip it.
293                 -->
294                 <identifier_order>isbn,upc</identifier_order>
295             </ContentCafe>
296
297             <!--
298  
299             You can add free-form settings here and they will be accessible
300             within the added content module
301             -->
302
303         </added_content>
304
305         <!-- Config section for acq_order_reader.pl script.
306              It reads MARC order record files from disk (presumably
307              an FTP destination) and pushes the order records into ACQ.
308              THIS IS NOT EDI. -->
309         <acq_order_reader>
310
311             <!-- Root directory for all FTP'd ACQ order record files .
312                  If the script is configured to talk to a remote acq server,
313                  this directory has to be a read/write NFS share.  -->
314             <base_dir>/openils/var/data/acq_orders/</base_dir>
315
316             <!-- any files found in the shared subdir must be inspected
317                  (e.g. file name prefix) to determine the provider. -->
318             <shared_subdir>ALL</shared_subdir><!-- SUPPORT PENDING -->
319
320             <!-- providers that don't provide a mechanism to inspect the file
321                  have to push their files to provider-specific locations -->
322             <provider>
323                 <ordering_agency>BR1</ordering_agency> <!-- who gets/manages the order -->
324                 <provider_code>BAB</provider_code>   
325                 <provider_owner>CONS</provider_owner>  <!-- provider provider_owner; org unit shortname -->
326                 <subdir>CONS-BAB</subdir> <!-- file directory;  full path = base_dir + subdir -->
327                 <activate_po>false</activate_po> <!-- activate PO at upload? -->
328                 <vandelay>
329                     <import_no_match>true</import_no_match>
330                     <!-- Most Vandelay options are supported.  For bools, use true/false.
331                         match_quality_ratio 
332                         match_set 
333                         bib_source 
334                         merge_profile
335                         create_assets
336                         import_no_match 
337                         auto_overlay_exact 
338                         auto_overlay_1match 
339                         auto_overlay_best_match
340                     -->
341                 </vandelay>
342             </provider>
343
344             <!-- Add more as needed...
345             <provider>
346                 ...
347             </provider>
348             -->
349
350         </acq_order_reader>
351
352
353         <!-- no apps are enabled globally by default -->
354         <activeapps/> 
355
356         <cache>
357             <!-- memcache servers -->
358             <global>
359                 <servers>
360                     <server>127.0.0.1:11211</server>
361                 </servers>
362                 <max_cache_time>86400</max_cache_time>
363             </global>
364             <anon>
365                 <!-- anonymous cache.  currently, primarily used for web session caching -->
366                 <servers>
367                     <server>127.0.0.1:11211</server>
368                 </servers>
369                 <max_cache_time>1800</max_cache_time>
370                 <!-- maximum size of a single cache entry / default = 100k-->
371                 <max_cache_size>102400</max_cache_size>
372             </anon>
373         </cache>
374
375         <apps>
376             <!-- Acquisitions server -->
377             <open-ils.acq>
378                 <!-- how long to wait between stateful requests before the child process re-joins the pool -->
379                 <keepalive>5</keepalive>
380                 <!-- true if this service support stateless requests -->
381                 <stateless>1</stateless>
382                 <!-- implementation language -->
383                 <language>perl</language>
384                 <!-- name of the library that implements this application -->
385                 <implementation>OpenILS::Application::Acq</implementation>
386                 <!-- maximum OpenSRF REQUEST within a stateful connection -->
387                 <max_requests>100</max_requests>
388                 <unix_config>
389                     <!--
390                     maximum number of top level requests coming to 
391                     this child before the child is recycled
392                     -->
393                     <max_requests>100</max_requests>
394                     <!-- min children to fork -->
395                     <min_children>1</min_children>
396                     <!-- max possible children to fork -->
397                     <max_children>15</max_children>
398                     <!--
399                     C forking implementation does not support 
400                     min/max idle children, but may in the future
401                     -->
402
403                     <!-- min idle children -->
404                     <min_spare_children>1</min_spare_children>
405                     <!-- max idle children -->
406                     <max_spare_children>5</max_spare_children>
407                     <!-- currently, only Perl uses the following 3 settings -->
408                     <unix_sock>open-ils.acq_unix.sock</unix_sock>
409                     <unix_pid>open-ils.acq_unix.pid</unix_pid>
410                     <unix_log>open-ils.acq_unix.log</unix_log>
411                 </unix_config>
412             </open-ils.acq>
413
414             <!-- Authentication server -->
415             <open-ils.auth>
416                 <keepalive>5</keepalive>
417                 <stateless>1</stateless>
418                 <language>c</language>
419                 <implementation>oils_auth.so</implementation>
420                 <unix_config>
421                     <max_requests>1000</max_requests>
422                     <min_children>1</min_children>
423                     <max_children>15</max_children>
424                     <min_spare_children>1</min_spare_children>
425                     <max_spare_children>5</max_spare_children>
426                 </unix_config>
427                 <app_settings>
428                     <!-- defined app-specific settings here -->
429                     <auth_limits>
430                         <seed>30</seed> <!-- amount of time a seed request is valid for -->
431                         <block_time>90</block_time> <!-- amount of time since last auth or seed request to save failure counts -->
432                         <block_count>10</block_count> <!-- number of failures before blocking access -->
433                     </auth_limits>
434                 </app_settings>
435             </open-ils.auth>
436
437             <!-- Internal authentication server -->
438             <open-ils.auth_internal>
439                 <keepalive>5</keepalive>
440                 <stateless>1</stateless>
441                 <language>c</language>
442                 <implementation>oils_auth_internal.so</implementation>
443                 <unix_config>
444                     <max_requests>1000</max_requests>
445                     <min_children>1</min_children>
446                     <max_children>15</max_children>
447                     <min_spare_children>1</min_spare_children>
448                     <max_spare_children>5</max_spare_children>
449                 </unix_config>
450                 <app_settings>
451                     <!-- defined app-specific settings here -->
452                     <default_timeout>
453                         <!-- default login timeouts based on login type -->
454                         <opac>420</opac>
455                         <staff>7200</staff>
456                         <temp>300</temp>
457                         <persist>2 weeks</persist>
458                     </default_timeout>
459                 </app_settings>
460             </open-ils.auth_internal>
461
462
463
464             <!-- Authentication proxy server -->
465             <open-ils.auth_proxy>
466                 <keepalive>5</keepalive>
467                 <stateless>1</stateless>
468                 <language>perl</language>
469                 <implementation>OpenILS::Application::AuthProxy</implementation>
470                 <max_requests>93</max_requests>
471
472                 <unix_config>
473                     <max_requests>1000</max_requests>
474                     <unix_log>open-ils.auth-proxy_unix.log</unix_log>
475                     <unix_sock>open-ils.auth-proxy_unix.sock</unix_sock>
476                     <unix_pid>open-ils.auth-proxy_unix.pid</unix_pid>
477                     <min_children>1</min_children>
478                     <max_children>15</max_children>
479                     <min_spare_children>1</min_spare_children>
480                     <max_spare_children>5</max_spare_children>
481                 </unix_config>
482
483                 <app_settings>
484                     <!-- 'enabled' is the master switch; set to 'true' to enable proxied logins -->
485                     <enabled>false</enabled>
486                     <authenticators>
487                         <!-- the following is a sample configuration for the LDAP_Auth module; please adjust as needed -->
488                         <!--
489                         <authenticator>
490                             <name>ldap</name>
491                             <module>OpenILS::Application::AuthProxy::LDAP_Auth</module>
492                             <hostname>name.domain.com</hostname>
493                             <basedn>ou=people,dc=domain,dc=com</basedn>
494                             <authid>cn=username,ou=specials,dc=domain,dc=com</authid>
495                             <id_attr>uid</id_attr>
496                             <password>my_ldap_password_for_authid_user</password>
497                             <login_types>
498                                 <type>staff</type>
499                                 <type>opac</type>
500                                 <type>persist</type>
501                             </login_types>
502                             <org_units>
503                                 <unit>103</unit>
504                                 <unit>104</unit>
505                             </org_units>
506                         </authenticator>
507                         -->
508                         <!-- 'native' is a proxied version of Evergreen's standard authentication -->
509                         <authenticator>
510                             <name>native</name>
511                             <!-- you can add 'login_types' and 'org_units' limits to this authenticator as well, if needed -->
512                         </authenticator>
513                     </authenticators>
514                 </app_settings>
515             </open-ils.auth_proxy>
516
517             <!-- Generic search server -->
518             <open-ils.search>
519                 <keepalive>5</keepalive>
520                 <stateless>1</stateless>
521                 <language>perl</language>
522                 <implementation>OpenILS::Application::Search</implementation>
523                 <max_requests>93</max_requests>
524                 <unix_config>
525                     <unix_sock>open-ils.search_unix.sock</unix_sock>
526                     <unix_pid>open-ils.search_unix.pid</unix_pid>
527                     <unix_log>open-ils.search_unix.log</unix_log>
528
529                     <max_requests>1000</max_requests>
530                     <min_children>1</min_children>
531                     <max_children>15</max_children>
532                     <min_spare_children>1</min_spare_children>
533                     <max_spare_children>5</max_spare_children>
534                 </unix_config>
535                 <app_settings>
536                     <marc_html_xsl>oilsMARC21slim2HTML.xsl</marc_html_xsl>
537                     <marc_html_xsl_slim>oilsMARC21slim2HTMLslim.xsl</marc_html_xsl_slim>
538
539                     <spelling_dictionary>
540                         <!-- 
541                             Optionally configure different dictionaries depending on search context.  
542                             If no dictionaries are defined, the default Aspell dictionary is used.
543                         -->
544                         <!--
545                         <default>LOCALSTATEDIR/data/default_dict.txt</default>
546                         <title>LOCALSTATEDIR/data/title_dict.txt</title>
547                         <author>LOCALSTATEDIR/data/author_dict.txt</author>
548                         <subject>LOCALSTATEDIR/data/subject_dict.txt</subject>
549                         <series>LOCALSTATEDIR/data/series_dict.txt</series>
550                         -->
551                     </spelling_dictionary>
552
553                     <!-- Default to using staged search -->
554                     <use_staged_search>true</use_staged_search>
555
556                     <!--
557                         For staged search, we estimate hits based on inclusion or exclusion.
558
559                         Valid settings:
560                             inclusion - visible ratio on superpage
561                             exclusion - excluded ratio on superpage
562                             delete_adjusted_inclusion - included ratio on superpage, ratio adjusted by deleted count
563                             delete_adjusted_exclusion - excluded ratio on superpage, ratio adjusted by deleted count
564
565                         Under normal circumstances, inclusion is the best strategy, and both delete_adjusted variants
566                         will return the same value +/- 1.  The exclusion strategy is the original, and works well
567                         when there are few deleted or excluded records, in other words, when the superpage is not
568                         sparsely populated with visible records.
569                     -->
570                     <estimation_strategy>inclusion</estimation_strategy>
571
572                     <!--
573                         Evergreen uses a cover density algorithm for calculating relative ranking of matches.  There
574                         are several tuning parameters and options available.  By default, no document length normalization
575                         is applied.  From the Postgres documentation on ts_rank_cd() (the function used by Evergreen):
576
577                             Since a longer document has a greater chance of containing a query term it is reasonable 
578                             to take into account document size, e.g., a hundred-word document with five instances of 
579                             a search word is probably more relevant than a thousand-word document with five instances. 
580                             Both ranking functions take an integer normalization option that specifies whether and how 
581                             a document's length should impact its rank. The integer option controls several behaviors, 
582                             so it is a bit mask: you can specify one or more behaviors using | (for example, 2|4).
583
584                                 0 (the default) ignores the document length
585
586                                 1 divides the rank by 1 + the logarithm of the document length
587
588                                 2 divides the rank by the document length
589
590                                 4 divides the rank by the mean harmonic distance between extents (this is implemented only by ts_rank_cd)
591
592                                 8 divides the rank by the number of unique words in document
593
594                                 16 divides the rank by 1 + the logarithm of the number of unique words in document
595
596                                 32 divides the rank by itself + 1
597
598                             If more than one flag bit is specified, the transformations are applied in the order listed.
599
600                             It is important to note that the ranking functions do not use any global information, so it 
601                             is impossible to produce a fair normalization to 1% or 100% as sometimes desired. Normalization 
602                             option 32 (rank/(rank+1)) can be applied to scale all ranks into the range zero to one, but of 
603                             course this is just a cosmetic change; it will not affect the ordering of the search results.
604
605                         In Evergreen, these options are set via search modifiers.  The modifiers are mapped in the
606                         following way:
607
608                             * #CD_logDocumentLength  => 1  :: rank / (1 + LOG(total_word_count))   :: Longer documents slightly less relevant
609                             * #CD_documentLength     => 2  :: rank / total_word_count              :: Longer documents much less relevant
610                             * #CD_meanHarmonic       => 4  :: Word Proximity                       :: Greater matched-word distance is less relevant
611                             * #CD_uniqueWords        => 8  :: rank / unique_word_count             :: Documents with repeated words much less relevant
612                             * #CD_logUniqueWords     => 16 :: rank / (1 + LOG(unique_word_count))  :: Documents with repeated words slightly less relevant
613                             * #CD_selfPlusOne        => 32 :: rank / (1 + rank)                    :: Cosmetic normalization of rank value between 0 and 1
614
615                         Adding one or more of these to the default_CD_modifiers list will cause all searches that use QueryParser to apply them.
616                     -->
617                     <default_CD_modifiers>#CD_documentLength #CD_meanHarmonic #CD_uniqueWords</default_CD_modifiers>
618
619                     <!--
620                         default_preferred_language
621                             Set the global, default preferred languange
622                     -->
623                     <default_preferred_language>eng</default_preferred_language>
624
625                     <!--
626                         default_preferred_language_weight
627                             Set the weight (higher is "better") for the preferred language. Comment out to remove all lanuage weighting by default.
628                     -->
629                     <default_preferred_language_weight>5</default_preferred_language_weight>
630
631                     <!-- Baseline number of records to check for hit estimation. -->
632                     <superpage_size>1000</superpage_size>
633
634                     <!-- How many superpages to consider for searching overall. -->
635                     <max_superpages>10</max_superpages>
636
637                     <!-- zip code database file -->
638                     <!--<zips_file>LOCALSTATEDIR/data/zips.txt</zips_file>-->
639                 </app_settings>
640             </open-ils.search>
641
642             <!-- server for accessing user info -->
643             <open-ils.actor>
644                 <keepalive>5</keepalive>
645                 <stateless>1</stateless>
646                 <language>perl</language>
647                 <implementation>OpenILS::Application::Actor</implementation>
648                 <max_requests>93</max_requests>
649                 <unix_config>
650                     <unix_sock>open-ils.actor_unix.sock</unix_sock>
651                     <unix_pid>open-ils.actor_unix.pid</unix_pid>
652                     <max_requests>1000</max_requests>
653                     <unix_log>open-ils.actor_unix.log</unix_log>
654                     <min_children>1</min_children>
655                     <max_children>15</max_children>
656                     <min_spare_children>1</min_spare_children>
657                     <max_spare_children>5</max_spare_children>
658                 </unix_config>
659                 <!-- set this to 'true' to have barcode search also search patron records by unique ID -->
660                 <app_settings>
661                     <id_as_barcode>false</id_as_barcode>
662                 </app_settings>
663
664             </open-ils.actor>
665
666             <open-ils.booking>
667                 <keepalive>5</keepalive>
668                 <stateless>1</stateless>
669                 <language>perl</language>
670                 <implementation>OpenILS::Application::Booking</implementation>
671                 <max_requests>199</max_requests>
672                 <unix_config>
673                     <unix_sock>open-ils.booking_unix.sock</unix_sock>
674                     <unix_pid>open-ils.booking_unix.pid</unix_pid>
675                     <max_requests>1000</max_requests>
676                     <unix_log>open-ils.booking_unix.log</unix_log>
677                     <min_children>1</min_children>
678                     <max_children>15</max_children>
679                     <min_spare_children>1</min_spare_children>
680                     <max_spare_children>5</max_spare_children>
681                 </unix_config>
682                 <app_settings>
683                 </app_settings>
684             </open-ils.booking>
685
686             <open-ils.cat>
687                 <keepalive>5</keepalive>
688                 <stateless>1</stateless>
689                 <language>perl</language>
690                 <implementation>OpenILS::Application::Cat</implementation>
691                 <max_requests>199</max_requests>
692                 <unix_config>
693                     <unix_sock>open-ils.cat_unix.sock</unix_sock>
694                     <unix_pid>open-ils.cat_unix.pid</unix_pid>
695                     <max_requests>1000</max_requests>
696                     <unix_log>open-ils.cat_unix.log</unix_log>
697                     <min_children>1</min_children>
698                     <max_children>15</max_children>
699                     <min_spare_children>1</min_spare_children>
700                     <max_spare_children>5</max_spare_children>
701                 </unix_config>
702                 <app_settings>
703                     <marctemplates>
704                         <K_book>LOCALSTATEDIR/templates/marc/k_book.xml</K_book>
705                     </marctemplates>
706                 </app_settings>
707             </open-ils.cat>
708
709             <open-ils.supercat>
710                 <keepalive>5</keepalive>
711                 <stateless>1</stateless>
712                 <language>perl</language>
713                 <implementation>OpenILS::Application::SuperCat</implementation>
714                 <max_requests>199</max_requests>
715                 <unix_config>
716                     <unix_sock>open-ils.supercat_unix.sock</unix_sock>
717                     <unix_pid>open-ils.supercat_unix.pid</unix_pid>
718                     <max_requests>1000</max_requests>
719                     <unix_log>open-ils.supercat_unix.log</unix_log>
720                     <min_children>1</min_children>
721                     <max_children>15</max_children>
722                     <min_spare_children>1</min_spare_children>
723                     <max_spare_children>5</max_spare_children>
724                 </unix_config>
725             </open-ils.supercat>
726
727             <!-- server for accessing user info -->
728             <open-ils.trigger>
729                 <keepalive>5</keepalive>
730                 <stateless>1</stateless>
731                 <language>perl</language>
732                 <implementation>OpenILS::Application::Trigger</implementation>
733                 <max_requests>93</max_requests>
734                 <unix_config>
735                     <unix_sock>open-ils.trigger_unix.sock</unix_sock>
736                     <unix_pid>open-ils.trigger_unix.pid</unix_pid>
737                     <max_requests>1000</max_requests>
738                     <unix_log>open-ils.trigger_unix.log</unix_log>
739                     <min_children>1</min_children>
740                     <max_children>15</max_children>
741                     <min_spare_children>1</min_spare_children>
742                     <max_spare_children>5</max_spare_children>
743                 </unix_config>
744                 <app_settings>
745                     <!-- number of parallel open-ils.trigger processes to use for collection and reaction -->
746                     <!--
747                     <parallel>
748                         <collect>3</collect>
749                         <react>3</react>
750                     </parallel>
751                     -->
752                 </app_settings>
753             </open-ils.trigger>
754
755             <open-ils.url_verify>
756                 <keepalive>5</keepalive>
757                 <stateless>1</stateless>
758                 <language>perl</language>
759                 <implementation>OpenILS::Application::URLVerify</implementation>
760                 <max_requests>199</max_requests>
761                 <unix_config>
762                     <unix_sock>open-ils.url_verify_unix.sock</unix_sock>
763                     <unix_pid>open-ils.url_verify_unix.pid</unix_pid>
764                     <max_requests>1000</max_requests>
765                     <unix_log>open-ils.url_verify_unix.log</unix_log>
766                     <min_children>1</min_children>
767                     <max_children>15</max_children>
768                     <min_spare_children>1</min_spare_children>
769                     <max_spare_children>5</max_spare_children>
770                 </unix_config>
771                 <app_settings>
772                     <user_agent>Evergreen %s Link Checker</user_agent>
773                 </app_settings>
774             </open-ils.url_verify>
775
776             <opensrf.math>
777                 <keepalive>3</keepalive>
778                 <stateless>1</stateless>
779                 <language>c</language>
780                 <implementation>osrf_math.so</implementation>
781                 <unix_config>
782                     <unix_sock>opensrf.math_unix.sock</unix_sock>
783                     <unix_pid>opensrf.math_unix.pid</unix_pid>
784                     <max_requests>1000</max_requests>
785                     <unix_log>opensrf.math_unix.log</unix_log>
786                     <min_children>1</min_children>
787                     <max_children>15</max_children>
788                     <min_spare_children>1</min_spare_children>
789                     <max_spare_children>5</max_spare_children>
790                 </unix_config>
791             </opensrf.math>
792
793             <opensrf.dbmath> 
794                 <keepalive>3</keepalive>
795                 <stateless>1</stateless>
796                 <language>c</language>
797                 <implementation>osrf_dbmath.so</implementation>
798                 <unix_config>
799                     <max_requests>1000</max_requests>
800                     <unix_log>opensrf.dbmath_unix.log</unix_log>
801                     <unix_sock>opensrf.dbmath_unix.sock</unix_sock>
802                     <unix_pid>opensrf.dbmath_unix.pid</unix_pid>
803                     <min_children>1</min_children>
804                     <max_children>15</max_children>
805                     <min_spare_children>1</min_spare_children> 
806                     <max_spare_children>5</max_spare_children>
807                 </unix_config>
808             </opensrf.dbmath>
809
810             <open-ils.justintime>
811                 <keepalive>5</keepalive>
812                 <stateless>1</stateless>
813                 <language>perl</language>
814                 <implementation>OpenILS::Application::JustInTime</implementation>
815                 <max_requests>199</max_requests>
816                 <unix_config>
817                     <unix_sock>open-ils.justintime_unix.sock</unix_sock>
818                     <unix_pid>open-ils.justintime_unix.pid</unix_pid>
819                     <max_requests>1000</max_requests>
820                     <unix_log>open-ils.justintime_unix.log</unix_log>
821                     <min_children>1</min_children>
822                     <max_children>15</max_children>
823                     <min_spare_children>1</min_spare_children>
824                     <max_spare_children>5</max_spare_children>
825                 </unix_config>
826                 <app_settings>
827                 </app_settings>
828             </open-ils.justintime>
829
830             <open-ils.circ> 
831                 <keepalive>3</keepalive>
832                 <stateless>1</stateless>
833                 <language>perl</language>
834                 <implementation>OpenILS::Application::Circ</implementation>
835                 <max_requests>99</max_requests>
836                 <unix_config>
837                     <max_requests>1000</max_requests>
838                     <unix_log>open-ils.circ_unix.log</unix_log>
839                     <unix_sock>open-ils.circ_unix.sock</unix_sock>
840                     <unix_pid>open-ils.circ_unix.pid</unix_pid>
841                     <min_children>1</min_children>
842                     <max_children>15</max_children>
843                     <min_spare_children>1</min_spare_children> 
844                     <max_spare_children>5</max_spare_children>
845                 </unix_config>
846                 <app_settings>
847                     <notify_hold>
848                         <email>false</email> <!-- set to false to disable hold notice emails -->
849                     </notify_hold>
850                 </app_settings>
851             </open-ils.circ>
852
853             <open-ils.storage>
854                 <keepalive>10</keepalive>
855                 <stateless>1</stateless>
856                 <language>perl</language>
857                 <implementation>OpenILS::Application::Storage</implementation>
858                 <unix_config>
859                     <max_requests>1000</max_requests>
860                     <unix_log>open-ils.storage_unix.log</unix_log>
861                     <unix_sock>open-ils.storage_unix.sock</unix_sock>
862                     <unix_pid>open-ils.storage_unix.pid</unix_pid>
863                     <min_children>1</min_children>
864                     <max_children>10</max_children>
865                     <min_spare_children>1</min_spare_children>
866                     <max_spare_children>5</max_spare_children>
867                 </unix_config>
868                 <app_settings>
869                     <script_path>LIBDIR/javascript/</script_path>
870                     <script_path>LOCALSTATEDIR/catalog/</script_path>
871                     <scripts>
872                         <biblio_fingerprint>biblio_fingerprint.js</biblio_fingerprint>
873                     </scripts>
874                     <databases>
875                         <driver>Pg</driver>
876                         <database>
877                             <type>master</type>
878                             <weight>2</weight>
879                             <user>postgres</user>
880                             <host>localhost</host>
881                             <port>5432</port>
882                             <pw>postgres</pw>
883                             <db>evergreen</db>
884                             <client_encoding>UTF-8</client_encoding>
885                             <application_name>open-ils.storage</application_name>
886                         </database>
887                     </databases>
888                 </app_settings>
889             </open-ils.storage>
890
891             <open-ils.cstore>
892                 <keepalive>6</keepalive>
893                 <stateless>1</stateless>
894                 <language>C</language>
895                 <implementation>oils_cstore.so</implementation>
896                 <unix_config>
897                     <max_requests>1000</max_requests>
898                     <min_children>1</min_children>
899                     <max_children>15</max_children>
900                     <min_spare_children>1</min_spare_children>
901                     <max_spare_children>5</max_spare_children>
902                 </unix_config>
903                 <app_settings>
904                     <max_query_recursion>100</max_query_recursion>
905                     <driver>pgsql</driver>
906                     <database>
907                         <type>master</type>
908                         <weight>2</weight>
909                         <user>postgres</user>
910                         <host>localhost</host>
911                         <port>5432</port>
912                         <pw>postgres</pw>
913                         <db>evergreen</db>
914                         <client_encoding>UTF-8</client_encoding>
915                         <application_name>open-ils.cstore</application_name>
916                     </database>
917                 </app_settings>
918             </open-ils.cstore>
919
920             <open-ils.pcrud>
921                 <keepalive>6</keepalive>
922                 <migratable>1</migratable>
923                 <stateless>1</stateless>
924                 <language>C</language>
925                 <implementation>oils_pcrud.so</implementation>
926
927                 <unix_config>
928                     <unix_log>open-ils.pcrud.log</unix_log>
929                     <unix_sock>open-ils.pcrud.sock</unix_sock>
930                     <unix_pid>open-ils.pcrud.pid</unix_pid>
931                     <max_requests>1000</max_requests>
932                     <min_children>1</min_children>
933                     <max_children>15</max_children>
934                     <min_spare_children>1</min_spare_children>
935                     <max_spare_children>5</max_spare_children>
936                 </unix_config>
937
938                 <app_settings>
939                     <IDL>SYSCONFDIR/fm_IDL.xml</IDL>
940                     <driver>pgsql</driver>
941                     <database>
942                         <type>master</type>
943                         <weight>2</weight>
944                         <user>postgres</user>
945                         <host>localhost</host>
946                         <port>5432</port>
947                         <pw>postgres</pw>
948                         <db>evergreen</db>
949                         <client_encoding>UTF-8</client_encoding>
950                         <application_name>open-ils.pcrud</application_name>
951                     </database>
952                 </app_settings>
953             </open-ils.pcrud>
954
955             <open-ils.qstore>
956                 <keepalive>6</keepalive>
957                 <stateless>1</stateless>
958                 <language>C</language>
959                 <implementation>oils_qstore.so</implementation>
960                 <unix_config>
961                     <max_requests>1000</max_requests>
962                     <min_children>1</min_children>
963                     <max_children>15</max_children>
964                     <min_spare_children>1</min_spare_children>
965                     <max_spare_children>5</max_spare_children>
966                 </unix_config>
967                 <app_settings>
968                     <driver>pgsql</driver>
969                     <database>
970                         <type>master</type>
971                         <weight>2</weight>
972                         <user>postgres</user>
973                         <host>localhost</host>
974                         <port>5432</port>
975                         <pw>postgres</pw>
976                         <db>evergreen</db>
977                         <client_encoding>UTF-8</client_encoding>
978                         <application_name>open-ils.qstore</application_name>
979                     </database>
980                 </app_settings>
981             </open-ils.qstore>
982
983             <opensrf.settings>
984                 <keepalive>1</keepalive>
985                 <stateless>1</stateless>
986                 <language>perl</language>
987                 <implementation>OpenSRF::Application::Settings</implementation>
988                 <max_requests>17</max_requests>
989                 <unix_config>
990                     <unix_sock>opensrf.settings_unix.sock</unix_sock>
991                     <unix_pid>opensrf.settings_unix.pid</unix_pid>
992                     <max_requests>300</max_requests>
993                     <unix_log>opensrf.settings_unix.log</unix_log>
994                     <min_children>5</min_children>
995                     <max_children>15</max_children>
996                     <min_spare_children>3</min_spare_children>
997                     <max_spare_children>5</max_spare_children>
998                 </unix_config>
999             </opensrf.settings>
1000
1001             <open-ils.collections>
1002                 <keepalive>3</keepalive>
1003                 <stateless>1</stateless>
1004                 <language>perl</language>
1005                 <implementation>OpenILS::Application::Collections</implementation>
1006                 <max_requests>17</max_requests>
1007                 <unix_config>
1008                     <unix_sock>open-ils.collections_unix.sock</unix_sock>
1009                     <unix_pid>open-ils.collections_unix.pid</unix_pid>
1010                     <max_requests>1000</max_requests>
1011                     <unix_log>open-ils.collections_unix.log</unix_log>
1012                     <min_children>1</min_children>
1013                     <max_children>10</max_children>
1014                     <min_spare_children>1</min_spare_children>
1015                     <max_spare_children>5</max_spare_children>
1016                 </unix_config>
1017                 <app_settings>
1018                     <!-- batch_file_dir must be a protected, web-accessible, shared directory -->
1019                     <batch_file_dir>/openils/var/web/collections</batch_file_dir>
1020                 </app_settings>
1021             </open-ils.collections>
1022
1023             <open-ils.reporter>
1024                 <keepalive>3</keepalive>
1025                 <stateless>1</stateless>
1026                 <language>perl</language>
1027                 <implementation>OpenILS::Application::Reporter</implementation>
1028                 <max_requests>99</max_requests>
1029                 <unix_config>
1030                     <unix_sock>open-ils.reporter_unix.sock</unix_sock>
1031                     <unix_pid>open-ils.reporter_unix.pid</unix_pid>
1032                     <max_requests>1000</max_requests>
1033                     <unix_log>open-ils.reporter_unix.log</unix_log>
1034                     <min_children>1</min_children>
1035                     <max_children>10</max_children>
1036                     <min_spare_children>1</min_spare_children>
1037                     <max_spare_children>5</max_spare_children>
1038                 </unix_config>
1039             </open-ils.reporter>
1040
1041             <open-ils.reporter-store>
1042                 <keepalive>6</keepalive>
1043                 <stateless>1</stateless>
1044                 <language>C</language>
1045                 <implementation>oils_rstore.so</implementation>
1046                 <unix_config>
1047                     <max_requests>400</max_requests>
1048                     <min_children>1</min_children>
1049                     <max_children>10</max_children>
1050                     <min_spare_children>1</min_spare_children>
1051                     <max_spare_children>5</max_spare_children>
1052                 </unix_config>
1053                 <app_settings>
1054                     <driver>pgsql</driver>
1055                     <database>
1056                         <type>master</type>
1057                         <weight>2</weight>
1058                         <user>postgres</user>
1059                         <host>localhost</host>
1060                         <port>5432</port>
1061                         <pw>postgres</pw>
1062                         <db>evergreen</db>
1063                         <client_encoding>UTF-8</client_encoding>
1064                         <application_name>open-ils.reporter-store</application_name>
1065                     </database>
1066                 </app_settings>
1067             </open-ils.reporter-store>
1068
1069 <!-- resolver_type defaults to sfx but can also be cufts -->
1070 <!--
1071            <open-ils.resolver>
1072                <keepalive>3</keepalive>
1073                <stateless>1</stateless>
1074                <language>perl</language>
1075                <implementation>OpenILS::Application::ResolverResolver</implementation>
1076                <max_requests>93</max_requests>
1077                <unix_config>
1078                   <unix_sock>open-ils.resolver_unix.sock</unix_sock>
1079                   <unix_pid>open-ils.resolver_unix.pid</unix_pid>
1080                   <max_requests>1000</max_requests>
1081                   <unix_log>open-ils.resolver_unix.log</unix_log>
1082                   <min_children>5</min_children>
1083                   <max_children>15</max_children>
1084                   <min_spare_children>3</min_spare_children>
1085                   <max_spare_children>5</max_spare_children>
1086                </unix_config>
1087                <app_settings>
1088                   <cache_timeout>86400</cache_timeout>
1089                   <request_timeout>10</request_timeout>
1090                   <default_url_base>http://path/to/sfx_or_cufts</default_url_base>
1091                   <resolver_type>sfx</resolver_type>
1092                </app_settings>
1093             </open-ils.resolver>
1094 -->
1095
1096             <open-ils.permacrud>
1097                <keepalive>3</keepalive>
1098                <stateless>1</stateless>
1099                <language>perl</language>
1100                <implementation>OpenILS::Application::PermaCrud</implementation>
1101                <max_requests>17</max_requests>
1102                <unix_config>
1103                   <unix_sock>open-ils.permacrud_unix.sock</unix_sock>
1104                   <unix_pid>open-ils.permacrud_unix.pid</unix_pid>
1105                   <max_requests>1000</max_requests>
1106                   <unix_log>open-ils.permacrud_unix.log</unix_log>
1107                   <min_children>5</min_children>
1108                   <max_children>15</max_children>
1109                   <min_spare_children>3</min_spare_children>
1110                   <max_spare_children>5</max_spare_children>
1111                </unix_config>
1112             </open-ils.permacrud>
1113
1114             <open-ils.fielder>
1115                <keepalive>3</keepalive>
1116                <stateless>1</stateless>
1117                <language>perl</language>
1118                <implementation>OpenILS::Application::Fielder</implementation>
1119                <max_requests>17</max_requests>
1120                <unix_config>
1121                   <unix_sock>open-ils.fielder_unix.sock</unix_sock>
1122                   <unix_pid>open-ils.fielder_unix.pid</unix_pid>
1123                   <max_requests>1000</max_requests>
1124                   <unix_log>open-ils.fielder_unix.log</unix_log>
1125                   <min_children>5</min_children>
1126                   <max_children>15</max_children>
1127                   <min_spare_children>3</min_spare_children>
1128                   <max_spare_children>5</max_spare_children>
1129                </unix_config>
1130             </open-ils.fielder>
1131
1132             <open-ils.vandelay>
1133                 <keepalive>5</keepalive>
1134                 <stateless>1</stateless>
1135                 <language>perl</language>
1136                 <implementation>OpenILS::Application::Vandelay</implementation>
1137                 <max_requests>100</max_requests>
1138                 <unix_config>
1139                     <unix_sock>vandelay_unix.sock</unix_sock>
1140                     <unix_pid>vandelay_unix.pid</unix_pid>
1141                     <unix_log>vandelay_unix.log</unix_log>
1142                     <max_requests>100</max_requests>
1143                     <min_children>1</min_children>
1144                     <max_children>15</max_children>
1145                     <min_spare_children>1</min_spare_children>
1146                     <max_spare_children>5</max_spare_children>
1147                 </unix_config>
1148                 <app_settings>
1149                     <databases>
1150                         <!-- temporary location for MARC import files.  
1151                             Files will be deleted after records are spooled.
1152                             *note:  in a multi-brick environment, this will need to
1153                             be on a write-able NFS share.  -->
1154                         <importer>/tmp</importer>
1155                     </databases>
1156                 </app_settings>
1157             </open-ils.vandelay>
1158
1159             <open-ils.serial>
1160                 <keepalive>3</keepalive>
1161                 <stateless>1</stateless>
1162                 <language>perl</language>
1163                 <implementation>OpenILS::Application::Serial</implementation>
1164                 <max_requests>17</max_requests>
1165                 <unix_config>
1166                     <unix_sock>open-ils.serial_unix.sock</unix_sock>
1167                     <unix_pid>open-ils.serial_unix.pid</unix_pid>
1168                     <max_requests>1000</max_requests>
1169                     <unix_log>open-ils.serial_unix.log</unix_log>
1170                     <min_children>5</min_children>
1171                     <max_children>15</max_children>
1172                     <min_spare_children>3</min_spare_children>
1173                     <max_spare_children>5</max_spare_children>
1174                 </unix_config>
1175                 <app_settings>
1176                 </app_settings>
1177             </open-ils.serial>
1178
1179             <open-ils.hold-targeter>
1180                 <keepalive>3</keepalive>
1181                 <stateless>1</stateless>
1182                 <language>perl</language>
1183                 <implementation>OpenILS::Application::HoldTargeter</implementation>
1184                 <max_requests>17</max_requests>
1185                 <unix_config>
1186                     <unix_sock>open-ils.hold-targeter_unix.sock</unix_sock>
1187                     <unix_pid>open-ils.hold-targeter_unix.pid</unix_pid>
1188                     <max_requests>1000</max_requests>
1189                     <unix_log>open-ils.hold-targeter_unix.log</unix_log>
1190                     <min_children>1</min_children>
1191                     <max_children>15</max_children>
1192                     <min_spare_children>1</min_spare_children>
1193                     <max_spare_children>5</max_spare_children>
1194                 </unix_config>
1195                 <app_settings>
1196                 </app_settings>
1197             </open-ils.hold-targeter>
1198
1199
1200         </apps>
1201     </default>
1202
1203     <hosts>
1204
1205         <localhost> 
1206             <!-- ^-=- 
1207             Should match the fully qualified domain name of the host.
1208
1209             On Linux, the output of the following command is authoritative:
1210             $ perl -MNet::Domain -e 'print Net::Domain::hostfqdn() . "\n";'
1211
1212             To use 'localhost' instead, run osrf_control with the 'localhost' flag
1213             -->
1214
1215             <activeapps>
1216                 <!-- services hosted on this machine -->
1217                 <appname>opensrf.settings</appname> 
1218                 <appname>opensrf.math</appname> 
1219                 <appname>opensrf.dbmath</appname> 
1220                 <appname>open-ils.acq</appname> 
1221                 <appname>open-ils.booking</appname>
1222                 <appname>open-ils.cat</appname> 
1223                 <appname>open-ils.supercat</appname> 
1224                 <appname>open-ils.search</appname> 
1225                 <appname>open-ils.circ</appname> 
1226                 <appname>open-ils.actor</appname> 
1227                 <appname>open-ils.auth</appname> 
1228                 <appname>open-ils.auth_internal</appname>
1229                 <appname>open-ils.auth_proxy</appname> 
1230                 <appname>open-ils.storage</appname>  
1231                 <appname>open-ils.justintime</appname>  
1232                 <appname>open-ils.cstore</appname>  
1233                 <appname>open-ils.collections</appname>  
1234                 <appname>open-ils.reporter</appname>  
1235                 <appname>open-ils.reporter-store</appname>  
1236                 <!-- <appname>open-ils.resolver</appname> -->
1237                 <appname>open-ils.permacrud</appname>  
1238                 <appname>open-ils.pcrud</appname>  
1239                 <appname>open-ils.trigger</appname>  
1240                 <appname>open-ils.url_verify</appname>
1241                 <appname>open-ils.fielder</appname>  
1242                 <appname>open-ils.vandelay</appname>  
1243                 <appname>open-ils.serial</appname>  
1244                 <appname>open-ils.hold-targeter</appname>  
1245             </activeapps>
1246         </localhost>
1247     </hosts>
1248
1249 </opensrf>