home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / newc_dev / uucicosd.lha / uucico_sd.readme < prev    next >
Text File  |  1993-03-21  |  3KB  |  94 lines

  1. show uucico 1.16.23.sd.3  21-MAR-1993  Steve Drew   (drew@bootrom.cgo.dec.com)
  2. -------------------
  3.  
  4.  o Small mods to reading chars that results in less cpu load when recieving
  5.    data at high speeds. This only seems to have a noticeable benifit to 
  6.    faster Amiga's ie 020/030/040 machines. I have seen the load go from
  7.    %70 down to < %10 on a 030 machine.
  8.    
  9.  o Fix to getname() that resulted in overwritting memory for systems that
  10.    gave > 20 chars of data in the Shere message. (Thanks to Kai 'wusel' 
  11.    Siering for the fix).
  12.    
  13.  
  14. uucico 1.16.23.sd.2  30-DEC-1992  Steve Drew   (drew@bootrom.cgo.dec.com)
  15. -------------------
  16.  
  17. (Rev .2 same as .1 except runs sendmail async.)
  18.  
  19. This is 1.16D uucico plus xferstat patches by John Bickers, and following 
  20. additions by Steve Drew.
  21.  
  22. All the changes are faily minor and have been tested heavily and in use
  23. for months. No enforcer hits.
  24.  
  25.  o Added Mail notify on failure/success file copies (see below)
  26.  
  27.  o Added Packet retransmit loggin. (adds line to uuspool: if any retransmits)
  28.  
  29.    ie:    
  30.    (12/19-00:09:34) uucico,amucexp,drew Retransmitted/Total Packets: 2/133
  31.  
  32.  o GIO changes to Force failure if > %25 packets in error.
  33.  
  34.  o Added 8K (setvbuf) to buffer writes to disk.
  35.  
  36.  o Fixed bug with send_file returning COPYFAIL (otherwise AmigaUUCP could
  37.    loose files on send if protocol error just after startup)
  38.  
  39.  o Logging of phone number dialed to logfile. (even if dial fails).
  40.  
  41.  o Record device used and phone number dailed in xferstat.
  42.  
  43.  o Records if conversation failed to both logfile and xferstat.
  44.  
  45. xferstat example:
  46.  
  47. < bigsys 06-12-92 00:45:36 > 06-12-92 00:45:49 (00:00:13)  1121    590  52%
  48. | g 3  256      427    14155 #        0     7680 #    0    1
  49. | VIA device serial.device unit 0 number 5558014
  50. # Conversation FAILED => LOGFILE
  51.  
  52.  
  53. The source is included for the changed modules since 1.16D, including the
  54. xferstat support.
  55.  
  56. Other features are still waiting to be added to uucico, these are the
  57. ones I needed the most and provide them for anyone to continue to improve
  58. uucico. Just ensure any new versions are can be indentified by changing
  59. the VER and uident strings in the source.
  60.  
  61.  
  62.  
  63. UUCICO mail notification. 
  64. -------------------------
  65.  
  66. This version of uucico will send a mail notification to postmaster on
  67. events such as failed uucp'd files or succesful incoming or outgoing
  68. file copies depending on the value of CopyNotify in the config file.
  69.  
  70. The default is 0, and no notifications will be sent.
  71.  
  72. The mail is always From UUCICO except for incoming file copies for which
  73. the from will be the remote user that sent you the file. 
  74.  
  75.  
  76. -------------Add following to uulib:config file---------------------
  77. # UUCICO, copy notify options
  78. #
  79. #Bitmask:
  80. #
  81. # 1 - notify of send failures that will not be retried (ie denied)
  82. # 2 - notify of send failures that will be retried (ie protocol errors)
  83. # 4 - notify of successfull outgoing file copy (uucp'd copies only)
  84. # 8 - notify of incoming file (uucp'd file copies only)
  85. #16 - notify of incoming failure of anykind
  86. #
  87. # ie set to 31 for all features.
  88. #
  89. # mail is sent to postmaster. So alias postmaster in config file as desired.
  90. #
  91. #Notify of any failures, and any incoming uucp'd copied files
  92. #
  93. CopyNotify   11
  94.