[svn-commits] tilghman: trunk r207224 - in /trunk: UPGRADE.txt doc/tex/odbcstorage.tex

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 17 17:04:46 CDT 2009


Author: tilghman
Date: Fri Jul 17 17:04:43 2009
New Revision: 207224

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=207224
Log:
Document the "flag" field in the voicemessages table.

Modified:
    trunk/UPGRADE.txt
    trunk/doc/tex/odbcstorage.tex

Modified: trunk/UPGRADE.txt
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/UPGRADE.txt?view=diff&rev=207224&r1=207223&r2=207224
==============================================================================
--- trunk/UPGRADE.txt (original)
+++ trunk/UPGRADE.txt Fri Jul 17 17:04:43 2009
@@ -40,6 +40,37 @@
   functionality as before. 
 
 From 1.6.1 to 1.6.2:
+
+* The default console now will use colors according to the default background
+  color, instead of forcing the background color to black.  If you are using a
+  light colored background for your console, you may wish to use the option
+  flag '-W' to present better color choices for the various messages.  However,
+  if you'd prefer the old method of forcing colors to white text on a black
+  background, the compatibility option -B is provided for this purpose.
+
+* SendImage() no longer hangs up the channel on transmission error or on
+  any other error; in those cases, a FAILURE status is stored in
+  SENDIMAGESTATUS and dialplan execution continues.  The possible
+  return values stored in SENDIMAGESTATUS are: SUCCESS, FAILURE, and
+  UNSUPPORTED. ('OK' has been replaced with 'SUCCESS', and 'NOSUPPORT'
+  has been replaced with 'UNSUPPORTED').  This change makes the
+  SendImage application more consistent with other applications.
+
+* skinny.conf now has separate sections for lines and devices.
+  Please have a look at configs/skinny.conf.sample and update
+  your skinny.conf.
+
+* Queue names previously were treated in a case-sensitive manner,
+  meaning that queues with names like "sales" and "sALeS" would be
+  seen as unique queues. The parsing logic has changed to use
+  case-insensitive comparisons now when originally hashing based on
+  queue names, meaning that now the two queues mentioned as examples
+  earlier will be seen as having the same name.
+
+* The SPRINTF() dialplan function has been moved into its own module,
+  func_sprintf, and is no longer included in func_strings. If you use this
+  function and do not use 'autoload=yes' in modules.conf, you will need
+  to explicitly load func_sprintf for it to be available.
 
 * The res_indications module has been removed.  Its functionality was important
   enough that most of it has been moved into the Asterisk core.
@@ -111,36 +142,7 @@
 * The "Join" event from app_queue now uses the CallerIDNum header instead of
   the CallerID header to indicate the CallerID number.
 
-From 1.6.1 to 1.6.2:
+* If you use ODBC storage for voicemail, there is a new field called "flag"
+  which should be a char(8) or larger.  This field specifies whether or not a
+  message has been designated to be "Urgent", "PRIORITY", or not.
 
-* The default console now will use colors according to the default background
-  color, instead of forcing the background color to black.  If you are using a
-  light colored background for your console, you may wish to use the option
-  flag '-W' to present better color choices for the various messages.  However,
-  if you'd prefer the old method of forcing colors to white text on a black
-  background, the compatibility option -B is provided for this purpose.
-
-* SendImage() no longer hangs up the channel on transmission error or on
-  any other error; in those cases, a FAILURE status is stored in
-  SENDIMAGESTATUS and dialplan execution continues.  The possible
-  return values stored in SENDIMAGESTATUS are: SUCCESS, FAILURE, and
-  UNSUPPORTED. ('OK' has been replaced with 'SUCCESS', and 'NOSUPPORT'
-  has been replaced with 'UNSUPPORTED').  This change makes the
-  SendImage application more consistent with other applications.
-
-* skinny.conf now has separate sections for lines and devices.
-  Please have a look at configs/skinny.conf.sample and update
-  your skinny.conf.
-
-* Queue names previously were treated in a case-sensitive manner,
-  meaning that queues with names like "sales" and "sALeS" would be
-  seen as unique queues. The parsing logic has changed to use
-  case-insensitive comparisons now when originally hashing based on
-  queue names, meaning that now the two queues mentioned as examples
-  earlier will be seen as having the same name.
-
-* The SPRINTF() dialplan function has been moved into its own module,
-  func_sprintf, and is no longer included in func_strings. If you use this
-  function and do not use 'autoload=yes' in modules.conf, you will need
-  to explicitly load func_sprintf for it to be available.
-

Modified: trunk/doc/tex/odbcstorage.tex
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/doc/tex/odbcstorage.tex?view=diff&rev=207224&r1=207223&r2=207224
==============================================================================
--- trunk/doc/tex/odbcstorage.tex (original)
+++ trunk/doc/tex/odbcstorage.tex Fri Jul 17 17:04:43 2009
@@ -17,6 +17,7 @@
 callerid       & varchar(40) & Yes  &     & NULL    &       \\ \hline
 origtime       & varchar(40) & Yes  &     & NULL    &       \\ \hline
 duration       & varchar(20) & Yes  &     & NULL    &       \\ \hline
+flag           & varchar(8)  & Yes  &     & NULL    &       \\ \hline
 mailboxuser    & varchar(80) & Yes  &     & NULL    &       \\ \hline
 mailboxcontext & varchar(80) & Yes  &     & NULL    &       \\ \hline
 recording      & longblob    & Yes  &     & NULL    &       \\




More information about the svn-commits mailing list