aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-03 00:25:21 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-03 00:25:21 +0000
commita99b5f9f57a9c7276426ab60a9b3d8dadfccb0ce (patch)
treec3b75bda4fa15346f46602c7f77984516a17c853
parent1d261fd15d0be70fdfcf139a7ced3e8ae7c9be2a (diff)
add note about autofallthrough
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5364 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xUPGRADE.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/UPGRADE.txt b/UPGRADE.txt
index 198699c81..89bd6fe88 100755
--- a/UPGRADE.txt
+++ b/UPGRADE.txt
@@ -44,3 +44,14 @@ Queues:
none of the members are available (e.g. agents not logged on). To
restore the original behavior, use "leavewhenempty=strict" or
"joinwhenempty=strict" instead of "=yes" for those options.
+
+Extensions:
+
+* By default, there is a new option called "autofallthrough" in
+ extensions.conf that is set to yes. Asterisk 1.0 (and earlier)
+ behavior was to wait for an extension to be dialed after there were no
+ more extensions to execute. "autofallthrough" changes this behavior
+ so that the call will immediately be terminated with BUSY,
+ CONGESTION, or HANGUP based on Asterisk's best guess. If you are
+ writing an extension for IVR, you must use the WaitExten application
+ if "autofallthrough" is set to yes.