Advertisement
Guest User

Untitled

a guest
Apr 11th, 2016
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.72 KB | None | 0 0
  1. ;
  2. ; Voicemail Configuration
  3. ;
  4.  
  5. ; ********* NOTICE ************************************************************
  6. ;
  7. ; NOTE: Asterisk has to edit this file to change a user's password. This does
  8. ; not currently work with the "#include <file>" directive for Asterisk
  9. ; configuration files, nor when using realtime static configuration.
  10. ; Do not use them with this configuration file.
  11. ;
  12. ; NOTE: Mailboxes defined by app_voicemail MUST be referenced by the rest
  13. ; of the system as mailbox@context. The rest of the system cannot add
  14. ; @default to mailbox identifiers for app_voicemail that do not specify a
  15. ; context any longer. It is a mailbox identifier format that should only
  16. ; be interpreted by app_voicemail.
  17. ;
  18. ; ********* NOTICE ************************************************************
  19.  
  20. [general]
  21. ; Formats for writing Voicemail. Note that when using IMAP storage for
  22. ; voicemail, only the first format specified will be used.
  23. ;format=g723sf|wav49|wav
  24. format=wav49|gsm|wav
  25. ;
  26. ; WARNING:
  27. ; If you change the list of formats that you record voicemail in
  28. ; when you have mailboxes that contain messages, you _MUST_ absolutely
  29. ; manually go through those mailboxes and convert/delete/add the
  30. ; the message files so that they appear to have been stored using
  31. ; your new format list. If you don't do this, very unpleasant
  32. ; things may happen to your users while they are retrieving and
  33. ; manipulating their voicemail.
  34. ;
  35. ; In other words: don't change the format list on a production system
  36. ; unless you are _VERY_ sure that you know what you are doing and are
  37. ; prepared for the consequences.
  38. ;
  39. ; Who the e-mail notification should appear to come from
  40. serveremail=asterisk
  41. ;serveremail=asterisk@linux-support.net
  42. ; Should the email contain the voicemail as an attachment
  43. attach=yes
  44. ; Maximum number of messages per folder. If not specified, a default value
  45. ; (100) is used. Maximum value for this option is 9999. If set to 0, a
  46. ; mailbox will be greetings-only.
  47. ;maxmsg=100
  48. ; Maximum length of a voicemail message in seconds
  49. ;maxsecs=180
  50. ; Minimum length of a voicemail message in seconds for the message to be kept
  51. ; The default is no minimum.
  52. ;minsecs=3
  53. ; Maximum length of greetings in seconds
  54. ;maxgreet=60
  55. ; How many milliseconds to skip forward/back when rew/ff in message playback
  56. skipms=3000
  57. ; How many seconds of silence before we end the recording
  58. maxsilence=10
  59. ; Silence threshold (what we consider silence: the lower, the more sensitive)
  60. silencethreshold=128
  61. ; Max number of failed login attempts
  62. maxlogins=3
  63. ;
  64. ; Move heard messages to the 'Old' folder automagically. Defaults to on.
  65. ;moveheard=yes
  66. ;
  67. ; Forward an urgent message as an urgent message. Defaults to no so
  68. ; sender can set the urgency on the envelope of the forwarded message.
  69. ;forward_urgent_auto=no
  70. ;
  71. ; User context is where entries from users.conf are registered. The
  72. ; default value is 'default'
  73. ;
  74. ;userscontext=default
  75. ;
  76. ; If you need to have an external program, i.e. /usr/bin/myapp
  77. ; called when a voicemail is left, delivered, or your voicemailbox
  78. ; is checked, uncomment this.
  79. ;externnotify=/usr/bin/myapp
  80.  
  81. ; If you would also like to enable SMDI notification then set smdienable to yes.
  82. ; You will also need to make sure smdiport is set to a valid port as specified in
  83. ; smdi.conf.
  84. ;smdienable=yes
  85. ;smdiport=/dev/ttyS0
  86.  
  87. ; If you need to have an external program, i.e. /usr/bin/myapp
  88. ; called when a voicemail password is changed, uncomment this. The
  89. ; arguments passed to the application are: <context> <mailbox> <newpassword>
  90. ; Note: If this is set, the password will NOT be changed in voicemail.conf
  91. ; If you would like to also change the password in voicemail.conf, use
  92. ; the externpassnotify option below instead.
  93. ;externpass=/usr/bin/myapp
  94. ;externpassnotify=/usr/bin/myapp
  95.  
  96. ; If you would like to have an external program called when a user changes the
  97. ; voicemail password for the purpose of doing validation on the new password,
  98. ; then use this option. The script can decide whether or not the new password
  99. ; meets minimum password strength requirements before the Voicemail application
  100. ; accepts the password. If the script decides that the password is not acceptable,
  101. ; the user will be informed that the new password does not meet minimum password
  102. ; requirements, and they will be asked to enter another password.
  103. ;
  104. ; The arguments passed to this script are <mailbox> <context> <old pw> <new pw>.
  105. ;
  106. ; The script should print "VALID" to stdout to indicate that the new password
  107. ; is acceptable. If the password is considered too weak, the script should print
  108. ; "INVALID" to stdout.
  109. ;
  110. ; There is an example script in the contrib/scripts/ directory, voicemailpwcheck.py,
  111. ; which implements some basic password checking, and can be used as a starting point
  112. ; for use with this option.
  113. ;
  114. ;externpasscheck=/usr/local/bin/voicemailpwcheck.py
  115.  
  116. ; For the directory, you can override the intro file if you want
  117. ;directoryintro=dir-intro
  118. ; The character set for voicemail messages can be specified here
  119. ; default: ISO-8859-1
  120. ;charset=UTF-8
  121. ; The ADSI feature descriptor number to download to
  122. ;adsifdn=0000000F
  123. ; The ADSI security lock code
  124. ;adsisec=9BDBF7AC
  125. ; The ADSI voicemail application version number.
  126. ;adsiver=1
  127. ; Skip the "[PBX]:" string from the message title
  128. ;pbxskip=yes
  129. ; Change the From: string
  130. ;fromstring=The Asterisk PBX
  131. ; Permit finding entries for forward/compose from the directory
  132. ;usedirectory=yes
  133. ; Voicemail can be stored in a database using the ODBC driver.
  134. ; The value of odbcstorage is the database connection configured
  135. ; in res_odbc.conf.
  136. ;odbcstorage=asterisk
  137. ; The default table for ODBC voicemail storage is voicemessages.
  138. ;odbctable=voicemessages
  139. ;
  140. ; Change the from, body and/or subject, variables:
  141. ; VM_NAME, VM_DUR, VM_MSGNUM, VM_MAILBOX, VM_CALLERID, VM_CIDNUM,
  142. ; VM_CIDNAME, VM_DATE
  143. ; Additionally, on forwarded messages, you have the variables:
  144. ; ORIG_VM_CALLERID, ORIG_VM_CIDNUM, ORIG_VM_CIDNAME, ORIG_VM_DATE
  145. ; You can select between two variables by using dialplan functions, e.g.
  146. ; ${IF(${ISNULL(${ORIG_VM_DATE})}?${VM_DATE}:${ORIG_VM_DATE})}
  147. ;
  148. ; Note: The emailbody config row can only be up to 512 characters due to a
  149. ; limitation in the Asterisk configuration subsystem.
  150. ;emailsubject=[PBX]: New message ${VM_MSGNUM} in mailbox ${VM_MAILBOX}
  151. ; The following definition is very close to the default, but the default shows
  152. ; just the CIDNAME, if it is not null, otherwise just the CIDNUM, or "an unknown
  153. ; caller", if they are both null.
  154. ;emailbody=Dear ${VM_NAME}:\n\n\tjust wanted to let you know you were just left a ${VM_DUR} long message (number ${VM_MSGNUM})\nin mailbox ${VM_MAILBOX} from ${VM_CALLERID}, on ${VM_DATE}, so you might\nwant to check it when you get a chance. Thanks!\n\n\t\t\t\t--Asterisk\n
  155. ;
  156. ; Note: ${IF()} strips spacing at the beginning and end of its true and false
  157. ; values, so a newline cannot be placed at either location. The word 'so' is
  158. ; therefore duplicated, in order for the newline to be interpreted correctly.
  159. ;emailbody=Dear ${VM_NAME}:\n\n\tjust wanted to let you know you were just ${IF($["${VM_CIDNUM}" = "${ORIG_VM_CIDNUM}"]?left:forwarded)} a ${VM_DUR} long message (number ${VM_MSGNUM})\nin mailbox ${VM_MAILBOX} from ${VM_CALLERID}, on ${VM_DATE},\n${IF($["${VM_CIDNUM}" = "${ORIG_VM_CIDNUM}"]?so:(originally sent by ${ORIG_VM_CALLERID} on ${ORIG_VM_DATE})\nso)} you might want to check it when you get a chance. Thanks!\n\n\t\t\t\t--Asterisk\n
  160. ;
  161. ; You can also change the Pager From: string, the pager body and/or subject.
  162. ; The above defined variables also can be used here
  163. ;pagerfromstring=The Asterisk PBX
  164. ;pagersubject=New VM
  165. ;pagerbody=New ${VM_DUR} long msg in box ${VM_MAILBOX}\nfrom ${VM_CALLERID}, on ${VM_DATE}
  166. ;
  167. ; Set the date format on outgoing mails. Valid arguments can be found on the
  168. ; strftime(3) man page
  169. ;
  170. ; Default
  171. emaildateformat=%A, %B %d, %Y at %r
  172. ; 24h date format
  173. ;emaildateformat=%A, %d %B %Y at %H:%M:%S
  174. ;
  175. ; Default for pager use
  176. pagerdateformat=%A, %B %d, %Y at %r
  177. ; Short 24h date format for pager use
  178. ;pagerdateformat=%T %D
  179. ;
  180. ; Using the mailcmd option, you can specify what command is called for
  181. ; outbound E-mail. The default is shown below.
  182. ;
  183. ;mailcmd=/usr/sbin/sendmail -t
  184. ;
  185. ;pollmailboxes=no ; If mailboxes are changed anywhere outside of app_voicemail,
  186. ; ; then this option must be enabled for MWI to work. This
  187. ; ; enables polling mailboxes for changes. Normally, it will
  188. ; ; expect that changes are only made when someone called in
  189. ; ; to one of the voicemail applications.
  190. ; ; Examples of situations that would require this option are
  191. ; ; web interfaces to voicemail or an email client in the case
  192. ; ; of using IMAP storage.
  193. ; ; Default: no
  194. ;pollfreq=30 ; If the "pollmailboxes" option is enabled, this option
  195. ; ; sets the polling frequency. The default is once every
  196. ; ; 30 seconds.
  197. ;
  198.  
  199. ; -----------------------------------------------------------------------------
  200. ; IMAP configuration settings only
  201. ; These settings are only applicable when Asterisk is compiled with IMAP support.
  202. ;
  203. ;imapgreetings=no ; If using IMAP storage, specify whether voicemail greetings
  204. ; should be stored via IMAP. If no, then greetings are stored
  205. ; as if IMAP storage were not enabled.
  206. ;greetingsfolder=INBOX ; If imapgreetings=yes, then specify which folder to store
  207. ; your greetings in. If you do not specify a folder, then INBOX
  208. ; will be used
  209. ;imapparentfolder=INBOX ; Some IMAP server implementations store folders under INBOX
  210. ; instead of using a top level folder (ex. INBOX/Friends). In
  211. ; this case, user imapparentfolder to set the parent folder. For
  212. ; example, Cyrus IMAP does NOT use INBOX as the parent. Default
  213. ; is to have no parent folder set.
  214. ;imapserver=localhost ; The address of the IMAP server
  215. ;imapport=143 ; The port of the IMAP server
  216. ;imapflags=ssl ; Optional flags to pass to the IMAP server in the IMAP mailbox
  217. ; name. For example, setting this to 'ssl' will enable OpenSSL
  218. ; encryption, assuming the IMAP libraries were compiled with
  219. ; OpenSSL support.
  220. ;imapfolder=INBOX ; The folder in which to store voicemail messages on the IMAP
  221. ; server. By default, they are stored in INBOX.
  222. ;authuser=user ; The master user to use for connecting to the IMAP server, if
  223. ; the server is configured with a single user that has access to
  224. ; all mailboxes
  225. ;authpassword=password ; The password for the authuser, if used
  226. ;imapopentimeout=60 ; The TCP open timeout (in seconds)
  227. ;imapclosetimeout=60 ; The TCP close timeout (in seconds)
  228. ;imapreadtimeout=60 ; The TCP read timeout (in seconds)
  229. ;imapwritetimeout=60 ; The TCP write timeout (in seconds)
  230.  
  231. ; -----------------------------------------------------------------------------
  232. ;
  233.  
  234. ; Each mailbox is listed in the form <mailbox>=<password>,<name>,<email>,<pager_email>,<options>
  235. ; If email is specified, a message will be sent when a voicemail is received, to
  236. ; the given mailbox, for each address listed (separated by |, ex. alice@foo.com|bob@foo.com).
  237. ; If pager is specified, a message will be sent there as well. If the password
  238. ; is prefixed by '-', then it is considered to be unchangeable.
  239. ;
  240. ; Advanced options example is extension 4069
  241. ; NOTE: All options can be expressed globally in the general section, and
  242. ; overridden in the per-mailbox settings, unless listed otherwise.
  243. ;
  244. ; tz=central ; Timezone from zonemessages below. Irrelevant if envelope=no.
  245. ; locale=de_DE.UTF-8 ; set the locale for generation of the date/time strings (make
  246. ; sure the locales are installed in your operating system; e.g
  247. ; on Debian Linux you can use "dpkg-reconfigure locales").
  248. ; If you use UTF-8 locales, make sure to set the "charset" option
  249. ; to UTF-8 too. If you mix different locales for different users
  250. ; you should avoid words in the emaildateformat specification, e.g.:
  251. ; emaildateformat=%A, %d %B %Y, %H:%M:%S
  252. ; attach=yes ; Attach the voicemail to the notification email *NOT* the pager email
  253. ; attachfmt=wav49 ; Which format to attach to the email. Normally this is the
  254. ; first format specified in the format parameter above, but this
  255. ; option lets you customize the format sent to particular mailboxes.
  256. ; Useful if Windows users want wav49, but Linux users want gsm.
  257. ; [per-mailbox only]
  258. ; saycid=yes ; Say the caller id information before the message. If not described,
  259. ; or set to no, it will be in the envelope. When enabled, if a recorded file
  260. ; with the same name as the caller id exists in
  261. ; <astspooldir>/recordings/callerids, then that file will be played as a name
  262. ; rather than saying each digit as a phone number.
  263. ; cidinternalcontexts=intern ; Internal Context for Name Playback instead of
  264. ; extension digits when saying caller id.
  265. ; sayduration=no ; Turn on/off the duration information before the message. [ON by default]
  266. ; saydurationm=2 ; Specify the minimum duration to say. Default is 2 minutes
  267. ; dialout=fromvm ; Context to dial out from [option 4 from mailbox's advanced menu].
  268. ; If not specified, option 4 will not be listed and dialing out
  269. ; from within VoiceMailMain() will not be permitted.
  270. sendvoicemail=yes ; Allow the user to compose and send a voicemail while inside
  271. ; VoiceMailMain() [option 5 from mailbox's advanced menu].
  272. ; If set to 'no', option 5 will not be listed.
  273. ; searchcontexts=yes ; Current default behavior is to search only the default context
  274. ; if one is not specified. The older behavior was to search all contexts.
  275. ; This option restores the old behavior [DEFAULT=no]
  276. ; Note: If you have this option enabled, then you will be required to have
  277. ; unique mailbox names across all contexts. Otherwise, an ambiguity is created
  278. ; since it is impossible to know which mailbox to retrieve when one is requested.
  279. ; callback=fromvm ; Context to call back from
  280. ; if not listed, calling the sender back will not be permitted
  281. ; exitcontext=fromvm ; Context to go to on user exit such as * or 0
  282. ; The default is the current context.
  283. ; review=yes ; Allow sender to review/rerecord their message before saving it [OFF by default
  284. ; operator=yes ; Allow sender to hit 0 before/after/during leaving a voicemail to
  285. ; reach an operator. This option REQUIRES an 'o' extension in the
  286. ; same context (or in exitcontext, if set), as that is where the
  287. ; 0 key will send you. [OFF by default]
  288. ; envelope=no ; Turn on/off envelope playback before message playback. [ON by default]
  289. ; This does NOT affect option 3,3 from the advanced options menu
  290. ; delete=yes ; After notification, the voicemail is deleted from the server. [per-mailbox only]
  291. ; This is intended for use with users who wish to receive their
  292. ; voicemail ONLY by email. Note: "deletevoicemail" is provided as an
  293. ; equivalent option for Realtime configuration.
  294. ; alias=Bongo ; Use this additional string for comparison while looking
  295. ; for a match in the Directory application. This option
  296. ; may be specified multiple times to specify additional
  297. ; strings [per-mailbox only]
  298. ; volgain=0.0 ; Emails bearing the voicemail may arrive in a volume too
  299. ; quiet to be heard. This parameter allows you to specify how
  300. ; much gain to add to the message when sending a voicemail.
  301. ; NOTE: sox must be installed for this option to work.
  302. ; nextaftercmd=yes ; Skips to the next message after hitting 7 or 9 to delete/save current message.
  303. ; forcename=yes ; Forces a new user to record their name. A new user is
  304. ; determined by the password being the same as
  305. ; the mailbox number. The default is "no".
  306. ; forcegreetings=no ; This is the same as forcename, except for recording
  307. ; greetings. The default is "no".
  308. ; hidefromdir=yes ; Hide this mailbox from the directory produced by app_directory
  309. ; The default is "no".
  310. ; tempgreetwarn=yes ; Remind the user that their temporary greeting is set
  311.  
  312. ; passwordlocation=spooldir
  313. ; Usually the voicemail password (vmsecret) is stored in
  314. ; this configuration file. By setting this option you can
  315. ; specify where Asterisk should read/write the vmsecret.
  316. ; Supported options:
  317. ; voicemail.conf:
  318. ; This is the default option. The secret is read from
  319. ; and written to voicemail.conf (or users.conf).
  320. ; spooldir:
  321. ; The secret is stored in a separate file in the user's
  322. ; voicemail spool directory in a file named secret.conf.
  323. ; Please ensure that normal Linux users are not
  324. ; permitted to access Asterisk's spool directory as the
  325. ; secret is stored in plain text. If a secret is not
  326. ; found in this directory, the password in
  327. ; voicemail.conf (or users.conf) will be used.
  328. ; Note that this option does not affect password storage for
  329. ; realtime users, which are still stored in the realtime
  330. ; backend.
  331. ; messagewrap=no ; Enable next/last message to wrap around to
  332. ; first (from last) and last (from first) message
  333. ; The default is "no".
  334. ; minpassword=0 ; Enforce minimum password length
  335.  
  336. ; vm-password=custom_sound
  337. ; Customize which sound file is used instead of the default
  338. ; prompt that says: "password"
  339. ; vm-newpassword=custom_sound
  340. ; Customize which sound file is used instead of the default
  341. ; prompt that says: "Please enter your new password followed by
  342. ; the pound key."
  343. ; vm-passchanged=custom_sound
  344. ; Customize which sound file is used instead of the default
  345. ; prompt that says: "Your password has been changed."
  346. ; vm-reenterpassword=custom_sound
  347. ; Customize which sound file is used instead of the default
  348. ; prompt that says: "Please re-enter your password followed by
  349. ; the pound key"
  350. ; vm-mismatch=custom_sound
  351. ; Customize which sound file is used instead of the default
  352. ; prompt that says: "The passwords you entered and re-entered
  353. ; did not match."
  354. ; vm-invalid-password=custom_sound
  355. ; Customize which sound file is used instead of the default
  356. ; prompt that says: ...
  357. ; vm-pls-try-again=custom_sound
  358. ; Customize which sound file is used instead of the
  359. ; default prompt that says "Please try again."
  360. ; vm-prepend-timeout=custom_sound
  361. ; Customize which sound file is used when the user
  362. ; times out while recording a prepend message instead
  363. ; of the default prompt that says "then press pound"
  364. ; note that this will currently follow vm-pls-try-again.
  365. ; this behavior is subject to change in the near future.
  366. ; listen-control-forward-key=# ; Customize the key that fast-forwards message playback
  367. ; listen-control-reverse-key=* ; Customize the key that rewinds message playback
  368. ; listen-control-pause-key=0 ; Customize the key that pauses/unpauses message playback
  369. ; listen-control-restart-key=2 ; Customize the key that restarts message playback
  370. ; listen-control-stop-key=13456789 ; Customize the keys that interrupt message playback, probably all keys not set above
  371.  
  372. ; Maximum number of messages allowed in the 'Deleted' folder. If set to 0
  373. ; or no then no deleted messages will be moved. If non-zero (max 9999) then up
  374. ; to this number of messages will be automagically saved when they are
  375. ; 'deleted' on a FIFO basis.
  376. ; defaults to being off
  377. ; backupdeleted=100
  378.  
  379.  
  380. [zonemessages]
  381. ; Users may be located in different timezones, or may have different
  382. ; message announcements for their introductory message when they enter
  383. ; the voicemail system. Set the message and the timezone each user
  384. ; hears here. Set the user into one of these zones with the tz= attribute
  385. ; in the options field of the mailbox. Of course, language substitution
  386. ; still applies here so you may have several directory trees that have
  387. ; alternate language choices.
  388. ;
  389. ; Look in /usr/share/zoneinfo/ for names of timezones.
  390. ; Look at the manual page for strftime for a quick tutorial on how the
  391. ; variable substitution is done on the values below.
  392. ;
  393. ; Supported values:
  394. ; 'filename' filename of a soundfile (single ticks around the filename
  395. ; required)
  396. ; ${VAR} variable substitution
  397. ; A or a Day of week (Saturday, Sunday, ...)
  398. ; B or b or h Month name (January, February, ...)
  399. ; d or e numeric day of month (first, second, ..., thirty-first)
  400. ; Y Year
  401. ; I or l Hour, 12 hour clock
  402. ; H Hour, 24 hour clock (single digit hours preceded by "oh")
  403. ; k Hour, 24 hour clock (single digit hours NOT preceded by "oh")
  404. ; M Minute, with 00 pronounced as "o'clock"
  405. ; N Minute, with 00 pronounced as "hundred" (US military time)
  406. ; P or p AM or PM
  407. ; Q "today", "yesterday" or ABdY
  408. ; (*note: not standard strftime value)
  409. ; q "" (for today), "yesterday", weekday, or ABdY
  410. ; (*note: not standard strftime value)
  411. ; R 24 hour time, including minute
  412. ;
  413. eastern=America/New_York|'vm-received' Q 'digits/at' IMp
  414. central=America/Chicago|'vm-received' Q 'digits/at' IMp
  415. central24=America/Chicago|'vm-received' q 'digits/at' H N 'hours'
  416. military=Zulu|'vm-received' q 'digits/at' H N 'hours' 'phonetic/z_p'
  417. european=Europe/Copenhagen|'vm-received' a d b 'digits/at' HM
  418.  
  419.  
  420.  
  421. [default]
  422. ; Note: The rest of the system must reference mailboxes defined here as mailbox@default.
  423.  
  424. 1234 => 4242,Example Mailbox,root@localhost
  425. ;4200 => 9855,Mark Spencer,markster@linux-support.net,mypager@digium.com,attach=no|serveremail=myaddy@digium.com|tz=central|maxmsg=10
  426. ;4300 => 3456,Ben Rigas,ben@american-computer.net
  427. ;4310 => -5432,Sales,sales@marko.net
  428. ;4069 => 6522,Matt Brooks,matt@marko.net,,|tz=central|attach=yes|saycid=yes|dialout=fromvm|callback=fromvm|review=yes|operator=yes|envelope=yes|moveheard=yes|sayduration=yes|saydurationm=1
  429. ;4073 => 1099,Bianca Paige,bianca@biancapaige.com,,delete=1|emailsubject=You have a new voicemail.|emailbody=Click on the attachment to listen.|rip=2010-06-04
  430. ;4110 => 3443,Rob Flynn,rflynn@blueridge.net
  431. ;4235 => 1234,Jim Holmes,jim@astricon.ips,,Tz=european
  432.  
  433.  
  434. ;
  435. ; Mailboxes may be organized into multiple contexts for
  436. ; voicemail virtualhosting
  437. ;
  438.  
  439. [other]
  440. ;The intro can be customized on a per-context basis
  441. ;directoryintro=dir-company2
  442. 1234 => 5678,Company2 User,root@localhost
  443.  
  444. ; example for our acme compartmentalized company
  445. ;
  446. ; Pete telecommutes from Chicago, so we'll customize timestamps for him.
  447. ;
  448. ;[acme]
  449. ;111 => 7383,Pete,pete@acme-widgets.com,,tz=central
  450. ;112 => 6262,Nancy,nancy@acme-widgets.com
  451. ;
  452.  
  453. ; ---------------------------------------------------------------------------
  454. ; IMAP user settings and overrides. These are only applicable when Asterisk is
  455. ; compiled with IMAP support.
  456. ;
  457. ; imapuser=username ; The IMAP username of the mailbox to access
  458. ; imappassword=password ; The IMAP password of the user
  459. ; imapvmshareid=xxxx ; A shared mailbox ID to use for the IMAP mailbox
  460. ; login, as opposed to the mailbox dialed
  461. ; imapfolder ; Overrides the global imapfolder setting
  462. ; imapserver ; Overrides the global imapserver setting
  463. ; imapport ; Overrides the global imapport setting
  464. ; imapflags ; Overrides the global imapflags setting
  465.  
  466. ;
  467. ;[imapvm]
  468. ;4324 => 7764,Ellis Redding,red@buxton.us,,imapuser=eredding|imappassword=g3tbusy|imapfolder=notinbox
  469. ;4325 => 2392,Andrew Dufresne,andy@dufresne.info,,imapuser=adufresne|imappassword=rockh@mmer
  470.  
  471. [vm-demo]
  472. 22 => 22,Alice Jones,alice@example.com,alice2@example.com,attach=no|tz=central|maxmsg=10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement