[svn-commits] mmichelson: branch mmichelson/features_config_docs r391057 - /team/mmichelson...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Jun 9 16:57:52 CDT 2013


Author: mmichelson
Date: Sun Jun  9 16:57:51 2013
New Revision: 391057

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=391057
Log:
Add default values in documentation.


Modified:
    team/mmichelson/features_config_docs/main/features_config.c

Modified: team/mmichelson/features_config_docs/main/features_config.c
URL: http://svnview.digium.com/svn/asterisk/team/mmichelson/features_config_docs/main/features_config.c?view=diff&rev=391057&r1=391056&r2=391057
==============================================================================
--- team/mmichelson/features_config_docs/main/features_config.c (original)
+++ team/mmichelson/features_config_docs/main/features_config.c Sun Jun  9 16:57:51 2013
@@ -33,43 +33,43 @@
 			<configObject name="globals">
 				<synopsis>
 				</synopsis>
-				<configOption name="featuredigittimeout">
+				<configOption name="featuredigittimeout" default="1000">
 					<synopsis>Milliseconds allowed between digits when entering a feature code.</synopsis>
 				</configOption>
 				<configOption name="courtesytone">
 					<synopsis>Sound to play when automon or automixmon is activated</synopsis>
 				</configOption>
-				<configOption name="transferdigittimeout">
+				<configOption name="transferdigittimeout" default="3000">
 					<synopsis>Milliseconds allowed between digits when dialing a transfer destination</synopsis>
 				</configOption>
-				<configOption name="atxfernoanswertimeout">
+				<configOption name="atxfernoanswertimeout" default="15000">
 					<synopsis>Milliseconds to wait for transfer destination to answer</synopsis>
 				</configOption>
-				<configOption name="atxferdropcall">
+				<configOption name="atxferdropcall" default="no">
 					<synopsis>Hang up the call entirely if the attended transfer fails</synopsis>
 				</configOption>
-				<configOption name="atxferloopdelay">
+				<configOption name="atxferloopdelay" default="10000">
 					<synopsis>Milliseconds to wait between attempts to re-dial transfer destination</synopsis>
 				</configOption>
-				<configOption name="atxfercallbackretries">
+				<configOption name="atxfercallbackretries" default="2">
 					<synopsis>Number of times to re-attempt dialing a transfer destination</synopsis>
 				</configOption>
-				<configOption name="xfersound">
+				<configOption name="xfersound" default="beep">
 					<synopsis>Sound to play to a transferee when a transfer completes</synopsis>
 				</configOption>
-				<configOption name="xferfailsound">
+				<configOption name="xferfailsound" default="beeperr">
 					<synopsis>Sound to play to a transferee when a transfer fails</synopsis>
 				</configOption>
-				<configOption name="atxferabort">
+				<configOption name="atxferabort" default="*1">
 					<synopsis>Digits to dial to abort an attended transfer attempt</synopsis>
 				</configOption>
-				<configOption name="atxfercomplete">
+				<configOption name="atxfercomplete" default="*2">
 					<synopsis>Digits to dial to complete an attended transfer</synopsis>
 				</configOption>
-				<configOption name="atxferthreeway">
+				<configOption name="atxferthreeway" default="*3">
 					<synopsis>Digits to dial to change an attended transfer into a three-way call</synopsis>
 				</configOption>
-				<configOption name="pickupexten">
+				<configOption name="pickupexten" default="*8">
 					<synopsis>Digits used for picking up ringing calls</synopsis>
 				</configOption>
 				<configOption name="pickupsound">
@@ -92,7 +92,7 @@
 						and transfer target will be bridged.</para>
 					</description>
 				</configOption>
-				<configOption name="blindxfer">
+				<configOption name="blindxfer" default="#">
 					<synopsis>DTMF sequence to initiate a blind transfer</synopsis>
 					<description>
 						<para>The transferee parties will be placed on hold and the
@@ -101,7 +101,7 @@
 						is hung up.</para>
 					</description>
 				</configOption>
-				<configOption name="disconnect">
+				<configOption name="disconnect" default="*">
 					<synopsis>DTMF sequence to disconnect the current call</synopsis>
 					<description>
 						<para>Entering this DTMF sequence will cause the bridge to end, no
@@ -282,6 +282,7 @@
  ***/
 /*! Default general options */
 #define DEFAULT_FEATURE_DIGIT_TIMEOUT               1000
+#define DEFAULT_COURTESY_TONE                       ""
 
 /*! Default xfer options */
 #define DEFAULT_TRANSFER_DIGIT_TIMEOUT              3000




More information about the svn-commits mailing list