home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / conemail.zip / README.NOW < prev    next >
Text File  |  1994-03-25  |  3KB  |  89 lines

  1.                                ┌────────────┐
  2.                                │ Speed Tips │
  3.                                └────────────┘
  4.  
  5. Use the following tips to make ConnectivEmail run fast on your network:
  6.  
  7.   +  Specify a local hard disk for the /SWAPPATH: parameter.  If not
  8.      possible, create a RAMDRIVE to use for the temporary swap files.
  9.      If using MS-RAMDRIVE.SYS, use the /A or /E parameters to load the
  10.      entire Ram disk in XMS or EMS memory.
  11.  
  12.      You can test for the existance of a local drive with a batch
  13.      command such as:
  14.  
  15.      set swap=f:\users\%login_name%
  16.      if exist d:\PRN set swap=d:\
  17.      set connect=/path:m: /swappath:%swap%
  18.  
  19.      If you specify the /SWAPPATH: parameter on the command line (as
  20.      opposed to the CONNECT environment variable), precede the
  21.      command with a double-slash.  For example:  cmail //swappath:c:
  22.  
  23.   +  Run CMAIL.EXE from a local hard disk if possible.  The program
  24.      must constantly refer back to this file for information, so
  25.      placing it on a local cached hard disk can greatly affect
  26.      performance.  Even if not cached, most local hard disks can
  27.      outperform heavily loaded network drives.
  28.  
  29.   +  Use a Disk Cache for your local hard disk, such as MS' SMARTDRV.EXE.
  30.      This will greatly improve workstation performance.
  31.  
  32.  
  33.                           ┌─────────────────────┐
  34.                           │ Example Batch Files │
  35.                           └─────────────────────┘
  36.  
  37. The following sample batch tests a workstation to see if it has a local
  38. hard disk, and if so, checks to see if the CMAIL.EXE file is located
  39. on the local disk.  If not, it copies the file to the local hard disk,
  40. then runs the program from there.
  41.  
  42. If the machine does not have a hard disk, the program is run from
  43. the network drive.  The batch file tests to see if the local workstation
  44. has a RAM disk installed (as D:).  If so, it uses the RAM disk as the
  45. /SWAPPATH: location.  If not, the swap files are written to the
  46. network drive.
  47.  
  48. *************************************************************************
  49.  
  50. @echo off
  51. cls
  52. map root m:=sys:connect >>nul           ; NOTE:  Netware Syntax
  53. if not exist c:\PRN goto NETWORK
  54. if not exist c:\cmail\PRN md c:\cmail
  55. if not exist c:\cmail\cmail.exe copy m:\cmail.exe c:\cmail >>nul
  56.  
  57. :LOCAL
  58. c:
  59. cd\cmail
  60. if exist *. del *.
  61. cmail /path:m: /r
  62. goto EXIT
  63.  
  64. :NETWORK
  65. set swap=f:\users\%login_name%
  66. if exist d:\PRN set swap=d:\
  67. m:
  68. cmail /r /swappath:%swap%
  69.  
  70. :EXIT
  71. set swap=
  72.  
  73.                        ┌────────────────────────────┐
  74.                        │ ConnectivEmail Usage Notes │
  75.                        └────────────────────────────┘
  76.  
  77.  
  78. o  After installation, you should place ADMIN.EXE in a secure directory.
  79.    This will prevent unauthorized users from creating mailboxes, or
  80.    from obtaining user's mailbox passwords.
  81.  
  82. o  On installation, ConnectivEmail creates a "random" mailbox password.
  83.    You should immediately change your mailbox password (in Preferences)
  84.    so others will not be able to access your mailbox simply by typing
  85.    your name in the login window.
  86.  
  87. o  You must place at least one alphabetic character in your mailbox
  88.    password to completely secure it (as opposed to all numeric).
  89.