diff --git a/apps/app_queue.c b/apps/app_queue.c
index dc35a9e2ef..57ad425924 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -685,6 +685,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+ Show queues information.
@@ -693,10 +694,15 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
-
+
+ Limit the response to the status of the specified queue.
+
+
+ Limit the response to the status of the specified member.
+
+ Check the status of one or more queues.
@@ -705,9 +711,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
+
+ Queue for which the summary is requested.
+
+ Request the manager to send a QueueSummary event.
@@ -716,11 +725,21 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
-
-
-
-
+
+ Queue's name.
+
+
+ The name of the interface (tech/name) to add to the queue.
+
+
+ A penalty (number) to apply to this member. Asterisk will distribute calls to members with higher penalties only after attempting to distribute calls to those with lower penalty.
+
+
+ To pause or not the member initially (true/false or 1/0).
+
+
+ Text alias for the interface.
+
@@ -732,8 +751,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
-
+
+ The name of the queue to take action on.
+
+
+ The interface (tech/name) to remove from queue.
+
@@ -744,12 +767,21 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
-
-
-
+
+ The name of the interface (tech/name) to pause or unpause.
+
+
+ Pause or unpause the interface. Set to 'true' to pause the member or 'false' to unpause.
+
+
+ The name of the queue in which to pause or unpause this member. If not specified, the member will be paused or unpaused in all the queues it is a member of.
+
+
+ Text description, returned in the event QueueMemberPaused.
+
+ Pause or unpause a member in a queue.
@@ -773,11 +805,18 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
-
-
+
+ The interface (tech/name) of the member whose penalty to change.
+
+
+ The new penalty (number) for the member. Must be nonnegative.
+
+
+ If specified, only set the penalty for the member of this queue. Otherwise, set the penalty for the member in all queues to which the member belongs.
+
+ Change the penalty of a queue member
@@ -786,9 +825,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
+
+ The name of the rule in queuerules.conf whose contents to list.
+
+ List queue rules defined in queuerules.conf
@@ -797,20 +839,25 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
+
+ The name of the queue to take action on. If no queue name is specified, then all queues are affected.
+
+ Whether to reload the queue's members.
+ Whether to reload queuerules.conf
+ Whether to reload the other queue options.
@@ -826,9 +873,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-
+
+ The name of the queue on which to reset statistics.
+
+ Reset the statistics for a queue.
***/
diff --git a/main/manager.c b/main/manager.c
index 586fef5669..6b67892b32 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -722,6 +722,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
Check if module is loaded.
+
Asterisk module name (not including extension).