home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / ra / urd102b.zip / EXAMPLE1.ARJ / URD.CTL < prev    next >
Text File  |  1993-05-15  |  5KB  |  108 lines

  1. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. ;  Example configurationfile for User Registration Door 1.02b
  3. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  4.  
  5. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  6. ; Keyword : REGISTRATIONKEY
  7. ; Purpose : Enter here the registrationkey you received with registering
  8. ;           the program.
  9.  
  10. RegistrationKey = 0
  11.  
  12.  
  13. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  14. ; Keyword : ANSWERFILE
  15. ; Purpose : Defines the name of Answer File where the answers of the users
  16. ;           have to be written. You must specifify the full path and file-
  17. ;           name. If none is supplied, URD will use/create NEWUSER.ASW in
  18. ;           the RA system directory.
  19.  
  20. AnswerFile = C:\RA\NEWUSER.ASW
  21.  
  22.  
  23. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  24. ; Keyword : ANSWERED
  25. ; Purpose : This keyword defines the start of the section that describes
  26. ;           how URD has to update the user when he/she has fineshed the
  27. ;           questionnaire correctly.
  28. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  29. ; Keyword : AFLAGS, BFLAGS, CFLAGS, DFLAGS
  30. ; Purpose : Sets or resets the flags. The flags are numbered from 1 to 8.
  31. ;           You can use the following characters :
  32. ;
  33. ;             -  Flag is not affected
  34. ;             1  Flag is set
  35. ;             0  Flag is reset
  36. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  37. ; Keyword : UPDATELEVEL
  38. ; Purpose : Updates the securitylevel of the user. The format of this line
  39. ;           is :
  40. ;
  41. ;             UpdateLevel <old level>,<new level>,<timeleft>
  42. ;
  43. ;           <old level>  : The level of the user before he started the
  44. ;                          registration.
  45. ;           <new level>  : The level he will get AFTER completing the
  46. ;                          registration.
  47. ;           <timeleft>   : If the users level was updated due to this
  48. ;                          statement, his timelimit will be set to this
  49. ;                          value.
  50. ;
  51. ;           You can use this line as often as you want. It's only limited by
  52. ;           the amount of memory you have available. The level of the user
  53. ;           is only updated when an exact match can be made. If you don't
  54. ;           want to use the level update or timeleft update, make them zero.
  55. ;           For example : UpdateLevel 10,20,0  or  UpdateLevel 10,0,30
  56. ;           If <old level> is zero, the statement will be ignored.
  57. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  58. ; Keyword : LOCKOUT
  59. ; Purpose : Locks out the user when he/she doesn't want to anser you
  60. ;           questionnaire. The securitylevel of the user will be lowered to
  61. ;           zero (0) and the call will be terminated. A LOCKOUT will
  62. ;           override a DELETE if they are used both. This keyword can only
  63. ;           be used in the NOTANSWERED section.
  64. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  65. ; Keyword : DELETE
  66. ; Purpose : Deletes the user from the userbase if he/she doesn't want to
  67. ;           answer your questionnaire. After deleting the user the call
  68. ;           be terminated. This keyword can only be used in the NOTANSWERED
  69. ;           section.
  70. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  71. ; Keyword : HANGUP
  72. ; Purpose : Terminates the call if the user don't want to answer your
  73. ;           questionnaire. This keyword can be only be used in the
  74. ;           NOTANSWERED section.
  75. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  76. ; Keyword : END
  77. ; Purpose : The section must be ended with an END keyword
  78. ;
  79.  
  80. Answered
  81.   AFlags = 1-------
  82.   BFlags = --------
  83.   CFlags = --------
  84.   DFlags = --------
  85.   UpdateLevel = 10,15,30
  86. End
  87.  
  88.  
  89. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  90. ; Keyword : NOTANSWERED
  91. ; Purpose : This keyword defines the start of the section that describes
  92. ;           how URD has to update the user when it doesn't wanted to
  93. ;           answer the question. You can use the same keywords as with
  94. ;           ANSWERED.
  95.  
  96. NotAnswered
  97.   AFlags = 0-------
  98.   BFlags = --------
  99.   CFlags = --------
  100.   DFlags = --------
  101.   UpdateLevel = 10,5,15
  102.   Lockout
  103. End
  104.  
  105.  
  106. ; NOTE: A keyword like "DFLAGS = --------" may also be left out. URD won't
  107. ;       change the flags by default.
  108. ; <EOF>