voicemail.conf.sample 26 KB

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