home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / mail / zend.1.0.README < prev    next >
Encoding:
Text File  |  1993-04-21  |  7.2 KB  |  191 lines

  1. This is the README file for Zend version 1.0.
  2.  
  3. It was written by Gerben Wierda, see any source file for details. This source
  4. is "free software" but he nonetheless would like to benefit financially from
  5. his work. So if you are inclined to reward his hours of devotion, you are
  6. advised to send him a small amount of money.
  7.  
  8. This package is covered by the Gnu Public License.  See the file COPYING for
  9. details.  If you would like to do something with this package that you feel is
  10. reasonable but you feel is prohibited by the license, contact me to see if we
  11. can work it out.
  12.  
  13. You should read the file entirely before proceeding. There is a shortcut.
  14.  
  15. WHAT IT IS
  16.  
  17. The good news is: Zend is a sender/receiver program that will send any file or
  18. directory from one user on one system to another user at another system, as
  19. long as they are connected by e-mail.
  20.  
  21. The bad news is: it is not super-efficient.  Data is encoded and sent in
  22. chunks, several mail messages are sent etc. It is slow, but reliable. Speed
  23. depends on your mail speed, normally 4 connections to your mail node are
  24. needed for every transfer. If you contact once a day, that would mean 4 days
  25. to zend a file/directory. The other good news is: it does not need any
  26. intervention from the user and if you have a mail connection, than it will
  27. work. It will also try to compress anything that is sent.
  28.  
  29. HOW TO INSTALL (NeXT users, read this file ENTIRELY before proceeding)
  30.  
  31. Unpack the .tar.Z file. Go into the zend-1.0 directory.
  32.  
  33.     1. Read the manual, `zend.tex'. It is in LaTeX format, but you can read 
  34.     it anyhow.
  35.  
  36.     2. Copy policy.ex to policy.h. Edit `policy.h'. There are at least
  37.     three things to be looked at.
  38.  
  39.     3. Edit `Makefile'. Set the directories at the top of the file and
  40.     choose the compiler settings.
  41.  
  42.     4. run `make'.
  43.  
  44.     5. if it compiled without problems, run `make install' as superuser.
  45.     (If you have a previous version of zend installed, you can revert to
  46.      it by running `make uninstall'.)
  47.  
  48.     6. Edit the config file /usr/spool/zend/config and put in the
  49.     name of your system as known by mail. If you do not do this
  50.     zend will not run. Choose other variables as you like. Removing
  51.     one of the sizes will make them effectively 0. Note: this file is
  52.     very sensitive to typing errors!
  53.     (Alternatively the systemname and spooldirectory can be set directly
  54.      from configuration parameters in the Makefile.)
  55.  
  56.     7. Install the following alias in your mail system:
  57.  
  58.         zend: "|/usr/local/bin/zend-R"
  59.  
  60.     or wherever zend is installed. Make the alias work. On most systems
  61.     this can be done by running newaliases. Some systems need to run
  62.     make aliases in their NIS directory (Yellow Pages). Some systems
  63.     may need killing and restarting sendmail.
  64.  
  65.     8. Install the following lines in your crontab (or in /usr/adm/daily
  66.     if you have it and you so prefer):
  67.  
  68.         if [ -f /usr/local/bin/zend-T ]
  69.         then
  70.             /usr/local/bin/zend-T
  71.         fi
  72.  
  73.     This is to make zend check periodically for lost packets, and to
  74.     eventually cleanup stale jobs.
  75.  
  76.     9. Install the following line in /etc/rc (or, preferably /etc/rc.local
  77.     if you have it):
  78.  
  79.         if [ -f /usr/local/bin/zend ]
  80.         then
  81.             (/usr/local/bin/zend -CLEANUP) >/dev/console 2>&1
  82.         fi
  83.  
  84.     This is to cleanup stale lockfiles after a system crash.
  85.     
  86.     10. zend yourself a file. If it arrives and you get two mail messages
  87.     telling you so, all is fine. Watch the console of your system for error
  88.     messages. For instance, when first running on DEC Ultrix 4.2 it
  89.     turned out that uuencode made the file have default modes 0. This
  90.     would result in an empty file delivered succesfully.... Compare the
  91.     zent file with the sent one.
  92.  
  93.     11. Normally zend records what it is doing in /usr/spool/zend/LOGFILE.
  94.     This file grows without bounds, so it should be cleaned up periodically.
  95.     Alternatively you can delete it altogether, since zend only writes
  96.     log records if the logfile exists.
  97.  
  98.     12. If the system is not already in the makefile, send me mail
  99.     how to compile and install.
  100.  
  101.     13. If you want the manpage installed, run:
  102.         make maninstall
  103.     This will install in the MANDIR in the makefile (normally that
  104.     is /usr/man, so you might want to change that to /usr/local/man. There
  105.     is no manpage for the config file, but config.ex is well
  106.     self-documented.
  107.  
  108.     14. To make a clean system (only the .tar.Z distribution is left),
  109.     edit the Makefile and remove the echo from the line:
  110.         echo rm -rf $$DIRNAME/* ;\
  111.     and run
  112.         make CLEAN
  113.  
  114. SECURITY ISSUES:
  115.  
  116.     Zend is installed setuid root in order to be able to deliver files to
  117.     with the right user/group ids set.  Care has been taken to plug all
  118.     security holes we could think of: subprograms are executed in
  119.     real user mode wherever possible, and are referred to by absolute
  120.     pathname otherwise (to avoid being able to execute a subversive
  121.     program as root by just simply manipulating PATH).
  122.  
  123.     The NeXTSTEP front end, incidentally, has to be setuid root too in
  124.     order to be able to interrupt the zend driver.  Most of the times,
  125.     though, it runs in non-privileged mode: privileged mode is enabled
  126.     only to interrupt or terminate its subprocess.
  127.  
  128.     However there is no guarantee that we overlooked something, but
  129.     you can always check the sources if you don't trust us at face value.
  130.  
  131.  
  132. SYSTEMS KNOWN TO WORK:
  133.  
  134.     SunOS 4.1.1B on a SPARCstation with either native cc or GNU cc 2.3
  135.  
  136.     NeXTOS 2.1 / 3.0 with cc (which is GNU cc 1.36 / 1.93)
  137.  
  138.         For NeXT 3.0 users there is a special treat.  Zend comes with
  139.         a NeXTSTEP front end.  It is not perfect yet (since you cannot
  140.         drop a multiple-file selection on the Zend icon yet, and you
  141.         probably never will, since it runs contrary to NeXTSTEP issues) 
  142.         but it works.  Drop a (set of) files on the window, fill in
  143.         the recipient and press the deliver button. Or use services.
  144.         
  145.         In the source distribution it is packaged in a separate
  146.         archive, NeXTapp.tar, for portability reasons.  You can unpack
  147.         it with "make NeXTApp"; this also removes the archive.
  148.         From that moment on you can use Project Builder to manage
  149.         the Zend project in NeXTapp.
  150.  
  151.         A second special treat is in the fact that running install in
  152.         the Project Builder will auto install, zend, Zend.app and the
  153.         aliases, crontab and daily entries needed to perfectly run
  154.         Zend.  All configuration and installation parameters can be
  155.         set from Makefile.postable in the NeXTapp/Zend directory.
  156.  
  157.         And third treat, there is an executable-only Installer Package
  158.         that you can install right away.
  159.  
  160.     Ultrix 4.3 with native cc on a DECstation 5000/200
  161.  
  162.     SCO Unix 3.2.2 on a 486
  163.  
  164. KNOWN PROBLEMS:
  165.  
  166.     SunOS 3.5 delivery does not work. It compiles ok....
  167.  
  168.     Systems that use Dr. Dumas uud/uue installed as uuencode/uudecode
  169.     have problems. This is because these sources probably originated
  170.     on DOS systems where they don't have pipes and as a result it is
  171.     unusable with software that does use pipes (like this).
  172.  
  173.     System V-like systems may have (sometimes a kernel configurable) limit
  174.     on the size of filenames. If a file or directory is transferred with
  175.     too long names it depends on the systems configuration if the process
  176.     is aborted or if the too long names are cut off. SCO Unix is know to
  177.     have default unfriendly behaviour. AIX is default friendly.
  178.  
  179. AUTHORS:
  180.  
  181.     Gerben Wierda (gerben@rna.indiv.nluug.nl)
  182.         Goudriaanstraat 1
  183.         1222 SG  Hilversum
  184.         The Netherlands
  185.     Tom Hageman
  186.         Soerabajastraat 44b
  187.         9715 LV  Groningen
  188.         The Netherlands
  189.  
  190. $Id: README,v 1.3 1993/02/21 13:07:33 gerben Exp $
  191.