home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume30 / sendopr / part01 / README < prev    next >
Text File  |  1992-06-20  |  3KB  |  67 lines

  1. This software has been tested on Sun3, Sun4, mips, and SGI.
  2. It is currently in use here on these platforms.
  3. The original author was Hyman Wong, and there have been significant
  4. upgrades and modifications made by Reg Quinton and myself.
  5.  
  6. Sendopr allows users to send messages to the operator.  
  7. It is a queuing system which delivers messages to an operator's
  8. Xterminal.  Xmessage is used to display the information.
  9.  
  10. Multi-line messages can come from standard input if the user
  11. is not a tty.  The messages appear on the operator's console
  12. which is assumed to be an Xterminal.
  13. The geometry of the window should be defined in the operator's
  14. .xdefaults file: see man page for more details.
  15.  
  16. To install:
  17.     1.  make
  18.  
  19.     2.  Include a line in /etc/services similar to:
  20. sendopr         xxx/tcp
  21.     Where xxx is the port number to be used for the service
  22.     for sendoprd.
  23.  
  24.     3.  Include a line in /etc/inetd.conf similar to:
  25. sendopr stream  tcp     nowait  nobody  /usr/ccs/lib/sendoprd           sendoprd
  26.  
  27.     4.  Then execute the command:
  28. kill -HUP "pid of inetd"
  29.     For kill: Arguments should be jobs or process id's.
  30.     This will reinitialize inetd.
  31.  
  32. README -- July 12, 1991
  33.  
  34. Sendopr was written by me, Hyman Wong, for the department of Computing
  35. and Communications Services at the University of Western Ontario.  I am
  36. a student working here as a consultant and applications programmer.
  37. Sendopr is a program utility that allows users to send a message to the
  38. operator's terminal.  Sendopr was written to reduce the clutter on the
  39. operator's screen by opening up an xmessage window at the same place on
  40. the operator's display.
  41.  
  42. Nov 18, 1991 (Reg Quinton)
  43.  
  44. Sendopr sends things to the daemon via E-mail. This requires an E-mail
  45. pipe like
  46.  
  47.     sendopr: "|/usr/ccs/lib/sendord"
  48.  
  49. in /usr/lib/aliases.
  50.  
  51. Brian Borowski:
  52. Mar. 31, 1992,  Revised sendoprd.c to use advisory locks on the .busy file.
  53. This will let the program execute when it is supposed to.
  54. Resolves the problem with .busy file lock up.
  55.  
  56. April 9, 1992  (Brian Borowski)
  57. The shell script sendopr was rewritten in C and this implementation
  58. has been done as a client using a host on the net when messages
  59. are to be queued.  In all other respects I have attempted to
  60. duplicate the behaviour of the shell script version of sendopr.
  61.  
  62. April 16, 1992 (Brian Borowski)
  63. Performed upgrade to fix the getuser problem which arose when the
  64. program was being run with no tty (for example, from cron.)
  65. Also modified interface so that the input for the message could come
  66. from standard input, rather than just the command line.
  67.