[asterisk-users] Dynamic meetme conference creation with Authenticate (Asterisk 1.4.0)

2008-03-24 Thread David Ruggles
I'm trying to use the password entered with Authenticate to create dynamic
meetme conferences with the following dial plan:

exten = _XX18467,1,Authenticate(/etc/asterisk/meetme.pw|a)
exten = _XX18467,n,MeetMe(CDR(accountcode)) ; 281-8467

However CDR(accountcode) is always being set to 1022 no matter what password
is used. The passwords are stored in a file so they can easily be changed.

Can anyone tell me what I'm doing wrong?

Thanks,

David Ruggles
CCNA MCSE (NT) CNA A+
Network EngineerSafe Data, Inc.
(910) 285-7200  [EMAIL PROTECTED]




___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Dynamic meetme conference creation with Authenticate (Asterisk 1.4.0)

2008-03-24 Thread Tilghman Lesher
On Monday 24 March 2008 10:56, David Ruggles wrote:
 I'm trying to use the password entered with Authenticate to create dynamic
 meetme conferences with the following dial plan:

 exten = _XX18467,1,Authenticate(/etc/asterisk/meetme.pw|a)
 exten = _XX18467,n,MeetMe(CDR(accountcode)) ; 281-8467

 However CDR(accountcode) is always being set to 1022 no matter what
 password is used. The passwords are stored in a file so they can easily be
 changed.

 Can anyone tell me what I'm doing wrong?

Well, the obvious part is that you're entering a conference NAMED
CDR(accountcode), not a conference with the value INSIDE CDR(accountcode).
Use MeetMe(${CDR(accountcode)}) to get that.

-- 
Tilghman

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Dynamic meetme conference creation with Authenticate (Asterisk 1.4.0)

2008-03-24 Thread Richard Lyman
David Ruggles wrote:
 I'm trying to use the password entered with Authenticate to create dynamic
 meetme conferences with the following dial plan:

 exten = _XX18467,1,Authenticate(/etc/asterisk/meetme.pw|a)
 exten = _XX18467,n,MeetMe(CDR(accountcode)) ; 281-8467

 However CDR(accountcode) is always being set to 1022 no matter what password
 is used. The passwords are stored in a file so they can easily be changed.

 Can anyone tell me what I'm doing wrong?
   
you need to put {} around the CDR(accountcode) like so, and add options 
to the meetme to make dynamic.

exten = _XX18467,n,MeetMe.${CDR(accountcode)}|dq 








___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Dynamic meetme conference creation with Authenticate (Asterisk 1.4.0)

2008-03-24 Thread Richard Lyman
David Ruggles wrote:
 I'm trying to use the password entered with Authenticate to create dynamic
 meetme conferences with the following dial plan:

 exten = _XX18467,1,Authenticate(/etc/asterisk/meetme.pw|a)
 exten = _XX18467,n,MeetMe(CDR(accountcode)) ; 281-8467

 However CDR(accountcode) is always being set to 1022 no matter what password
 is used. The passwords are stored in a file so they can easily be changed.

 Can anyone tell me what I'm doing wrong?
   
doesn't help when i typo the ,

exten = _XX18467,n,MeetMe,${CDR(accountcode)}|dq


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users