]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/opensrf.xml.example
LP#1624366 Evergreen integration with obalkyknih.cz (Czech AC provider)
[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             Segregating the details for obalkyknih.cz out for easier use.
299             -->
300             <ObalkyKnih>
301                 <!-- Covers are there always -->
302
303                 <!-- Annotations provided by obalkyknih.cz is mapped to evergreen summary -->
304                 <summary>false</summary>
305                 
306                 <!-- Provider obalkyknih.cz provides TOC as text and as PDF plus thumbnail -->
307                 <tocPdf>true</tocPdf>
308                 <tocText>false</tocText>
309                 
310                 <!-- User reviews from obalkyknih.cz -->
311                 <reviews>true</reviews>
312
313             </ObalkyKnih>
314
315             <!--
316  
317             You can add free-form settings here and they will be accessible
318             within the added content module
319             -->
320
321         </added_content>
322
323         <!-- Config section for acq_order_reader.pl script.
324              It reads MARC order record files from disk (presumably
325              an FTP destination) and pushes the order records into ACQ.
326              THIS IS NOT EDI. -->
327         <acq_order_reader>
328
329             <!-- Root directory for all FTP'd ACQ order record files .
330                  If the script is configured to talk to a remote acq server,
331                  this directory has to be a read/write NFS share.  -->
332             <base_dir>/openils/var/data/acq_orders/</base_dir>
333
334             <!-- any files found in the shared subdir must be inspected
335                  (e.g. file name prefix) to determine the provider. -->
336             <shared_subdir>ALL</shared_subdir><!-- SUPPORT PENDING -->
337
338             <!-- providers that don't provide a mechanism to inspect the file
339                  have to push their files to provider-specific locations -->
340             <provider>
341                 <ordering_agency>BR1</ordering_agency> <!-- who gets/manages the order -->
342                 <provider_code>BAB</provider_code>   
343                 <provider_owner>CONS</provider_owner>  <!-- provider provider_owner; org unit shortname -->
344                 <subdir>CONS-BAB</subdir> <!-- file directory;  full path = base_dir + subdir -->
345                 <activate_po>false</activate_po> <!-- activate PO at upload? -->
346                 <vandelay>
347                     <import_no_match>true</import_no_match>
348                     <!-- Most Vandelay options are supported.  For bools, use true/false.
349                         match_quality_ratio 
350                         match_set 
351                         bib_source 
352                         merge_profile
353                         create_assets
354                         import_no_match 
355                         auto_overlay_exact 
356                         auto_overlay_1match 
357                         auto_overlay_best_match
358                     -->
359                 </vandelay>
360             </provider>
361
362             <!-- Add more as needed...
363             <provider>
364                 ...
365             </provider>
366             -->
367
368         </acq_order_reader>
369
370
371         <!-- no apps are enabled globally by default -->
372         <activeapps/> 
373
374         <cache>
375             <!-- memcache servers -->
376             <global>
377                 <servers>
378                     <server>127.0.0.1:11211</server>
379                 </servers>
380                 <max_cache_time>86400</max_cache_time>
381             </global>
382             <anon>
383                 <!-- anonymous cache.  currently, primarily used for web session caching -->
384                 <servers>
385                     <server>127.0.0.1:11211</server>
386                 </servers>
387                 <max_cache_time>1800</max_cache_time>
388                 <!-- maximum size of a single cache entry / default = 100k-->
389                 <max_cache_size>102400</max_cache_size>
390             </anon>
391         </cache>
392
393         <apps>
394             <!-- Acquisitions server -->
395             <open-ils.acq>
396                 <!-- how long to wait between stateful requests before the child process re-joins the pool -->
397                 <keepalive>5</keepalive>
398                 <!-- true if this service support stateless requests -->
399                 <stateless>1</stateless>
400                 <!-- implementation language -->
401                 <language>perl</language>
402                 <!-- name of the library that implements this application -->
403                 <implementation>OpenILS::Application::Acq</implementation>
404                 <!-- maximum OpenSRF REQUEST within a stateful connection -->
405                 <max_requests>100</max_requests>
406                 <unix_config>
407                     <!--
408                     maximum number of top level requests coming to 
409                     this child before the child is recycled
410                     -->
411                     <max_requests>100</max_requests>
412                     <!-- min children to fork -->
413                     <min_children>1</min_children>
414                     <!-- max possible children to fork -->
415                     <max_children>15</max_children>
416                     <!--
417                     C forking implementation does not support 
418                     min/max idle children, but may in the future
419                     -->
420
421                     <!-- min idle children -->
422                     <min_spare_children>1</min_spare_children>
423                     <!-- max idle children -->
424                     <max_spare_children>5</max_spare_children>
425                     <!-- currently, only Perl uses the following 3 settings -->
426                     <unix_sock>open-ils.acq_unix.sock</unix_sock>
427                     <unix_pid>open-ils.acq_unix.pid</unix_pid>
428                     <unix_log>open-ils.acq_unix.log</unix_log>
429                 </unix_config>
430             </open-ils.acq>
431
432             <!-- Authentication server -->
433             <open-ils.auth>
434                 <keepalive>5</keepalive>
435                 <stateless>1</stateless>
436                 <language>c</language>
437                 <implementation>oils_auth.so</implementation>
438                 <unix_config>
439                     <max_requests>1000</max_requests>
440                     <min_children>1</min_children>
441                     <max_children>15</max_children>
442                     <min_spare_children>1</min_spare_children>
443                     <max_spare_children>5</max_spare_children>
444                 </unix_config>
445                 <app_settings>
446                     <!-- defined app-specific settings here -->
447                     <auth_limits>
448                         <seed>30</seed> <!-- amount of time a seed request is valid for -->
449                         <block_time>90</block_time> <!-- amount of time since last auth or seed request to save failure counts -->
450                         <block_count>10</block_count> <!-- number of failures before blocking access -->
451                     </auth_limits>
452                 </app_settings>
453             </open-ils.auth>
454
455             <!-- Internal authentication server -->
456             <open-ils.auth_internal>
457                 <keepalive>5</keepalive>
458                 <stateless>1</stateless>
459                 <language>c</language>
460                 <implementation>oils_auth_internal.so</implementation>
461                 <unix_config>
462                     <max_requests>1000</max_requests>
463                     <min_children>1</min_children>
464                     <max_children>15</max_children>
465                     <min_spare_children>1</min_spare_children>
466                     <max_spare_children>5</max_spare_children>
467                 </unix_config>
468                 <app_settings>
469                     <!-- defined app-specific settings here -->
470                     <default_timeout>
471                         <!-- default login timeouts based on login type -->
472                         <opac>420</opac>
473                         <staff>7200</staff>
474                         <temp>300</temp>
475                         <persist>2 weeks</persist>
476                     </default_timeout>
477                 </app_settings>
478             </open-ils.auth_internal>
479
480
481
482             <!-- Authentication proxy server -->
483             <open-ils.auth_proxy>
484                 <keepalive>5</keepalive>
485                 <stateless>1</stateless>
486                 <language>perl</language>
487                 <implementation>OpenILS::Application::AuthProxy</implementation>
488                 <max_requests>93</max_requests>
489
490                 <unix_config>
491                     <max_requests>1000</max_requests>
492                     <unix_log>open-ils.auth-proxy_unix.log</unix_log>
493                     <unix_sock>open-ils.auth-proxy_unix.sock</unix_sock>
494                     <unix_pid>open-ils.auth-proxy_unix.pid</unix_pid>
495                     <min_children>1</min_children>
496                     <max_children>15</max_children>
497                     <min_spare_children>1</min_spare_children>
498                     <max_spare_children>5</max_spare_children>
499                 </unix_config>
500
501                 <app_settings>
502                     <!-- 'enabled' is the master switch; set to 'true' to enable proxied logins -->
503                     <enabled>false</enabled>
504                     <authenticators>
505                         <!-- the following is a sample configuration for the LDAP_Auth module; please adjust as needed -->
506                         <!--
507                         <authenticator>
508                             <name>ldap</name>
509                             <module>OpenILS::Application::AuthProxy::LDAP_Auth</module>
510                             <hostname>name.domain.com</hostname>
511                             <basedn>ou=people,dc=domain,dc=com</basedn>
512                             <authid>cn=username,ou=specials,dc=domain,dc=com</authid>
513                             <id_attr>uid</id_attr>
514                             <password>my_ldap_password_for_authid_user</password>
515                             <login_types>
516                                 <type>staff</type>
517                                 <type>opac</type>
518                                 <type>persist</type>
519                             </login_types>
520                             <org_units>
521                                 <unit>103</unit>
522                                 <unit>104</unit>
523                             </org_units>
524                         </authenticator>
525                         -->
526                         <!-- 'native' is a proxied version of Evergreen's standard authentication -->
527                         <authenticator>
528                             <name>native</name>
529                             <!-- you can add 'login_types' and 'org_units' limits to this authenticator as well, if needed -->
530                         </authenticator>
531                     </authenticators>
532                 </app_settings>
533             </open-ils.auth_proxy>
534
535             <!-- Generic search server -->
536             <open-ils.search>
537                 <keepalive>5</keepalive>
538                 <stateless>1</stateless>
539                 <language>perl</language>
540                 <implementation>OpenILS::Application::Search</implementation>
541                 <max_requests>93</max_requests>
542                 <unix_config>
543                     <unix_sock>open-ils.search_unix.sock</unix_sock>
544                     <unix_pid>open-ils.search_unix.pid</unix_pid>
545                     <unix_log>open-ils.search_unix.log</unix_log>
546
547                     <max_requests>1000</max_requests>
548                     <min_children>1</min_children>
549                     <max_children>15</max_children>
550                     <min_spare_children>1</min_spare_children>
551                     <max_spare_children>5</max_spare_children>
552                 </unix_config>
553                 <app_settings>
554                     <marc_html_xsl>oilsMARC21slim2HTML.xsl</marc_html_xsl>
555                     <marc_html_xsl_slim>oilsMARC21slim2HTMLslim.xsl</marc_html_xsl_slim>
556
557                     <spelling_dictionary>
558                         <!-- 
559                             Optionally configure different dictionaries depending on search context.  
560                             If no dictionaries are defined, the default Aspell dictionary is used.
561                         -->
562                         <!--
563                         <default>LOCALSTATEDIR/data/default_dict.txt</default>
564                         <title>LOCALSTATEDIR/data/title_dict.txt</title>
565                         <author>LOCALSTATEDIR/data/author_dict.txt</author>
566                         <subject>LOCALSTATEDIR/data/subject_dict.txt</subject>
567                         <series>LOCALSTATEDIR/data/series_dict.txt</series>
568                         -->
569                     </spelling_dictionary>
570
571                     <!-- Default to using staged search -->
572                     <use_staged_search>true</use_staged_search>
573
574                     <!--
575                         For staged search, we estimate hits based on inclusion or exclusion.
576
577                         Valid settings:
578                             inclusion - visible ratio on superpage
579                             exclusion - excluded ratio on superpage
580                             delete_adjusted_inclusion - included ratio on superpage, ratio adjusted by deleted count
581                             delete_adjusted_exclusion - excluded ratio on superpage, ratio adjusted by deleted count
582
583                         Under normal circumstances, inclusion is the best strategy, and both delete_adjusted variants
584                         will return the same value +/- 1.  The exclusion strategy is the original, and works well
585                         when there are few deleted or excluded records, in other words, when the superpage is not
586                         sparsely populated with visible records.
587                     -->
588                     <estimation_strategy>inclusion</estimation_strategy>
589
590                     <!--
591                         Evergreen uses a cover density algorithm for calculating relative ranking of matches.  There
592                         are several tuning parameters and options available.  By default, no document length normalization
593                         is applied.  From the Postgres documentation on ts_rank_cd() (the function used by Evergreen):
594
595                             Since a longer document has a greater chance of containing a query term it is reasonable 
596                             to take into account document size, e.g., a hundred-word document with five instances of 
597                             a search word is probably more relevant than a thousand-word document with five instances. 
598                             Both ranking functions take an integer normalization option that specifies whether and how 
599                             a document's length should impact its rank. The integer option controls several behaviors, 
600                             so it is a bit mask: you can specify one or more behaviors using | (for example, 2|4).
601
602                                 0 (the default) ignores the document length
603
604                                 1 divides the rank by 1 + the logarithm of the document length
605
606                                 2 divides the rank by the document length
607
608                                 4 divides the rank by the mean harmonic distance between extents (this is implemented only by ts_rank_cd)
609
610                                 8 divides the rank by the number of unique words in document
611
612                                 16 divides the rank by 1 + the logarithm of the number of unique words in document
613
614                                 32 divides the rank by itself + 1
615
616                             If more than one flag bit is specified, the transformations are applied in the order listed.
617
618                             It is important to note that the ranking functions do not use any global information, so it 
619                             is impossible to produce a fair normalization to 1% or 100% as sometimes desired. Normalization 
620                             option 32 (rank/(rank+1)) can be applied to scale all ranks into the range zero to one, but of 
621                             course this is just a cosmetic change; it will not affect the ordering of the search results.
622
623                         In Evergreen, these options are set via search modifiers.  The modifiers are mapped in the
624                         following way:
625
626                             * #CD_logDocumentLength  => 1  :: rank / (1 + LOG(total_word_count))   :: Longer documents slightly less relevant
627                             * #CD_documentLength     => 2  :: rank / total_word_count              :: Longer documents much less relevant
628                             * #CD_meanHarmonic       => 4  :: Word Proximity                       :: Greater matched-word distance is less relevant
629                             * #CD_uniqueWords        => 8  :: rank / unique_word_count             :: Documents with repeated words much less relevant
630                             * #CD_logUniqueWords     => 16 :: rank / (1 + LOG(unique_word_count))  :: Documents with repeated words slightly less relevant
631                             * #CD_selfPlusOne        => 32 :: rank / (1 + rank)                    :: Cosmetic normalization of rank value between 0 and 1
632
633                         Adding one or more of these to the default_CD_modifiers list will cause all searches that use QueryParser to apply them.
634                     -->
635                     <default_CD_modifiers>#CD_documentLength #CD_meanHarmonic #CD_uniqueWords</default_CD_modifiers>
636
637                     <!--
638                         default_preferred_language
639                             Set the global, default preferred languange
640                     -->
641                     <default_preferred_language>eng</default_preferred_language>
642
643                     <!--
644                         default_preferred_language_weight
645                             Set the weight (higher is "better") for the preferred language. Comment out to remove all lanuage weighting by default.
646                     -->
647                     <default_preferred_language_weight>5</default_preferred_language_weight>
648
649                     <!-- Baseline number of records to check for hit estimation. -->
650                     <superpage_size>1000</superpage_size>
651
652                     <!-- How many superpages to consider for searching overall. -->
653                     <max_superpages>10</max_superpages>
654
655                     <!-- zip code database file -->
656                     <!--<zips_file>LOCALSTATEDIR/data/zips.txt</zips_file>-->
657                 </app_settings>
658             </open-ils.search>
659
660             <!-- server for accessing user info -->
661             <open-ils.actor>
662                 <keepalive>5</keepalive>
663                 <stateless>1</stateless>
664                 <language>perl</language>
665                 <implementation>OpenILS::Application::Actor</implementation>
666                 <max_requests>93</max_requests>
667                 <unix_config>
668                     <unix_sock>open-ils.actor_unix.sock</unix_sock>
669                     <unix_pid>open-ils.actor_unix.pid</unix_pid>
670                     <max_requests>1000</max_requests>
671                     <unix_log>open-ils.actor_unix.log</unix_log>
672                     <min_children>1</min_children>
673                     <max_children>15</max_children>
674                     <min_spare_children>1</min_spare_children>
675                     <max_spare_children>5</max_spare_children>
676                 </unix_config>
677                 <!-- set this to 'true' to have barcode search also search patron records by unique ID -->
678                 <app_settings>
679                     <id_as_barcode>false</id_as_barcode>
680                 </app_settings>
681
682             </open-ils.actor>
683
684             <open-ils.booking>
685                 <keepalive>5</keepalive>
686                 <stateless>1</stateless>
687                 <language>perl</language>
688                 <implementation>OpenILS::Application::Booking</implementation>
689                 <max_requests>199</max_requests>
690                 <unix_config>
691                     <unix_sock>open-ils.booking_unix.sock</unix_sock>
692                     <unix_pid>open-ils.booking_unix.pid</unix_pid>
693                     <max_requests>1000</max_requests>
694                     <unix_log>open-ils.booking_unix.log</unix_log>
695                     <min_children>1</min_children>
696                     <max_children>15</max_children>
697                     <min_spare_children>1</min_spare_children>
698                     <max_spare_children>5</max_spare_children>
699                 </unix_config>
700                 <app_settings>
701                 </app_settings>
702             </open-ils.booking>
703
704             <open-ils.cat>
705                 <keepalive>5</keepalive>
706                 <stateless>1</stateless>
707                 <language>perl</language>
708                 <implementation>OpenILS::Application::Cat</implementation>
709                 <max_requests>199</max_requests>
710                 <unix_config>
711                     <unix_sock>open-ils.cat_unix.sock</unix_sock>
712                     <unix_pid>open-ils.cat_unix.pid</unix_pid>
713                     <max_requests>1000</max_requests>
714                     <unix_log>open-ils.cat_unix.log</unix_log>
715                     <min_children>1</min_children>
716                     <max_children>15</max_children>
717                     <min_spare_children>1</min_spare_children>
718                     <max_spare_children>5</max_spare_children>
719                 </unix_config>
720                 <app_settings>
721                     <marctemplates>
722                         <K_book>LOCALSTATEDIR/templates/marc/k_book.xml</K_book>
723                     </marctemplates>
724                 </app_settings>
725             </open-ils.cat>
726
727             <open-ils.supercat>
728                 <keepalive>5</keepalive>
729                 <stateless>1</stateless>
730                 <language>perl</language>
731                 <implementation>OpenILS::Application::SuperCat</implementation>
732                 <max_requests>199</max_requests>
733                 <unix_config>
734                     <unix_sock>open-ils.supercat_unix.sock</unix_sock>
735                     <unix_pid>open-ils.supercat_unix.pid</unix_pid>
736                     <max_requests>1000</max_requests>
737                     <unix_log>open-ils.supercat_unix.log</unix_log>
738                     <min_children>1</min_children>
739                     <max_children>15</max_children>
740                     <min_spare_children>1</min_spare_children>
741                     <max_spare_children>5</max_spare_children>
742                 </unix_config>
743             </open-ils.supercat>
744
745             <!-- server for accessing user info -->
746             <open-ils.trigger>
747                 <keepalive>5</keepalive>
748                 <stateless>1</stateless>
749                 <language>perl</language>
750                 <implementation>OpenILS::Application::Trigger</implementation>
751                 <max_requests>93</max_requests>
752                 <unix_config>
753                     <unix_sock>open-ils.trigger_unix.sock</unix_sock>
754                     <unix_pid>open-ils.trigger_unix.pid</unix_pid>
755                     <max_requests>1000</max_requests>
756                     <unix_log>open-ils.trigger_unix.log</unix_log>
757                     <min_children>1</min_children>
758                     <max_children>15</max_children>
759                     <min_spare_children>1</min_spare_children>
760                     <max_spare_children>5</max_spare_children>
761                 </unix_config>
762                 <app_settings>
763                     <!-- number of parallel open-ils.trigger processes to use for collection and reaction -->
764                     <!--
765                     <parallel>
766                         <collect>3</collect>
767                         <react>3</react>
768                     </parallel>
769                     -->
770                 </app_settings>
771             </open-ils.trigger>
772
773             <open-ils.url_verify>
774                 <keepalive>5</keepalive>
775                 <stateless>1</stateless>
776                 <language>perl</language>
777                 <implementation>OpenILS::Application::URLVerify</implementation>
778                 <max_requests>199</max_requests>
779                 <unix_config>
780                     <unix_sock>open-ils.url_verify_unix.sock</unix_sock>
781                     <unix_pid>open-ils.url_verify_unix.pid</unix_pid>
782                     <max_requests>1000</max_requests>
783                     <unix_log>open-ils.url_verify_unix.log</unix_log>
784                     <min_children>1</min_children>
785                     <max_children>15</max_children>
786                     <min_spare_children>1</min_spare_children>
787                     <max_spare_children>5</max_spare_children>
788                 </unix_config>
789                 <app_settings>
790                     <user_agent>Evergreen %s Link Checker</user_agent>
791                 </app_settings>
792             </open-ils.url_verify>
793
794             <opensrf.math>
795                 <keepalive>3</keepalive>
796                 <stateless>1</stateless>
797                 <language>c</language>
798                 <implementation>osrf_math.so</implementation>
799                 <unix_config>
800                     <unix_sock>opensrf.math_unix.sock</unix_sock>
801                     <unix_pid>opensrf.math_unix.pid</unix_pid>
802                     <max_requests>1000</max_requests>
803                     <unix_log>opensrf.math_unix.log</unix_log>
804                     <min_children>1</min_children>
805                     <max_children>15</max_children>
806                     <min_spare_children>1</min_spare_children>
807                     <max_spare_children>5</max_spare_children>
808                 </unix_config>
809             </opensrf.math>
810
811             <opensrf.dbmath> 
812                 <keepalive>3</keepalive>
813                 <stateless>1</stateless>
814                 <language>c</language>
815                 <implementation>osrf_dbmath.so</implementation>
816                 <unix_config>
817                     <max_requests>1000</max_requests>
818                     <unix_log>opensrf.dbmath_unix.log</unix_log>
819                     <unix_sock>opensrf.dbmath_unix.sock</unix_sock>
820                     <unix_pid>opensrf.dbmath_unix.pid</unix_pid>
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             </opensrf.dbmath>
827
828             <open-ils.justintime>
829                 <keepalive>5</keepalive>
830                 <stateless>1</stateless>
831                 <language>perl</language>
832                 <implementation>OpenILS::Application::JustInTime</implementation>
833                 <max_requests>199</max_requests>
834                 <unix_config>
835                     <unix_sock>open-ils.justintime_unix.sock</unix_sock>
836                     <unix_pid>open-ils.justintime_unix.pid</unix_pid>
837                     <max_requests>1000</max_requests>
838                     <unix_log>open-ils.justintime_unix.log</unix_log>
839                     <min_children>1</min_children>
840                     <max_children>15</max_children>
841                     <min_spare_children>1</min_spare_children>
842                     <max_spare_children>5</max_spare_children>
843                 </unix_config>
844                 <app_settings>
845                 </app_settings>
846             </open-ils.justintime>
847
848             <open-ils.circ> 
849                 <keepalive>3</keepalive>
850                 <stateless>1</stateless>
851                 <language>perl</language>
852                 <implementation>OpenILS::Application::Circ</implementation>
853                 <max_requests>99</max_requests>
854                 <unix_config>
855                     <max_requests>1000</max_requests>
856                     <unix_log>open-ils.circ_unix.log</unix_log>
857                     <unix_sock>open-ils.circ_unix.sock</unix_sock>
858                     <unix_pid>open-ils.circ_unix.pid</unix_pid>
859                     <min_children>1</min_children>
860                     <max_children>15</max_children>
861                     <min_spare_children>1</min_spare_children> 
862                     <max_spare_children>5</max_spare_children>
863                 </unix_config>
864                 <app_settings>
865                     <notify_hold>
866                         <email>false</email> <!-- set to false to disable hold notice emails -->
867                     </notify_hold>
868                 </app_settings>
869             </open-ils.circ>
870
871             <open-ils.storage>
872                 <keepalive>10</keepalive>
873                 <stateless>1</stateless>
874                 <language>perl</language>
875                 <implementation>OpenILS::Application::Storage</implementation>
876                 <unix_config>
877                     <max_requests>1000</max_requests>
878                     <unix_log>open-ils.storage_unix.log</unix_log>
879                     <unix_sock>open-ils.storage_unix.sock</unix_sock>
880                     <unix_pid>open-ils.storage_unix.pid</unix_pid>
881                     <min_children>1</min_children>
882                     <max_children>10</max_children>
883                     <min_spare_children>1</min_spare_children>
884                     <max_spare_children>5</max_spare_children>
885                 </unix_config>
886                 <app_settings>
887                     <script_path>LIBDIR/javascript/</script_path>
888                     <script_path>LOCALSTATEDIR/catalog/</script_path>
889                     <scripts>
890                         <biblio_fingerprint>biblio_fingerprint.js</biblio_fingerprint>
891                     </scripts>
892                     <databases>
893                         <driver>Pg</driver>
894                         <database>
895                             <type>master</type>
896                             <weight>2</weight>
897                             <user>postgres</user>
898                             <host>localhost</host>
899                             <port>5432</port>
900                             <pw>postgres</pw>
901                             <db>evergreen</db>
902                             <client_encoding>UTF-8</client_encoding>
903                             <application_name>open-ils.storage</application_name>
904                         </database>
905                     </databases>
906                 </app_settings>
907             </open-ils.storage>
908
909             <open-ils.cstore>
910                 <keepalive>6</keepalive>
911                 <stateless>1</stateless>
912                 <language>C</language>
913                 <implementation>oils_cstore.so</implementation>
914                 <unix_config>
915                     <max_requests>1000</max_requests>
916                     <min_children>1</min_children>
917                     <max_children>15</max_children>
918                     <min_spare_children>1</min_spare_children>
919                     <max_spare_children>5</max_spare_children>
920                 </unix_config>
921                 <app_settings>
922                     <max_query_recursion>100</max_query_recursion>
923                     <driver>pgsql</driver>
924                     <database>
925                         <type>master</type>
926                         <weight>2</weight>
927                         <user>postgres</user>
928                         <host>localhost</host>
929                         <port>5432</port>
930                         <pw>postgres</pw>
931                         <db>evergreen</db>
932                         <client_encoding>UTF-8</client_encoding>
933                         <application_name>open-ils.cstore</application_name>
934                     </database>
935                 </app_settings>
936             </open-ils.cstore>
937
938             <open-ils.pcrud>
939                 <keepalive>6</keepalive>
940                 <migratable>1</migratable>
941                 <stateless>1</stateless>
942                 <language>C</language>
943                 <implementation>oils_pcrud.so</implementation>
944
945                 <unix_config>
946                     <unix_log>open-ils.pcrud.log</unix_log>
947                     <unix_sock>open-ils.pcrud.sock</unix_sock>
948                     <unix_pid>open-ils.pcrud.pid</unix_pid>
949                     <max_requests>1000</max_requests>
950                     <min_children>1</min_children>
951                     <max_children>15</max_children>
952                     <min_spare_children>1</min_spare_children>
953                     <max_spare_children>5</max_spare_children>
954                 </unix_config>
955
956                 <app_settings>
957                     <IDL>SYSCONFDIR/fm_IDL.xml</IDL>
958                     <driver>pgsql</driver>
959                     <database>
960                         <type>master</type>
961                         <weight>2</weight>
962                         <user>postgres</user>
963                         <host>localhost</host>
964                         <port>5432</port>
965                         <pw>postgres</pw>
966                         <db>evergreen</db>
967                         <client_encoding>UTF-8</client_encoding>
968                         <application_name>open-ils.pcrud</application_name>
969                     </database>
970                 </app_settings>
971             </open-ils.pcrud>
972
973             <open-ils.qstore>
974                 <keepalive>6</keepalive>
975                 <stateless>1</stateless>
976                 <language>C</language>
977                 <implementation>oils_qstore.so</implementation>
978                 <unix_config>
979                     <max_requests>1000</max_requests>
980                     <min_children>1</min_children>
981                     <max_children>15</max_children>
982                     <min_spare_children>1</min_spare_children>
983                     <max_spare_children>5</max_spare_children>
984                 </unix_config>
985                 <app_settings>
986                     <driver>pgsql</driver>
987                     <database>
988                         <type>master</type>
989                         <weight>2</weight>
990                         <user>postgres</user>
991                         <host>localhost</host>
992                         <port>5432</port>
993                         <pw>postgres</pw>
994                         <db>evergreen</db>
995                         <client_encoding>UTF-8</client_encoding>
996                         <application_name>open-ils.qstore</application_name>
997                     </database>
998                 </app_settings>
999             </open-ils.qstore>
1000
1001             <opensrf.settings>
1002                 <keepalive>1</keepalive>
1003                 <stateless>1</stateless>
1004                 <language>perl</language>
1005                 <implementation>OpenSRF::Application::Settings</implementation>
1006                 <max_requests>17</max_requests>
1007                 <unix_config>
1008                     <unix_sock>opensrf.settings_unix.sock</unix_sock>
1009                     <unix_pid>opensrf.settings_unix.pid</unix_pid>
1010                     <max_requests>300</max_requests>
1011                     <unix_log>opensrf.settings_unix.log</unix_log>
1012                     <min_children>5</min_children>
1013                     <max_children>15</max_children>
1014                     <min_spare_children>3</min_spare_children>
1015                     <max_spare_children>5</max_spare_children>
1016                 </unix_config>
1017             </opensrf.settings>
1018
1019             <open-ils.collections>
1020                 <keepalive>3</keepalive>
1021                 <stateless>1</stateless>
1022                 <language>perl</language>
1023                 <implementation>OpenILS::Application::Collections</implementation>
1024                 <max_requests>17</max_requests>
1025                 <unix_config>
1026                     <unix_sock>open-ils.collections_unix.sock</unix_sock>
1027                     <unix_pid>open-ils.collections_unix.pid</unix_pid>
1028                     <max_requests>1000</max_requests>
1029                     <unix_log>open-ils.collections_unix.log</unix_log>
1030                     <min_children>1</min_children>
1031                     <max_children>10</max_children>
1032                     <min_spare_children>1</min_spare_children>
1033                     <max_spare_children>5</max_spare_children>
1034                 </unix_config>
1035                 <app_settings>
1036                     <!-- batch_file_dir must be a protected, web-accessible, shared directory -->
1037                     <batch_file_dir>/openils/var/web/collections</batch_file_dir>
1038                 </app_settings>
1039             </open-ils.collections>
1040
1041             <open-ils.reporter>
1042                 <keepalive>3</keepalive>
1043                 <stateless>1</stateless>
1044                 <language>perl</language>
1045                 <implementation>OpenILS::Application::Reporter</implementation>
1046                 <max_requests>99</max_requests>
1047                 <unix_config>
1048                     <unix_sock>open-ils.reporter_unix.sock</unix_sock>
1049                     <unix_pid>open-ils.reporter_unix.pid</unix_pid>
1050                     <max_requests>1000</max_requests>
1051                     <unix_log>open-ils.reporter_unix.log</unix_log>
1052                     <min_children>1</min_children>
1053                     <max_children>10</max_children>
1054                     <min_spare_children>1</min_spare_children>
1055                     <max_spare_children>5</max_spare_children>
1056                 </unix_config>
1057             </open-ils.reporter>
1058
1059             <open-ils.reporter-store>
1060                 <keepalive>6</keepalive>
1061                 <stateless>1</stateless>
1062                 <language>C</language>
1063                 <implementation>oils_rstore.so</implementation>
1064                 <unix_config>
1065                     <max_requests>400</max_requests>
1066                     <min_children>1</min_children>
1067                     <max_children>10</max_children>
1068                     <min_spare_children>1</min_spare_children>
1069                     <max_spare_children>5</max_spare_children>
1070                 </unix_config>
1071                 <app_settings>
1072                     <driver>pgsql</driver>
1073                     <database>
1074                         <type>master</type>
1075                         <weight>2</weight>
1076                         <user>postgres</user>
1077                         <host>localhost</host>
1078                         <port>5432</port>
1079                         <pw>postgres</pw>
1080                         <db>evergreen</db>
1081                         <client_encoding>UTF-8</client_encoding>
1082                         <application_name>open-ils.reporter-store</application_name>
1083                     </database>
1084                 </app_settings>
1085             </open-ils.reporter-store>
1086
1087 <!-- resolver_type defaults to sfx but can also be cufts -->
1088 <!--
1089            <open-ils.resolver>
1090                <keepalive>3</keepalive>
1091                <stateless>1</stateless>
1092                <language>perl</language>
1093                <implementation>OpenILS::Application::ResolverResolver</implementation>
1094                <max_requests>93</max_requests>
1095                <unix_config>
1096                   <unix_sock>open-ils.resolver_unix.sock</unix_sock>
1097                   <unix_pid>open-ils.resolver_unix.pid</unix_pid>
1098                   <max_requests>1000</max_requests>
1099                   <unix_log>open-ils.resolver_unix.log</unix_log>
1100                   <min_children>5</min_children>
1101                   <max_children>15</max_children>
1102                   <min_spare_children>3</min_spare_children>
1103                   <max_spare_children>5</max_spare_children>
1104                </unix_config>
1105                <app_settings>
1106                   <cache_timeout>86400</cache_timeout>
1107                   <request_timeout>10</request_timeout>
1108                   <default_url_base>http://path/to/sfx_or_cufts</default_url_base>
1109                   <resolver_type>sfx</resolver_type>
1110                </app_settings>
1111             </open-ils.resolver>
1112 -->
1113
1114             <open-ils.permacrud>
1115                <keepalive>3</keepalive>
1116                <stateless>1</stateless>
1117                <language>perl</language>
1118                <implementation>OpenILS::Application::PermaCrud</implementation>
1119                <max_requests>17</max_requests>
1120                <unix_config>
1121                   <unix_sock>open-ils.permacrud_unix.sock</unix_sock>
1122                   <unix_pid>open-ils.permacrud_unix.pid</unix_pid>
1123                   <max_requests>1000</max_requests>
1124                   <unix_log>open-ils.permacrud_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.permacrud>
1131
1132             <open-ils.fielder>
1133                <keepalive>3</keepalive>
1134                <stateless>1</stateless>
1135                <language>perl</language>
1136                <implementation>OpenILS::Application::Fielder</implementation>
1137                <max_requests>17</max_requests>
1138                <unix_config>
1139                   <unix_sock>open-ils.fielder_unix.sock</unix_sock>
1140                   <unix_pid>open-ils.fielder_unix.pid</unix_pid>
1141                   <max_requests>1000</max_requests>
1142                   <unix_log>open-ils.fielder_unix.log</unix_log>
1143                   <min_children>5</min_children>
1144                   <max_children>15</max_children>
1145                   <min_spare_children>3</min_spare_children>
1146                   <max_spare_children>5</max_spare_children>
1147                </unix_config>
1148             </open-ils.fielder>
1149
1150             <open-ils.vandelay>
1151                 <keepalive>5</keepalive>
1152                 <stateless>1</stateless>
1153                 <language>perl</language>
1154                 <implementation>OpenILS::Application::Vandelay</implementation>
1155                 <max_requests>100</max_requests>
1156                 <unix_config>
1157                     <unix_sock>vandelay_unix.sock</unix_sock>
1158                     <unix_pid>vandelay_unix.pid</unix_pid>
1159                     <unix_log>vandelay_unix.log</unix_log>
1160                     <max_requests>100</max_requests>
1161                     <min_children>1</min_children>
1162                     <max_children>15</max_children>
1163                     <min_spare_children>1</min_spare_children>
1164                     <max_spare_children>5</max_spare_children>
1165                 </unix_config>
1166                 <app_settings>
1167                     <databases>
1168                         <!-- temporary location for MARC import files.  
1169                             Files will be deleted after records are spooled.
1170                             *note:  in a multi-brick environment, this will need to
1171                             be on a write-able NFS share.  -->
1172                         <importer>/tmp</importer>
1173                     </databases>
1174                 </app_settings>
1175             </open-ils.vandelay>
1176
1177             <open-ils.serial>
1178                 <keepalive>3</keepalive>
1179                 <stateless>1</stateless>
1180                 <language>perl</language>
1181                 <implementation>OpenILS::Application::Serial</implementation>
1182                 <max_requests>17</max_requests>
1183                 <unix_config>
1184                     <unix_sock>open-ils.serial_unix.sock</unix_sock>
1185                     <unix_pid>open-ils.serial_unix.pid</unix_pid>
1186                     <max_requests>1000</max_requests>
1187                     <unix_log>open-ils.serial_unix.log</unix_log>
1188                     <min_children>5</min_children>
1189                     <max_children>15</max_children>
1190                     <min_spare_children>3</min_spare_children>
1191                     <max_spare_children>5</max_spare_children>
1192                 </unix_config>
1193                 <app_settings>
1194                 </app_settings>
1195             </open-ils.serial>
1196
1197             <open-ils.hold-targeter>
1198                 <keepalive>3</keepalive>
1199                 <stateless>1</stateless>
1200                 <language>perl</language>
1201                 <implementation>OpenILS::Application::HoldTargeter</implementation>
1202                 <max_requests>17</max_requests>
1203                 <unix_config>
1204                     <unix_sock>open-ils.hold-targeter_unix.sock</unix_sock>
1205                     <unix_pid>open-ils.hold-targeter_unix.pid</unix_pid>
1206                     <max_requests>1000</max_requests>
1207                     <unix_log>open-ils.hold-targeter_unix.log</unix_log>
1208                     <min_children>1</min_children>
1209                     <max_children>15</max_children>
1210                     <min_spare_children>1</min_spare_children>
1211                     <max_spare_children>5</max_spare_children>
1212                 </unix_config>
1213                 <app_settings>
1214                 </app_settings>
1215             </open-ils.hold-targeter>
1216
1217
1218         </apps>
1219     </default>
1220
1221     <hosts>
1222
1223         <localhost> 
1224             <!-- ^-=- 
1225             Should match the fully qualified domain name of the host.
1226
1227             On Linux, the output of the following command is authoritative:
1228             $ perl -MNet::Domain -e 'print Net::Domain::hostfqdn() . "\n";'
1229
1230             To use 'localhost' instead, run osrf_control with the 'localhost' flag
1231             -->
1232
1233             <activeapps>
1234                 <!-- services hosted on this machine -->
1235                 <appname>opensrf.settings</appname> 
1236                 <appname>opensrf.math</appname> 
1237                 <appname>opensrf.dbmath</appname> 
1238                 <appname>open-ils.acq</appname> 
1239                 <appname>open-ils.booking</appname>
1240                 <appname>open-ils.cat</appname> 
1241                 <appname>open-ils.supercat</appname> 
1242                 <appname>open-ils.search</appname> 
1243                 <appname>open-ils.circ</appname> 
1244                 <appname>open-ils.actor</appname> 
1245                 <appname>open-ils.auth</appname> 
1246                 <appname>open-ils.auth_internal</appname>
1247                 <appname>open-ils.auth_proxy</appname> 
1248                 <appname>open-ils.storage</appname>  
1249                 <appname>open-ils.justintime</appname>  
1250                 <appname>open-ils.cstore</appname>  
1251                 <appname>open-ils.collections</appname>  
1252                 <appname>open-ils.reporter</appname>  
1253                 <appname>open-ils.reporter-store</appname>  
1254                 <!-- <appname>open-ils.resolver</appname> -->
1255                 <appname>open-ils.permacrud</appname>  
1256                 <appname>open-ils.pcrud</appname>  
1257                 <appname>open-ils.trigger</appname>  
1258                 <appname>open-ils.url_verify</appname>
1259                 <appname>open-ils.fielder</appname>  
1260                 <appname>open-ils.vandelay</appname>  
1261                 <appname>open-ils.serial</appname>  
1262                 <appname>open-ils.hold-targeter</appname>  
1263             </activeapps>
1264         </localhost>
1265     </hosts>
1266
1267 </opensrf>