bzbz.ini 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. ; MUTIL configuration file
  2. ; -------------------------------------------------------------------------
  3. ;
  4. ; MUTIL is an automated maintainance and utility program driven by
  5. ; configuration files used to perform various tasks upon execution.
  6. ;
  7. ; The syntax to execute MUTIL is: MUTIL <configuration file>. If no
  8. ; configuration file is supplied, then the program will look for mutil.ini
  9. ; in the same directory. A second parameter -NOSCREEN can be used to turn
  10. ; off screen updates but the configuration file parameter MUST be supplied
  11. ; ex: mutil mutil.ini -NOSCREEN
  12. ;
  13. ; Many different configuration files can exist to perform any series of
  14. ; tasks supported by MUTIL, or a single configuration can be maintained that
  15. ; does everything. The minimum requirement is the General header with a
  16. ; task enabled, and then the specific header for that task that defines its
  17. ; options.
  18. ;
  19. ; Current abilities (enabled/disabled in the General header below):
  20. ;
  21. ; - Export Binkley-style FLO echomail/netmail
  22. ; - Import Binkley-style FLO echomail/netmail
  23. ; - Import Message Bases (by datafile analysis)
  24. ; - Import FIDONET.NA into Message bases
  25. ; - Import FILEBONE.NA into File bases
  26. ; - Mass upload files to all file bases (with FILE_ID.DIZ import and the
  27. ; ability to exclude files by filemask)
  28. ; - Generate Top 1 up to 99 Callers, Posters, Downloaders, Uploaders, PCR
  29. ; Completely configurable output by using template files
  30. ; - Import FILES.BBS into file bases
  31. ; - Generate all files listing
  32. ; - Purge Message bases (by age and max messages)
  33. ; - Pack and renumber message bases
  34. ; - Post text files to message bases
  35. ; - Merge nodelists into Mystic format
  36. ; - Toss TIC+files into BBS and to subscribed downlinks
  37. ; - Pack and check integrity of file base listings
  38. ; - Sort file base listings
  39. ; - Perform message base echomail reply linking
  40. ; - Purge user database marking inactive users for deletion
  41. ; - Pack user database and remove private messages of deleted users
  42. ;
  43. ; The concept here is that you can create your own custom command lines to
  44. ; complete any number of tasks. For example, you could create msgmaint.ini
  45. ; which executes message base purge, packing, and reply linking. Then you
  46. ; can simply execute "mutil msgmaint" to kick it off.
  47. ; ==========================================================================
  48. ; ==========================================================================
  49. ; ==========================================================================
  50. [General]
  51. ; list of functions to perform on startup
  52. PostTextFiles = true
  53. ; Set this value if you want to run mutil from a directory other than
  54. ; the root Mystic directory or the mysticbbs environment variable:
  55. ; mystic_directory=c:\mystic\mystic.dat
  56. ; If no directory is specified in the logfile name, mUtil will attempt
  57. ; to use the configured LOGS directory from in Mystic's configuration.
  58. ; Comment out to disable logging completely.
  59. logfile=spaceBOT.log
  60. ; If set to TRUE (*HIGHLY* recommended for MUTIL) then it will write the
  61. ; log file in increments of 8KB at a time. If set to FALSE it will write
  62. ; each individual line as it is logged. This will significantly reduce
  63. ; MUTIL performance if set to FALSE.
  64. logcache=true
  65. ; Level 1 = basic
  66. ; Level 2 = verbose
  67. ; Level 3 = debug
  68. loglevel=3
  69. ; logfile time stamp. defaults to NNN DD HH:II:SS if not set here
  70. ;logstamp = YYYYHHMMHHIISS
  71. ; Log roller type:
  72. ; 0 = Do not roll log files
  73. ; 1 = Roll by number of files/filesize
  74. ; 2 = Roll by number of days
  75. logtype = 2
  76. ; number of log files to keep (0 to disable log rolling)
  77. maxlogfiles = 31
  78. ; size of each log file in kilobytes
  79. maxlogsize = 1500
  80. ; ==========================================================================
  81. ; ==========================================================================
  82. ; ==========================================================================
  83. [PostTextFiles]
  84. ; Total number of text files to be posted. For each file there needs to
  85. ; be a file definition as show below.
  86. totalfiles = 2
  87. ; This defines one file which will be posted to the message base. Each
  88. ; file should be prefixed with file# where # is a number from 1 to
  89. ; totalfiles.
  90. ;
  91. ; The delfile option (if true) will remove the filename after the message
  92. ; is posted. The baseidx is the permanent index of the message base to
  93. ; post the message into (shown as Index at the top of the message base
  94. ; editor in Mystic's configuration. Address is the echomail destination
  95. ; address
  96. ;
  97. ; file#_baseidx
  98. ; 3 is Local Test Messages
  99. ; 8 is fsxNet Bot Channel
  100. file1_name = venv/bzbz.bbs
  101. file1_baseidx = 8
  102. file1_from = bugz_bot
  103. file1_to = All
  104. file1_subj = Space Report for BZ&BZ BBS
  105. ; file1_subj = [ASCII] BZ&BZ BBS
  106. file1_addr = 0:0/0
  107. file1_delfile = false
  108. file2_name = venv/bzbz.ans
  109. file2_baseidx = 8
  110. file2_from = bugz_bot
  111. file2_to = All
  112. file2_subj = [ANSI] Space Report for BZ&BZ BBS
  113. file2_addr = 0:0/0
  114. file2_delfile = false
  115. ; file2_name = myfile.txt
  116. ; file2_baseidx = 2
  117. ; file2_from = Sysop
  118. ; file2_to = All
  119. ; file2_subj = My subject
  120. ; file2_addr = 0:0/0
  121. ; file2_delfile = false
  122. ; ==========================================================================
  123. ; ==========================================================================
  124. ; ==========================================================================