strcpy(confno, "");
} else {
if (strlen(cnf->pin)) {
- /* XXX Should prompt user for pin if pin is required XXX */
+ char pin[AST_MAX_EXTENSION];
+ if (inpin && *inpin) {
+ strncpy(pin, inpin, sizeof(pin) - 1);
+ } else {
+ /* Prompt user for pin if pin is required */
+ res = ast_app_getdata(chan, "conf-getpin", pin, sizeof(pin) - 1, 0);
+ }
+ if (res == 0) {
+ if (!strcasecmp(pin, cnf->pin)) {
+ /* Pin correct */
+ allowretry = 0;
+ /* Run the conference */
+ res = conf_run(chan, cnf, confflags);
+ }
+ }
+ /* Pin invalid or error */
+ res = ast_streamfile(chan, "conf-invalidpin", chan->language);
+ if (!res)
+ ast_waitstream(chan, "");
+ res = -1;
+ if (allowretry)
+ strcpy(confno, "");
+ } else {
+ /* No pin required */
+ allowretry = 0;
+
+ /* Run the conference */
+ res = conf_run(chan, cnf, confflags);
}
- allowretry = 0;
-
- /* Run the conference */
- res = conf_run(chan, cnf, confflags);
}
}
} while (allowretry);
myserveremail = vmu->serveremail;
sendpage(myserveremail, vmu->pager, msgnum, ext, chan->callerid, end - start, vmu);
}
- } else
+ } else {
+ res = ast_streamfile(chan, "vm-mailboxfull", chan->language);
+ if (!res)
+ res = ast_waitstream(chan, "");
ast_log(LOG_WARNING, "No more messages possible\n");
+ }
} else
ast_log(LOG_WARNING, "No format for saving voicemail?\n");
free_user(vmu);
%conf-getchannel.gsm%Please enter your channel number followed by the pound key.
+%conf-getpin.gsm%Please enter the conference pin number.
+
%conf-invalid.gsm%That is not a valid conference number. Please try again.
+%conf-invalidpin.gsm%That pin is invalid for this conference.
+
%conf-onlyperson.gsm%You are currently the only person in this conference.
%demo-abouttotry.gsm%I am about to attempt an Inter-Asterisk Exchange connection to a demonstration server located at Digium. In order for this to work you must already be connected to the Internet. Please wait a moment while I attempt to make the connection.