home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / mscustom.ini < prev    next >
Text File  |  2020-01-01  |  4KB  |  104 lines

  1. GOTO GO ; FILE MSCUSTOM.INI
  2. ;
  3. ; SAMPLE individual customization file for MS-DOS Kermit 3.14.
  4. ; Make any desired changes, and then store this file in the same directory
  5. ; as your MSKERMIT.INI initialization file.
  6. ;
  7. ; Author: Christine M. Gianone, September 1992.
  8. ; Revised: June 1993 for version 3.13.
  9. ; Revised: September 1994 for version 3.14.
  10. ; Most recent update: Wed Sep 28 16:27:17 1994
  11. ;
  12. :GO
  13. if < \v(version) 314 -
  14.   stop 1 -
  15.   This MSCUSTOM.INI file may be used only with MS-DOS Kermit 3.14 or later.
  16.  
  17. echo Executing SAMPLE MS-DOS Kermit customization file, \v(cmdfile)...
  18. echo Please edit this file to suit your needs and preferences.
  19.  
  20. COMMENT - Autodownload and autoupload are disabled by default, see KERMIT.UPD.
  21. ;
  22. check term
  23. if fail forward XFER
  24. ec
  25. ec Auto-upload and -download disabled.
  26. ec Use SET TERMINAL APC ON to enable.
  27. ec
  28. ; set terminal apc on        ; Uncomment to enable this feature.
  29.  
  30. :XFER
  31. COMMENT - Sample file transfer preferences.
  32. ;
  33. set block 3            ; 16-bit CRC for strong error checking.
  34. set window 4            ; 4 Window slots.
  35. set receive packet-length 2000    ; Packet length is governed by receiver.
  36. set control prefix all          ; Prefix all control characters.
  37.  
  38. ; Macros for transferring files in text and binary mode...
  39. ;
  40. define bsend binary, send \%1 \%2  ; SEND in binary mode
  41. define tsend text,   send \%1 \%2  ; SEND in text mode
  42. define bget  binary, get \%1  ; GET in binary mode
  43. define tget  text,   get \%1  ; GET in text mode
  44.  
  45. COMMENT - TCP/IP network configuration.
  46. ;
  47. check tcp
  48. if fail forward notcp
  49.  
  50. ; If your site has a BOOTP server and your PC is registered in it, the only
  51. ; command you need here is the following SET TCP/IP ADDRESS BOOTP command.
  52. ; You will also need the SET TCP/IP DOMAIN command if your BOOTP server is
  53. ; not at RFC1395 level and/or does not provide your PC's hostname (substitute
  54. ; your PC's real hostname for FOO.BAR.EDU).
  55. ;
  56. set tcp address BOOTP                 ; BOOTP will tell me my IP address
  57. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My network's domain name
  58.  
  59. ; Otherwise, to use TCP/IP connections, replace the dummy values below with
  60. ; appropriate values for your network (DON'T MAKE THEM UP! - consult your
  61. ; network manager) and uncomment the SET TCP/IP commands.
  62. ;
  63. ; SET TCP/IP ADDRESS 123.123.123.123  ; My PC's numeric IP address
  64. ; SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  65. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My PC's fully qualified domain name
  66. ; SET TCP/IP GATEWAY 123.123.123.1    ; My network gateway's IP address
  67. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's address
  68. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  69. ; SET TCP/IP BROADCAST 255.255.255.255 ; My network's broadcast address
  70.  
  71. ; Sample macro that shows how to use the session manager to access
  72. ; a particular host, called MYHOST.  Make one of these for each host you
  73. ; commonly access.  Then the first time you type "myhost" you'll get a new
  74. ; connection (and a session number), and subsequent times, the same session
  75. ; will be continued.  This allows for easy session-switching from the
  76. ; MS-Kermit> prompt.  You can also use Alt-n (\KnextSession) to toggle among
  77. ; sessions while in CONNECT mode.  NOTE: TELNET is a macro that is defined
  78. ; in MSKERMIT.INI.
  79. ;
  80. define myhost -
  81.   telnet myhost 23 vt320,-
  82.   if success assign myhost telnet \v(session)
  83.  
  84. :NOTCP
  85. ;
  86. ; Add you own macro definitions, key settings, color selections, etc, here,
  87. ; for example:
  88.  
  89. def _modem hayes    ; Change this to your modem type, see MODEMS\READ.ME.
  90. ; set printer nul    ; Uncomment this if you do NOT have a printer.
  91. set port 1              ; Change if desired.  If COM3 or 4, read KERMIT.BWR.
  92. set speed 9600          ; Change if desired.
  93. set flow xon/xoff       ; Change to RTS/CTS if modem is configured for this.
  94. check term
  95. if fail end 0
  96. set term type vt320     ; Change this if desired.
  97. set term bytesize 7     ; Change to 8 if desired.
  98. set term color 0 34 47  ; Terminal screen fore- and background colors.
  99. set term under 0 33 47  ; Underscore simulation colors.
  100.  
  101. ; take \v(inidir)keyboard\vt300.ini ; Uncomment for full VT320 key mappings.
  102.  
  103. ; (End of MSCUSTOM.INI)
  104.