home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / network / amitin.rea < prev    next >
Text File  |  1992-11-11  |  4KB  |  86 lines

  1. This is an excellent Amiga port of "TIN," the popular threaded news
  2. reader from Unix.  Among other nice features, it can be run by a
  3. remote user over the serial port.  To use it you must have a newsfeed
  4. on your amiga, as with AmigaUUCP 1.16D.  See dlgtin.LHA for the
  5. associated files.
  6.  
  7. What follows is the readme file from the archive:
  8. ---
  9. This is the Amiga port of TIN. To use it you will need to do the following:
  10.  
  11. Have appropriate directories assigned (UULIB: UUNEWS:).
  12. Have these environment variables set:
  13.  
  14. NODENAME
  15. USERNAME
  16. REALNAME
  17. HOME
  18. EDITOR
  19.  
  20. TIN only works with a hierarchical news directory. This means you will
  21. need Dillon's UUCP1.16 or higher. TIN has been modified to work with
  22. Dillon's Sendmail & Postnews programs. These take different arguments
  23. from standard UNIX mail and news programs.
  24.  
  25. The editor you use with TIN should not return instantly, so if you are
  26. using CED or TTX (or probably some others too) you will need to also add
  27. in the appropriate options in the environment variable EDITOR (see script
  28. file below) which will force your editor to wait until you've quit the
  29. editor. Unless you have an editor which understands the argument +7 to
  30. mean "start editing at line 7", you should set "Editor Offset" in the
  31. configuration menu (type shift-M) to OFF. An example startup script is
  32. given here (I've renamed tin to tin.exe so you can call this script TIN):
  33.  
  34. ----------------------------------
  35. ; For WB2.0 users, the setenv's can be set's instead. This allows multiple
  36. ; users to run with their own names etc. WB1.3 users have to use setenv.
  37.  
  38. setenv USERNAME fred
  39. setenv REALNAME "Fred Flinstone"
  40. setenv NODENAME bedrock   ; This should be just your node name, not the
  41.                           ; entire domain.
  42. setenv HOME    dh0:news   ; wherever you want your news & index files
  43.                           ; stored
  44. setenv EDITOR  c:ed
  45. stack 30000               ; TIN requires a stack this large!
  46. actived                   ; create a new active file
  47. delete uulib:active
  48. rename uulib:newactive uulib:active
  49. tin.exe                   ; start tin itself
  50. ---------------------------------
  51.  
  52. More options, and use of tin is explained in the file tin.nrf. (The
  53. standard manual page that comes with TIN).
  54.  
  55. The following options have been disabled from the TIN source for the Amiga
  56. version:
  57.  
  58. - Automatic post processing of news items. This include uudecoding,
  59. uuencoding, un-shar'ing, and printing.
  60.  
  61. - Shell escape and piping to any shell command.
  62.  
  63. - Ability to change News and Mail directories.
  64.  
  65. - Re-reading of index files while reading news has been disabled. So has
  66. updating index files in the background (-U option).
  67.  
  68. These options were disabled partly to make TIN easier to port, but also
  69. to make it secure enough to run as a newsreader for a Bulletin Board.
  70.  
  71. A TIND program (for creating/updating index files) exists, and is only any
  72. use on a BBS. To make TIN aware that you are using TIND to update the
  73. index, you must set the environment variable TIND (it doesn't matter what
  74. you set it to!). The index files are by default stored in the UUNEWS:
  75. directory, in a subdirectory called .index (as in UNIX). For performance
  76. reasons, you may wish to change the directory to a different drive. By
  77. setting the environment variable TIN_INDEX, you can force the index files
  78. to be stored in $TIN_INDEX/.index.
  79.  
  80. Another two environment variables LINES and COLUMNS can be set to specify
  81. the size of your screen. Inside an Amiga window this isn't required, but
  82. once again, if you're running a BBS these things need to be set.
  83.  
  84.  - Mark Tomlinson
  85. (mark@garden.equinox.gen.nz)
  86.