NOSCREEN option
This commit is contained in:
parent
86e276e247
commit
b89e087748
|
@ -6,11 +6,14 @@
|
|||
;
|
||||
; The syntax to execute MUTIL is: MUTIL <configuration file>. If no
|
||||
; configuration file is supplied, then the program will look for mutil.cfg
|
||||
; in the same directory.
|
||||
; in the same directory. A second parameter -NOSCREEN can be used to turn
|
||||
; off screen updates but the configuration file parameter MUST be supplied
|
||||
; ex: mutil mutil.cfg -NOSCREEN
|
||||
;
|
||||
; Many different configuration files can exist to perform any series of
|
||||
; tasks supported by MUTIL, or a single configuration can be maintained that
|
||||
; does everything.
|
||||
; does everything. The minimum requirement is the General header with a
|
||||
; task enabled, and then the specific header for that task.
|
||||
;
|
||||
; Current abilities:
|
||||
;
|
||||
|
@ -33,10 +36,10 @@
|
|||
|
||||
; list of functions to perform on startup
|
||||
|
||||
Import_FIDONET.NA = true
|
||||
Import_FILEBONE.NA = true
|
||||
MassUpload = true
|
||||
GenerateTopLists = true
|
||||
Import_FIDONET.NA = false
|
||||
Import_FILEBONE.NA = false
|
||||
MassUpload = false
|
||||
GenerateTopLists = false
|
||||
|
||||
; ==========================================================================
|
||||
; ==========================================================================
|
||||
|
@ -52,10 +55,10 @@
|
|||
|
||||
lowercase_filename = 1
|
||||
|
||||
; The following options define the "default" values used when creating any
|
||||
; new message bases. netaddress must match an exiting network address
|
||||
; configured within Mystic BBS. default values are also taken from
|
||||
; the system configuration for origin line, colors, etc.
|
||||
; The following options define the "default" values used when creating
|
||||
; any new message bases. netaddress must match an exiting network
|
||||
; address configured within Mystic BBS. default values are also
|
||||
; taken from the system configuration for origin line, colors, etc.
|
||||
|
||||
netaddress = 1:1/1
|
||||
acs_list =
|
||||
|
@ -94,9 +97,9 @@
|
|||
|
||||
; root directory to create file paths under. when a new filebone echo
|
||||
; is found, mUtil will create a file using "root_dir" + areatag. So
|
||||
; for example if root is "c:\mystic\filebase\" and the areatag is MYSTICBBS
|
||||
; it will create "c:\mystic\filebase\MYSTICBBS". This root directory MUST
|
||||
; exist.
|
||||
; for example if root is "c:\mystic\filebase\" and the areatag is
|
||||
; MYSTICBBS it will create "c:\mystic\filebase\MYSTICBBS". This root
|
||||
; directory MUST exist.
|
||||
|
||||
root_dir = \code\mystic1\filebase
|
||||
|
||||
|
@ -150,10 +153,12 @@
|
|||
|
||||
[GenerateTopLists]
|
||||
|
||||
; Top list generator can generate up to top 100 for various different
|
||||
; Top list generator can generate up to top 99 for various different
|
||||
; statistics. Each individual top file can be enabled or disabled and
|
||||
; can each have their own template files that are totally configurable.
|
||||
;
|
||||
; 1=enable for top_call, top_post, etc.
|
||||
;
|
||||
; The number of items in each list is determined by the template. It
|
||||
; could be any number between 1 and 99.
|
||||
;
|
||||
|
@ -170,6 +175,7 @@
|
|||
exclude_list = mutil.toplist.exclude.txt
|
||||
|
||||
; configuration for top callers generator
|
||||
; @NA=name @DA=calls
|
||||
|
||||
top_call = 1
|
||||
top_call_template = mutil.toplist.template.txt
|
||||
|
@ -178,6 +184,9 @@
|
|||
top_call_namelen = 30
|
||||
top_call_datalen = 10
|
||||
|
||||
; configuration for top downloads
|
||||
; @NA=name @DA=downloads
|
||||
|
||||
top_dl = 1
|
||||
top_dl_template = mutil.toplist.template.txt
|
||||
top_dl_output = topdownload.asc
|
||||
|
|
Loading…
Reference in New Issue