Advertisement
Guest User

USER CONF

a guest
Sep 7th, 2017
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. ;
  2. ; User configuration
  3. ;
  4. ; Creating entries in users.conf is a "shorthand" for creating individual
  5. ; entries in each configuration file. Using users.conf is not intended to
  6. ; provide you with as much flexibility as using the separate configuration
  7. ; files (e.g. sip.conf, iax.conf, etc) but is intended to accelerate the
  8. ; simple task of adding users. Note that creating individual items (e.g.
  9. ; custom SIP peers, IAX friends, etc.) will allow you to override specific
  10. ; parameters within this file. Parameter names here are the same as they
  11. ; appear in the other configuration files. There is no way to change the
  12. ; value of a parameter here for just one subsystem.
  13. ;
  14.  
  15. [general]
  16. ;
  17. ; Full name of a user
  18. ;
  19. fullname = New User
  20. ;
  21. ; Starting point of allocation of extensions
  22. ;
  23. userbase = 6000
  24. ;
  25. ; Create voicemail mailbox and use use macro-stdexten
  26. ;
  27. hasvoicemail = yes
  28. ;
  29. ; Set voicemail mailbox 6000 password to 1234
  30. ;
  31. vmsecret = 1234
  32. ;
  33. ; Create SIP Peer
  34. ;
  35. hassip = yes
  36. ;
  37. ; Create IAX friend
  38. ;
  39. hasiax = yes
  40. ;
  41. ; Create H.323 friend
  42. ;
  43. ;hash323 = yes
  44. ;
  45. ; Create manager entry
  46. ;
  47. hasmanager = no
  48. ;
  49. ; Set permissions for manager entry (see manager.conf.sample for documentation)
  50. ; (defaults to *all* permissions)
  51. ;managerread = system,call,log,verbose,command,agent,user,config
  52. ;managerwrite = system,call,log,verbose,command,agent,user,config
  53. ;
  54. ;
  55. ; MAC Address for res_phoneprov
  56. ;
  57. ;macaddress = 112233445566
  58. ;
  59. ; Auto provision the phone with res_phoneprov
  60. ;
  61. ;autoprov = yes
  62. ;
  63. ; Line Keys for hardphone
  64. ;
  65. ;LINEKEYS = 1
  66. ;
  67. ; Line number for hardphone
  68. ;
  69. ;linenumber = 1
  70. ;
  71. ; Local Caller ID number used with res_phoneprov and Asterisk GUI
  72. ;
  73. ;cid_number = 6000
  74. ;
  75. ; Remaining options are not specific to users.conf entries but are general.
  76. ;
  77. callwaiting = yes
  78. threewaycalling = yes
  79. callwaitingcallerid = yes
  80. transfer = yes
  81. canpark = yes
  82. cancallforward = yes
  83. callreturn = yes
  84. callgroup = 1
  85. pickupgroup = 1
  86. ;nat = no
  87.  
  88. [6000]
  89. fullname = BAPTISTE GEDALGE
  90. username = bgedalge
  91. ;email = bgedalge@promeo.fr
  92. secret = 1234
  93. dahdichan = 1
  94. mailbox = 1
  95. context=dept_1
  96. hasvoicemail = yes
  97. vmsecret = 1234
  98. ;hassip = yes
  99. ;hasiax = no
  100. ;hash323 = no
  101. ;hasmanager = no
  102. callwaiting = no
  103. ;context = international
  104. ;
  105. [6001]
  106. fullname = NATHANAEL LEVOUIN
  107. username = nlevouin
  108. ;email = nlevouin@promeo.fr
  109. secret = 1234
  110. dahdichan = 1
  111. mailbox = 1
  112. context=dept_1
  113. hasvoicemail = yes
  114. vmsecret = 1234
  115. ;hassip = yes
  116. ;hasiax = no
  117. ;hash323 = no
  118. ;hasmanager = no
  119. callwaiting = no
  120.  
  121. [6002]
  122. fullname = BENJAMIN RIQUIER
  123. username = briquier
  124. ;email = bgriquier@promeo.fr
  125. secret = 1234
  126. dahdichan = 1
  127. mailbox = 1
  128. context=dept_2
  129. hasvoicemail = yes
  130. vmsecret = 1234
  131. ;hassip = yes
  132. ;hasiax = no
  133. ;hash323 = no
  134. ;hasmanager = no
  135. callwaiting = no
  136.  
  137.  
  138. [6003]
  139. fullname = NICOLAS COUTARD
  140. username = ncoutard
  141. ;email = ncoutard@promeo.fr
  142. secret = 1234
  143. dahdichan = 1
  144. mailbox = 1
  145. context=dept_2
  146. hasvoicemail = yes
  147. vmsecret = 1234
  148. ;hassip = yes
  149. ;hasiax = no
  150. ;hash323 = no
  151. ;hasmanager = no
  152. callwaiting = no
  153.  
  154.  
  155. [6004]
  156. fullname = CHAGUY NGUIZANI
  157. username = cnguizani
  158. ;email = cnguizani@promeo.fr
  159. secret = 1234
  160. dahdichan = 1
  161. mailbox = 1
  162. context=dept_3
  163. hasvoicemail = yes
  164. vmsecret = 1234
  165. ;hassip = yes
  166. ;hasiax = no
  167. ;hash323 = no
  168. ;hasmanager = no
  169. callwaiting = no
  170.  
  171.  
  172. [6005]
  173. fullname = MATTHIEU DOREY
  174. username = mdorey
  175. ;email = mdorey@promeo.fr
  176. secret = 1234
  177. dahdichan = 1
  178. mailbox = 1
  179. context=dept_3
  180. hasvoicemail = yes
  181. vmsecret = 1234
  182. ;hassip = yes
  183. ;hasiax = no
  184. ;hash323 = no
  185. ;hasmanager = no
  186. callwaiting = no
  187. ;
  188. ; Some administrators choose alphanumeric extensions, but still want their
  189. ; users to be reachable by traditional numeric extensions, specified by the
  190. ; alternateexts entry.
  191. ;
  192. ;alternateexts = 7057,3249
  193. ;macaddress = 112233445566
  194. ;autoprov = yes
  195. ;LINEKEYS = 1
  196. ;linenumber = 1
  197. ;cid_number = 6000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement