voicemail.conf.sample 24 KB

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