home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / Chip_2004-11_cd1.bin / tema / fax / download / ventafax5 / vfvh5519i.exe / RCDATA / CABINET / 2MAILBOX.VFA < prev    next >
Text File  |  2003-08-22  |  5KB  |  147 lines

  1. ; ****************************************************************
  2. ; *                                                              *
  3. ; *       Answering Machine Remote Control Script Sample         *
  4. ; *          Creation of Two (Or More) Voice Mailboxes           *
  5. ; *                                                              *
  6. ; ****************************************************************
  7. ;
  8. ;           Lines beginning with semicolons are comments
  9. ;
  10. ;*****************************************************************
  11. [START]
  12. =mode 1
  13. ; In the unregistered Home version, up to two mailboxes can be 
  14. ; created.
  15. ; In the registered Home version, up to ten mailboxes can be created.
  16. ; In the registered Business version, up to 1000 mailboxes can be
  17. ; created. If you need more than 10 but fewer than 100
  18. ; mailboxes, change the mode command parameter above from 1 to 2 and
  19. ; use double-digit codes in this section (01 instead of 1, 02 instead
  20. ; of 2, etc., and ** instead of *.
  21. ; To use the script, select it in the "Remote control script file"
  22. ; field in the "Folders and Files - Service Files" tab and enable the 
  23. ; "Switch to remote control mode immediately after answering a call"
  24. ; parameter in the "Reception - Automatic" tab. 
  25. ; It is presumed that sound files (.WAV files) referred to in this 
  26. ; script are located in the \SERVICE folder. 
  27. ; The 2MAILBOX.WAV file in the \SERVICE folder contains the caller's 
  28. ; voice instructions for using the answering machine with voice
  29. ; mailboxes. 
  30. ; If the "Switch to remote control mode immediately after answering a 
  31. ; call" parameter in the "Reception - Automatic" tab is enabled, this
  32. ; file is played back in the telephone line INSTEAD of the "Answering 
  33. ; machine greeting" specified in the "Folders and Files - Service 
  34. ; Files" tab. 
  35. ; This file can contain instructions like: "If you have a touchtone
  36. ; phone, press 1 to leave a voice message or a fax in mailbox 1
  37. ; or press 2 to leave a voice message or a fax in mailbox 2." 
  38. ;
  39. =default
  40. play "2mailbox.wav"
  41. wait_cmd 30
  42.  
  43. =1
  44. set_protected 1
  45. play "leave_message.wav"
  46. record "\in\mailbox1\" 30
  47. ; This is how voice and facsimile message reception to mailbox 1 is 
  48. ; defined. For a fax to be received, the transmitting party 
  49. ; must start transmission with the distinctive fax tone (signal). 
  50. ;
  51. =2
  52. set_protected 2
  53. play "leave_message.wav"
  54. record "\in\mailbox2\" 30
  55. ; This is how voice and facsimile message reception to mailbox 2 is 
  56. ; defined. For a fax to be received, the transmitting party must 
  57. ; start transmission with the distinctive fax tone (signal). 
  58. ;
  59. ; Here you can add fax reception commands and additional mailboxes. 
  60. ; .....
  61. ;
  62. =*
  63. goto "TestPassword"
  64. ; Switching to the mailbox content playback section.
  65. ;
  66. ;*********************************************************************
  67. [TestPassword]
  68. ;
  69. =mode 4 "Enter password.wav"
  70. ; The password length here is 4 digits. Maximum length is 20 digits.
  71. ;
  72. =default
  73. set_protected 0
  74. play "errpsw.wav"
  75. ; The file to be played if the caller enters an erroneous 
  76. ; (i.e., unspecified in this section) password.
  77. ;
  78. =0000
  79. set_protected 0
  80. goto "Listening"
  81. ; Play the messages recorded without the remote control mode on the
  82. ; "common" answering machine. It is recommended to change the default ; (0000) password.
  83. ;
  84. =0001
  85. set_protected 1
  86. goto "Listening"
  87. ; Play messages recorded in mailbox 1. It is recommended to 
  88. ; change the default (0001) password.
  89. ;
  90. =0002
  91. set_protected 2
  92. goto "Listening"
  93. ; Play messages recorded in the mailbox 2. It is recommended to 
  94. ; change the default (0002) password.
  95. ;
  96. ; Here you can add commands for playing messages in additional 
  97. ; mailboxes.
  98. ; .....
  99. ;
  100. ;*********************************************************************
  101. [Listening]
  102. =mode 1
  103. ; This section describes the answering machine operations on playing 
  104. ; back the contents of the mailbox selected in the TestPassword 
  105. ; section.
  106. ;
  107. =0
  108. PLAY_REP_INFO 12
  109. wait_cmd 30
  110. ; Play back the information on messages and faxes received to the 
  111. ; mailbox. 
  112. ;
  113. =1
  114. play_new 0 1
  115. wait_cmd 30
  116. ; Play back all new messages including the caller's phone number and 
  117. ; time of reception information. 
  118. ;
  119. =2
  120. play_prev 1 1
  121. wait_cmd 30
  122. ; Play back the previous message including the caller's phone number 
  123. ; and time of reception information. 
  124. ;
  125. =3
  126. play_agn 1 1
  127. wait_cmd 30
  128. ; Replay the message including the caller's phone number and time of 
  129. ; reception information. 
  130. ;
  131. =4
  132. play_next 1 1
  133. wait_cmd 30
  134. ; Play back the next message including the caller's phone number and 
  135. ; time of reception information. 
  136. ;
  137. =5
  138. play_agn 1 0
  139. wait_cmd 30
  140. ; Replay the message excluding the caller's phone number and time of 
  141. ; reception information. 
  142. ;
  143. =*
  144. goto "TestPassword"
  145. ; Switch to playing messages from another mailbox.
  146. ;*********************************************************************
  147.