[Home]

Summary:ASTERISK-00047: Add these notes to configs/voicemail.conf.sample
Reporter:John Todd (jtodd)Labels:
Date Opened:2003-08-04 17:35:44Date Closed:2004-04-05 10:22:12
Priority:TrivialRegression?No
Status:Closed/CompleteComponents:Documentation
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:The new timezone features are not adequately documented for the uninitiated.  Please find a more complete description of features in the "additional information" section, which may more appropriately give data to the new user.  

****** ADDITIONAL INFORMATION ******

;
; Users may be located in different timezones, or may have different
;  message announcements for their introductory message when they enter
;  the voicemail system.  Set the message and the timezone each user
;  hears here.  Set the user into one of these zones with the tz= attribute
;  in the options field of the mailbox.  Of course, language substitution
;  still applies here so you may have several directory trees that have
;  alternate language choices.
;
;  Look in /usr/share/zoneinfo/ for names of timezones.
;  Look at the manual page for strftime for a quick tutorial on how the
;   variable substitution is done on the values below.
;
; Supported values:
;  'filename'        = filename of a soundfile
;  '${VAR}'          = variable substitution
;  'A' or 'a'        = Day of week (Saturday, Sunday, ...)
;  'B' or 'b' or 'h' = Month name (January, February, ...)
;  'd' or 'e'        = numeric day of month (first, second, ..., thirty-first)
;  'Y'               = Year
;  'I' or 'l'        = hour, 12 hour clock
;  'H' or 'k'        = hour, 24 hour clock (single digit hours preceeded by "oh")
;  'M'               = minute
;  'P' or 'p'        = AM or PM
;  'Q'               = "today", "yesterday" or ABdY (*note: not standard strftime value)
;  'q'               = "today", "yesterday", weekday, or ABdY (*note: not standard strftime value)
;  'R'               = 24 hour time, including minute
;
;
[zonemessages]
eastern=America/NewYork|'vm-received' Q 'digits/at' IMp
central=America/Chicago|'vm-received' Q 'digits/at' IMp
central24=America/Chicago|'vm-received' 'digits/at' H 'digits/hundred' M
Comments:By: Tilghman Lesher (tilghman) 2003-08-04 17:55:06

Explicit filenames should be surrounded with single ticks (').  The filename should be relative to /var/lib/asterisk/sounds/.  All other
values should NOT be surrounded by single ticks (').

The following formats are specified incorrectly:
k - 24-hour hour, single digit hours are NOT preceded by 'oh'
q - Same as Q, except that for same day, 'today' is not spoken

By: Mark Spencer (markster) 2003-08-14 16:02:06

Done