ubuntu.ini 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 concept here is that you can create your own custom command lines to
  8. ; complete any number of tasks. For example, you could create msgmaint.ini
  9. ; which executes message base purge, packing, and reply linking. Then you
  10. ; can simply execute "mutil msgmaint" to kick it off.
  11. ; ==========================================================================
  12. ; ==========================================================================
  13. ; ==========================================================================
  14. [General]
  15. ; list of functions to perform on startup
  16. PostTextFiles = true
  17. ; Set this value if you want to run mutil from a directory other than
  18. ; the root Mystic directory or the mysticbbs environment variable:
  19. ; mystic_directory=c:\mystic\mystic.dat
  20. ; If no directory is specified in the logfile name, mUtil will attempt
  21. ; to use the configured LOGS directory from in Mystic's configuration.
  22. ; Comment out to disable logging completely.
  23. logfile=ubuntu.log
  24. ; If set to TRUE (*HIGHLY* recommended for MUTIL) then it will write the
  25. ; log file in increments of 8KB at a time. If set to FALSE it will write
  26. ; each individual line as it is logged. This will significantly reduce
  27. ; MUTIL performance if set to FALSE.
  28. logcache=true
  29. ; Level 1 = basic
  30. ; Level 2 = verbose
  31. ; Level 3 = debug
  32. loglevel=3
  33. ; logfile time stamp. defaults to NNN DD HH:II:SS if not set here
  34. ;logstamp = YYYYHHMMHHIISS
  35. ; Log roller type:
  36. ; 0 = Do not roll log files
  37. ; 1 = Roll by number of files/filesize
  38. ; 2 = Roll by number of days
  39. logtype = 2
  40. ; number of log files to keep (0 to disable log rolling)
  41. maxlogfiles = 31
  42. ; size of each log file in kilobytes
  43. maxlogsize = 1500
  44. ; ==========================================================================
  45. ; ==========================================================================
  46. ; ==========================================================================
  47. [PostTextFiles]
  48. ; Total number of text files to be posted. For each file there needs to
  49. ; be a file definition as show below.
  50. totalfiles = {{ total }}
  51. ; This defines one file which will be posted to the message base. Each
  52. ; file should be prefixed with file# where # is a number from 1 to
  53. ; totalfiles.
  54. ;
  55. ; The delfile option (if true) will remove the filename after the message
  56. ; is posted. The baseidx is the permanent index of the message base to
  57. ; post the message into (shown as Index at the top of the message base
  58. ; editor in Mystic's configuration. Address is the echomail destination
  59. ; address
  60. ;
  61. ; file#_baseidx
  62. ; 3 is Local Test Messages
  63. ; 8 is fsxNet Bot Channel
  64. {% for value in entries %}
  65. file{{ loop.index }}_name = rss/{{ value.filename }}
  66. file{{ loop.index }}_baseidx = 3
  67. file{{ loop.index }}_from = bugz_ubuntu
  68. file{{ loop.index }}_to = Ubuntu Users
  69. file{{ loop.index }}_subj = {{ value.title }}
  70. file{{ loop.index }}_addr = 0:0/0
  71. file{{ loop.index }}_delfile = false
  72. {% endfor %}
  73. ; file1_name = AD.txt
  74. ; file1_baseidx = 8
  75. ; file1_from = bugz_bot
  76. ; file1_to = All
  77. ; file1_subj = [ASCII] BZ&BZ BBS
  78. ; file1_addr = 0:0/0
  79. ; file1_delfile = false
  80. ; file2_name = AD110719.ANS
  81. ; file2_baseidx = 8
  82. ; file2_from = bugz_bot
  83. ; file2_to = All
  84. ; file2_subj = [ANSI] BZ&BZ BBS
  85. ; file2_addr = 0:0/0
  86. ; file2_delfile = false
  87. ; file2_name = myfile.txt
  88. ; file2_baseidx = 2
  89. ; file2_from = Sysop
  90. ; file2_to = All
  91. ; file2_subj = My subject
  92. ; file2_addr = 0:0/0
  93. ; file2_delfile = false
  94. ; ==========================================================================
  95. ; ==========================================================================
  96. ; ==========================================================================