diff --git a/CHANGES b/CHANGES index 04d54634683f090a5fd17f25ee74d3ffd8c92d9f..4178f6bd1614756e166bf9a7cf484b20a4e3e01d 100644 --- a/CHANGES +++ b/CHANGES @@ -157,6 +157,8 @@ Sorcery --- Functionality changes from Asterisk 10 to Asterisk 11 -------------------- ------------------------------------------------------------------------------ + + Build System ------------------- * The Asterisk build system will now build and install a shared library @@ -301,6 +303,9 @@ Queue * Add queue monitoring hints. exten => 8501,hint,Queue:markq. + * App_queue will now play periodic announcements for the caller that + holds the first position in the queue while waiting for answer. + SayUnixTime ------------------ * Added 'j' option to SayUnixTime. SayUnixTime no longer auto jumps to extension diff --git a/apps/app_queue.c b/apps/app_queue.c index 9de87892cf2adde94929d12469fa22b823b08dd4..887f8f0b0cca6cf423a82a66ccfccb9445e92ff3 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -4071,7 +4071,7 @@ static void rna(int rnatime, struct queue_ent *qe, char *interface, char *member * * \todo eventually all call forward logic should be intergerated into and replaced by ast_call_forward() */ -static struct callattempt *wait_for_answer(struct queue_ent *qe, struct callattempt *outgoing, int *to, char *digit, int prebusies, int caller_disconnect, int forwardsallowed) +static struct callattempt *wait_for_answer(struct queue_ent *qe, struct callattempt *outgoing, int *to, char *digit, int prebusies, int caller_disconnect, int forwardsallowed, int ringing) { const char *queue = qe->parent->name; struct callattempt *o, *start = NULL, *prev = NULL; @@ -4582,6 +4582,16 @@ skip_frame:; } } + /* Make a position announcement, if enabled */ + if (qe->parent->announcefrequency) { + say_position(qe, ringing); + } + + /* Make a periodic announcement, if enabled */ + if (qe->parent->periodicannouncefrequency) { + say_periodic_announcement(qe, ringing); + } + if (!*to) { for (o = start; o; o = o->call_next) { rna(orig, qe, o->interface, o->member->membername, 1); @@ -5378,7 +5388,7 @@ static int try_calling(struct queue_ent *qe, const struct ast_flags opts, char * ring_one(qe, outgoing, &numbusies); lpeer = wait_for_answer(qe, outgoing, &to, &digit, numbusies, ast_test_flag(&(bridge_config.features_caller), AST_FEATURE_DISCONNECT), - forwardsallowed); + forwardsallowed, ringing); /* The ast_channel_datastore_remove() function could fail here if the * datastore was moved to another channel during a masquerade. If this is * the case, don't free the datastore here because later, when the channel