home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / emma22.zip / MNP.CSF < prev    next >
Text File  |  1990-05-11  |  2KB  |  64 lines

  1. * Use this script with EMMA if you have an MNP modem.  This script was
  2. * created for use with a Microcom AX/2400c; for a different modem, some of
  3. * the AT commands are likely to require modification.
  4. *
  5. * To prepare this script, copy it to a file called EMMA.CSF and then edit
  6. * it as follows:
  7. *
  8. * (1)    Change the port parameters on the line marked *1*.  With an MNP
  9. *    modem it is wise to set a high bps rate since that speed is effective
  10. *    only between the PC and the modem.
  11. *
  12. * (2)   Edit the script so that the appropriate commands are sent to the modem
  13. *       to:
  14. *              Turn off bps-rate adjustment.
  15. *              Force the modem into MNP mode.
  16. *              Select Control-S/Control-Q flow control.
  17. *
  18. * (3)    Adjust the dialing string on the line marked *2*.  You might, for
  19. *    example, need to change "ATDT" to "ATDP" to accomodate pulse dialing,
  20. *    or change the number from "1-800-333-1818" to "9,800-333-1818" if
  21. *    you are dialing through a PBX.  Please note that, at the time this
  22. *    script is being created, the number used is the only tollfree number
  23. *    on which MCI Mail supports MNP.
  24. *
  25. * (4)    Replace "username" in the line marked *3* with your MCI Mail
  26. *    username in double quotes.
  27. *
  28. * (5)    Replace "password" in the line marked *4* with your MCI Mail
  29. *    password in double quotes.
  30. *
  31. * (6)    Remove these comments.  That is, delete all lines from the top
  32. *    of the file down to and including the line of asterisks.
  33. *******************************************************************************
  34. C    "Calling MCI Mail using MNP^M^J"
  35. C    "(Press the Escape key if you need to abort the session.)^M^J"
  36. P  1    "9600"        *1*    Your COM port number and speed go in this line
  37. T    "ATZ^M"
  38. R  5    "OK^M^J"
  39. D  1
  40. T    "ATE1 S7=45^M"        Echo commands.  Wait 45 secs for carrier.
  41. R  5    "OK^M^J"
  42. T    "AT\J0^M"        Turn off bps-rate adjust
  43. R  5    "OK^M^J"
  44. T    "AT\N2^M"        Turn on MNP mode
  45. R  5    "OK^M^J"
  46. T    "AT\Q1^M"        Turn on Control-S/Control-Q flow control
  47. R  5    "OK^M^J"
  48. T    "AT\V1^M"        Turn on MNP result codes
  49. R  5    "OK^M^J"
  50. T    "ATDT1-800-333-1818^M"    *3*    Adjust this command if necessary
  51. R 40    "CONNECT"
  52. D  2
  53. T    "^M"
  54. R 20    "Port:"
  55. R  5    "name:"
  56. T    "username"    *4*    Put your username in this line
  57. T    "/batch:1ST/"
  58. T    "password"    *5*    And your password in this line
  59. T    "^M"
  60. R 20    "COM^M^J"
  61. M
  62. R 10    "CLR DTE^M^J"
  63. C    "You will find any new mail in file MAIL.IN"
  64.