Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
 <?xml-stylesheet type="text/xsl" href="scheduler_documentation.xsl"	?>
 <config mail_xslt_stylesheet="config/scheduler_mail.xsl"
        tcp_port="4139">
    
    <security ignore_unknown_hosts="yes">
        <allowed_host host="localhost"   level="all"/>
    </security>
    <process_classes>
        <process_class max_processes="30"/>
        <process_class max_processes="10" name="single"/>
    </process_classes>
    <script language="VBScript">
        <![CDATA[
	 		Sub spooler_init
 				Dim ws, return_code, command
 
 				command = "net.exe use j: \\tuvix\j"
 				Set ws = CreateObject("Wscript.shell")
 				return_code = ws.run( command, 0, 1 )
 				Set ws = Nothing
 			End Sub
        ]]>
    </script>
    <http_server>
      <http_directory path="${SCHEDULER_HOME}/" url_path="/scheduler_home/"/>
      <http_directory path="${SCHEDULER_DATA}/" url_path="/scheduler_data/"/>
    </http_server>
 </config>