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