home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / ListSERV2_3.desc < prev    next >
Text File  |  2014-05-19  |  2KB  |  58 lines

  1. Changes since 2.0:
  2. ==================
  3.  
  4.  - Removed all unnecessary fflush() calls.
  5.  
  6.  - Changed multiple used texts to defines, so I can easily replace them
  7.    with pointers to global strings and save some bytes. Low priority. :-)
  8.  
  9.  - Now using an case-independant strstr() version for comparisons.
  10.  
  11.  - Removed a few unnecessary variables.
  12.  
  13.  - Replaced the file-loging routine with a modified version from the
  14.    netsupport.library until the library works 100% with logfiles.
  15.    Therefore the logfile format has changed.
  16.  
  17.  - Changed open() calls to fopen().
  18.  
  19.  - Moved multiple used texts into "string.c" module, so they can be
  20.    accessed with pointers and are only stored once in the binary.
  21.  
  22.  - The submitted command is now stated in the reply's subject line when a
  23.    fatal error occurs.
  24.  
  25.  - Removed the "UNSUB" alias for "UNSUBSCRIBE". Wasn't documented anyway.
  26.  
  27.  - ListSERV now accepts a parameter via commandline: The name of the
  28.    default list. This list is used when "ADD" or "DELETE" do not state a
  29.    list. This feature can be used with the aliases as follows:
  30.  
  31.         testlist-request: "|listserv testlist"
  32.  
  33.    and a command like "ADD" would be interpreted as "ADD testlist".
  34.  
  35.  
  36.  - Modified DoNewMailingList script-to use the new commandline feature
  37.    with the "listname-request" alias.
  38.  
  39.  - Removed a few unnecessary comments from the source.
  40.  
  41.  - Restructured the whole main() function! Now the "From:"-line is only
  42.    parsed in the message header. A few variables could be removed due to
  43.    the new loop-structure.
  44.  
  45.  - Changed returncodes in error-case to WARN or FAIL.
  46.  
  47.  - Added additional log-messages in error-case.
  48.  
  49.  - Buffer for logmessages is now allocated with malloc(), instead on stack.
  50.  
  51.  - subscription() now terminates in case it can't parse the command.
  52.  
  53.  - "ADD address" is now supported, too! subscription() looks for '@' and
  54.    '!' to determine wether the parameter is an address or a listname. If no
  55.    default listname was provided, the command is expected as usual:
  56.    "ADD [address] listname" or the helpfile is sent out.
  57.  
  58.