home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / network / amitin.lha / amiga.readme next >
Encoding:
Text File  |  1992-09-05  |  3.2 KB  |  78 lines

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