NOSCREEN option

This commit is contained in:
mysticbbs 2012-03-04 22:32:50 -05:00
parent 86e276e247
commit b89e087748
1 changed files with 24 additions and 15 deletions

View File

@ -6,18 +6,21 @@
; ;
; The syntax to execute MUTIL is: MUTIL <configuration file>. If no ; The syntax to execute MUTIL is: MUTIL <configuration file>. If no
; configuration file is supplied, then the program will look for mutil.cfg ; 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 ; Many different configuration files can exist to perform any series of
; tasks supported by MUTIL, or a single configuration can be maintained that ; 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: ; Current abilities:
; ;
; - Import FIDONET.NA into Message bases ; - Import FIDONET.NA into Message bases
; - Import FILEBONE.NA into File bases ; - Import FILEBONE.NA into File bases
; - Mass upload files to all file bases (with FILE_ID.DIZ import) ; - Mass upload files to all file bases (with FILE_ID.DIZ import)
; - Generate Top 1 upto 99 Callers, Posters, Downloaders, and Uploaders ; - Generate Top 1 up to 99 Callers, Posters, Downloaders, and Uploaders
; ;
; ========================================================================== ; ==========================================================================
; ========================================================================== ; ==========================================================================
@ -33,10 +36,10 @@
; list of functions to perform on startup ; list of functions to perform on startup
Import_FIDONET.NA = true Import_FIDONET.NA = false
Import_FILEBONE.NA = true Import_FILEBONE.NA = false
MassUpload = true MassUpload = false
GenerateTopLists = true GenerateTopLists = false
; ========================================================================== ; ==========================================================================
; ========================================================================== ; ==========================================================================
@ -52,10 +55,10 @@
lowercase_filename = 1 lowercase_filename = 1
; The following options define the "default" values used when creating any ; The following options define the "default" values used when creating
; new message bases. netaddress must match an exiting network address ; any new message bases. netaddress must match an exiting network
; configured within Mystic BBS. default values are also taken from ; address configured within Mystic BBS. default values are also
; the system configuration for origin line, colors, etc. ; taken from the system configuration for origin line, colors, etc.
netaddress = 1:1/1 netaddress = 1:1/1
acs_list = acs_list =
@ -94,9 +97,9 @@
; root directory to create file paths under. when a new filebone echo ; root directory to create file paths under. when a new filebone echo
; is found, mUtil will create a file using "root_dir" + areatag. So ; 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 ; for example if root is "c:\mystic\filebase\" and the areatag is
; it will create "c:\mystic\filebase\MYSTICBBS". This root directory MUST ; MYSTICBBS it will create "c:\mystic\filebase\MYSTICBBS". This root
; exist. ; directory MUST exist.
root_dir = \code\mystic1\filebase root_dir = \code\mystic1\filebase
@ -150,10 +153,12 @@
[GenerateTopLists] [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 ; statistics. Each individual top file can be enabled or disabled and
; can each have their own template files that are totally configurable. ; 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 ; The number of items in each list is determined by the template. It
; could be any number between 1 and 99. ; could be any number between 1 and 99.
; ;
@ -170,6 +175,7 @@
exclude_list = mutil.toplist.exclude.txt exclude_list = mutil.toplist.exclude.txt
; configuration for top callers generator ; configuration for top callers generator
; @NA=name @DA=calls
top_call = 1 top_call = 1
top_call_template = mutil.toplist.template.txt top_call_template = mutil.toplist.template.txt
@ -178,6 +184,9 @@
top_call_namelen = 30 top_call_namelen = 30
top_call_datalen = 10 top_call_datalen = 10
; configuration for top downloads
; @NA=name @DA=downloads
top_dl = 1 top_dl = 1
top_dl_template = mutil.toplist.template.txt top_dl_template = mutil.toplist.template.txt
top_dl_output = topdownload.asc top_dl_output = topdownload.asc