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