mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Use find_user for existsmailbox
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3044 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3423,7 +3423,8 @@ static int append_mailbox(char *context, char *mbox, char *data)
|
||||
|
||||
static int vm_box_exists(struct ast_channel *chan, void *data) {
|
||||
struct localuser *u;
|
||||
struct ast_vm_user *user;
|
||||
struct ast_vm_user *vmu;
|
||||
struct ast_vm_user svm;
|
||||
char *context, *box;
|
||||
int branch=0;
|
||||
|
||||
@@ -3445,18 +3446,9 @@ static int vm_box_exists(struct ast_channel *chan, void *data) {
|
||||
break;
|
||||
box++;
|
||||
}
|
||||
ast_mutex_lock(&vmlock);
|
||||
user = users;
|
||||
while (user) {
|
||||
if ((!strcmp(box,user->mailbox)) && (!strcmp(context,user->context))) {
|
||||
branch = 1;
|
||||
break;
|
||||
}
|
||||
user = user->next;
|
||||
}
|
||||
ast_mutex_unlock(&vmlock);
|
||||
vmu = find_user(&svm, context, box);
|
||||
|
||||
if (branch) {
|
||||
if (vmu) {
|
||||
if (ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->callerid)) {
|
||||
chan->priority += 100;
|
||||
} else
|
||||
|
Reference in New Issue
Block a user