|
@@ -0,0 +1,126 @@
|
|
|
+; MUTIL configuration file
|
|
|
+; -------------------------------------------------------------------------
|
|
|
+;
|
|
|
+; MUTIL is an automated maintainance and utility program driven by
|
|
|
+; configuration files used to perform various tasks upon execution.
|
|
|
+;
|
|
|
+; The concept here is that you can create your own custom command lines to
|
|
|
+; complete any number of tasks. For example, you could create msgmaint.ini
|
|
|
+; which executes message base purge, packing, and reply linking. Then you
|
|
|
+; can simply execute "mutil msgmaint" to kick it off.
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+
|
|
|
+[General]
|
|
|
+
|
|
|
+ ; list of functions to perform on startup
|
|
|
+
|
|
|
+ PostTextFiles = true
|
|
|
+
|
|
|
+ ; Set this value if you want to run mutil from a directory other than
|
|
|
+ ; the root Mystic directory or the mysticbbs environment variable:
|
|
|
+
|
|
|
+ ; mystic_directory=c:\mystic\mystic.dat
|
|
|
+
|
|
|
+ ; If no directory is specified in the logfile name, mUtil will attempt
|
|
|
+ ; to use the configured LOGS directory from in Mystic's configuration.
|
|
|
+ ; Comment out to disable logging completely.
|
|
|
+ logfile=ubuntu.log
|
|
|
+
|
|
|
+ ; If set to TRUE (*HIGHLY* recommended for MUTIL) then it will write the
|
|
|
+ ; log file in increments of 8KB at a time. If set to FALSE it will write
|
|
|
+ ; each individual line as it is logged. This will significantly reduce
|
|
|
+ ; MUTIL performance if set to FALSE.
|
|
|
+
|
|
|
+ logcache=true
|
|
|
+
|
|
|
+ ; Level 1 = basic
|
|
|
+ ; Level 2 = verbose
|
|
|
+ ; Level 3 = debug
|
|
|
+
|
|
|
+ loglevel=3
|
|
|
+
|
|
|
+ ; logfile time stamp. defaults to NNN DD HH:II:SS if not set here
|
|
|
+ ;logstamp = YYYYHHMMHHIISS
|
|
|
+
|
|
|
+ ; Log roller type:
|
|
|
+ ; 0 = Do not roll log files
|
|
|
+ ; 1 = Roll by number of files/filesize
|
|
|
+ ; 2 = Roll by number of days
|
|
|
+ logtype = 2
|
|
|
+
|
|
|
+ ; number of log files to keep (0 to disable log rolling)
|
|
|
+ maxlogfiles = 31
|
|
|
+
|
|
|
+ ; size of each log file in kilobytes
|
|
|
+ maxlogsize = 1500
|
|
|
+
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+
|
|
|
+[PostTextFiles]
|
|
|
+
|
|
|
+ ; Total number of text files to be posted. For each file there needs to
|
|
|
+ ; be a file definition as show below.
|
|
|
+
|
|
|
+ totalfiles = {{ total }}
|
|
|
+
|
|
|
+ ; This defines one file which will be posted to the message base. Each
|
|
|
+ ; file should be prefixed with file# where # is a number from 1 to
|
|
|
+ ; totalfiles.
|
|
|
+ ;
|
|
|
+ ; The delfile option (if true) will remove the filename after the message
|
|
|
+ ; is posted. The baseidx is the permanent index of the message base to
|
|
|
+ ; post the message into (shown as Index at the top of the message base
|
|
|
+ ; editor in Mystic's configuration. Address is the echomail destination
|
|
|
+ ; address
|
|
|
+ ;
|
|
|
+ ; file#_baseidx
|
|
|
+ ; 3 is Local Test Messages
|
|
|
+ ; 8 is fsxNet Bot Channel
|
|
|
+
|
|
|
+
|
|
|
+ {% for value in entries %}
|
|
|
+ file{{ loop.index }}_name = rss/{{ value.filename }}
|
|
|
+ file{{ loop.index }}_baseidx = 3
|
|
|
+ file{{ loop.index }}_from = bugz_ubuntu
|
|
|
+ file{{ loop.index }}_to = Ubuntu Users
|
|
|
+ file{{ loop.index }}_subj = {{ value.title }}
|
|
|
+ file{{ loop.index }}_addr = 0:0/0
|
|
|
+ file{{ loop.index }}_delfile = false
|
|
|
+
|
|
|
+ {% endfor %}
|
|
|
+
|
|
|
+ ; file1_name = AD.txt
|
|
|
+ ; file1_baseidx = 8
|
|
|
+ ; file1_from = bugz_bot
|
|
|
+ ; file1_to = All
|
|
|
+ ; file1_subj = [ASCII] BZ&BZ BBS
|
|
|
+ ; file1_addr = 0:0/0
|
|
|
+ ; file1_delfile = false
|
|
|
+
|
|
|
+ ; file2_name = AD110719.ANS
|
|
|
+ ; file2_baseidx = 8
|
|
|
+ ; file2_from = bugz_bot
|
|
|
+ ; file2_to = All
|
|
|
+ ; file2_subj = [ANSI] BZ&BZ BBS
|
|
|
+ ; file2_addr = 0:0/0
|
|
|
+ ; file2_delfile = false
|
|
|
+
|
|
|
+ ; file2_name = myfile.txt
|
|
|
+ ; file2_baseidx = 2
|
|
|
+ ; file2_from = Sysop
|
|
|
+ ; file2_to = All
|
|
|
+ ; file2_subj = My subject
|
|
|
+ ; file2_addr = 0:0/0
|
|
|
+ ; file2_delfile = false
|
|
|
+
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+; ==========================================================================
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|