home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / MN321O32.ZIP / whatsnew.txt < prev   
Text File  |  2004-08-10  |  4KB  |  102 lines

  1. Important Changes since MakeNL 2.5x:
  2. ====================================
  3.  
  4. ARC:
  5. ----
  6.   The ARC keyword no longer works as documented in the old MakeNL
  7.   documentation and is obsolete. MakeNL 2.5x only had support for
  8.   Arc compression, but 3.x.x now supports multiple compression
  9.   utilities, through configurable archiver entries following the
  10.   ARCCopy, ARCMove, and ARCOpen keywords. These new keywords need
  11.   between three and five parameters. To provide compatibility with
  12.   MakeNL 2.5x, the ARC keyword must be commented out of the
  13.   MAKENL.CTL file, which will cause MakeNL to default to Arc
  14.   compression as before.
  15.  
  16.   The new syntax of the ARCXxxxx keywords are as follows:
  17.  
  18.   ARCXxxx [x] [archiver exe name] [archiver command] [command switches]
  19.  
  20.   The [x] tells MakeNL what the first character of the final archive
  21.   of the stub will be. For zip, you would list z, resulting in *.znn
  22.   output files.
  23.  
  24.   Here are some examples of commonly used archivers, and the commands
  25.   that work with those specific versions. Please check your archiver's 
  26.   documentation if you have different versions, or open sourced 
  27.   versions as opposed to commercial versions:
  28.  
  29.   PKZip v2.04:  ARC[Copy] z pkzip -ex (or: ARC z pkzip -a)
  30.   InfoZip v2.3: ARC[Copy] z zip -jo (or: ARC z zip -j)
  31.   Rar v1.53:    ARC[Copy] r rar a -ep
  32.   Arj v2.22:    ARC[Copy] j arj a -e
  33.   Lha v2.13:    ARC[Copy] l lha a -m1
  34.  
  35.   Currently, ARCCopy and ARCMove work for this feature. ARCCopy
  36.   creates an archive but leaves the original file, while ARCMove
  37.   creates an archive and removes the original file. To implement
  38.   these keywords, enter the following in your MAKENL.CTL file:
  39.  
  40.   THReshold   0 -1
  41.   ARCCopy     z zip -jo      ; Infozip v2.3
  42.   ARCMove     z zip -jmo
  43.  
  44.   The ARCOpen keyword will allow you to receive segment files in
  45.   different archiver formats and have them automatically unpacked.
  46.   A maximum of 10 ARCOpen commands may be defined in the MAKENL.CTL
  47.   file. In the FILES section of MAKENL.CTL, if a file is defined as
  48.   hub.50, then in the MAILFILES and UPLOADS directories a zipped
  49.   segment with the name hub.z0 or hub.zip will be unpacked, and the
  50.   unpacked file will be processed.
  51.  
  52.   The syntax for the ARCOpen command is the same as for ARCCopy, but
  53.   10 lines are allowed and 10 different archive formats are recognized.
  54.   The following archivers are recognized:
  55.  
  56.   Pkzip, Infozip, Arc, Lha, Zoo, Arj, Rar, Ha, Bzip2, Gzip and
  57.   Unix compress.
  58.  
  59.   Following are some examples of decompression entries in MAKENL.CTL
  60.   for the ARCOpen keyword (versions unknown - please refer to your
  61.   own archivers' documentations):
  62.  
  63.   Arc:      ARCOpen a arc ew
  64.   Infozip:  ARCOpen z unzip -oj
  65.   Lha:      ARCOpen l lha e f
  66.   Rar:      ARCOpen r rar e -o+ -y
  67.   Gzip:     ARCOpen g tar xfz
  68.   Bzip2:    ARCOpen b tar xfj
  69.   Compress: ARCOpen c tar xfz
  70.   Arj:      ARCOpen j arj -y e
  71.   Zoo:      ARCOpen o zoo eq:0
  72.   Ha:       ARCOpen h ha ey
  73.  
  74. 3D addressing Support:
  75. ----------------------
  76.    MakeNL v2.5x only supported 2D addressing (ie. 134/10). This 
  77.    caused problems when attempting to use MakeNL in multi-zone or 
  78.    multiple network setups. MakeNL v3.x.x now supports 3D addressing
  79.    (ie. 1:134/10), which resolves those problems. 
  80.  
  81. MSGID support:
  82. --------------
  83.    MakeNL v3.x.x now implements MSGID's in it's outgoing netmails. A 
  84.    file named SEQUENCE.DAT will be created in the MASTER directory as
  85.    a result.
  86.  
  87. ALLOwunpub:
  88. -----------
  89.    ALLOunpub is a new keyword that will cause MakeNL to allow the
  90.    -Unpublished- string to be present in the sixth (phone number)
  91.    field of node listings, without requiring the Pvt keyword to be
  92.    present in the listing. This keyword is disabled by default. To
  93.    enable it, add ALLOwunpub 1 to your MAKENL.CTL file.
  94.  
  95. ALPHAphone:
  96. -----------
  97.    ALPHAphone is a new keyword that will cause MakeNL to allow alpha
  98.    characters to be present in the sixth (phone number) field of node
  99.    listings. This keyword is disabled by default. To enable it, add
  100.    ALPHAphone 1 to your MAKENL.CTL file.
  101.  
  102.