Re: [asterisk-users] AGI pdf book

2009-02-19 Thread Emmanuel Bruno
Is this the asterisk users list? or some political list? or maybe  i
dunno, i am confused




On Thu, Feb 19, 2009 at 8:19 PM, Michael mich...@networkstuff.co.nz wrote:


  Money is borrowed at the Prime Rate which is between 0% and .25% but thus
  far, China and Japan have been lending the largest portions as well as
  other foreign countries.  I am not saying this is any better but you
 should
  get your facts straight.

 I am well aware of this. I am also well aware that this subject is O.T. and
 as
 such my two cents worth is kept deliberately simplistic.

 But yes, the China Development Bank is (supposedly) sitting on US$ 2.5
 trillion of greenbacks.

 ___
 -- 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

___
-- 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] AGI pdf book

2009-02-19 Thread Emmanuel Bruno
i dont see the connection with AGI pdf book



On Thu, Feb 19, 2009 at 8:28 PM, Emmanuel Bruno tipas...@gmail.com wrote:

 Is this the asterisk users list? or some political list? or maybe  i
 dunno, i am confused





 On Thu, Feb 19, 2009 at 8:19 PM, Michael mich...@networkstuff.co.nzwrote:


  Money is borrowed at the Prime Rate which is between 0% and .25% but
 thus
  far, China and Japan have been lending the largest portions as well as
  other foreign countries.  I am not saying this is any better but you
 should
  get your facts straight.

 I am well aware of this. I am also well aware that this subject is O.T.
 and as
 such my two cents worth is kept deliberately simplistic.

 But yes, the China Development Bank is (supposedly) sitting on US$ 2.5
 trillion of greenbacks.

 ___
 -- 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



___
-- 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] AGI pdf book

2009-02-18 Thread Emmanuel Bruno
I think PHP is the best language to write AGIs, there is a library available
(PHPAGI) and it is easier to work with as compared to the complexity of the
C language.  That book written by Nir Simionovich (Asterisk AGI 1.4 and 1.6
Programming)  clearly describe the pros and cons of writing AGI scripts in
various languages (Java/C etc...) and also his book cover the PHPAGI
library.




On Wed, Feb 18, 2009 at 7:35 PM, Steve Edwards asterisk@sedwards.comwrote:

 On Wed, 18 Feb 2009, michel freiha wrote:

  I suggest please if someone advice to me a free PDF book just dedicated
  for AGI and nothing else

 It takes a rare individual to put the effort required to write a book and
 then distribute it for free.

 I would like to write it, but my kids have grown accustomed to eating :)

 Thanks in advance,
 
 Steve Edwards  sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
 Newline Fax: +1-760-731-3000

 ___
 -- 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

___
-- 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] AGI pdf book

2009-02-18 Thread Emmanuel Bruno
There's a cheaper pdf version of his book as well.  You can get more info
at:
http://www.packtpub.com/asterisk-gateway-interface-programming/book




On Wed, Feb 18, 2009 at 7:59 PM, Emmanuel Bruno tipas...@gmail.com wrote:

 I think PHP is the best language to write AGIs, there is a library
 available (PHPAGI) and it is easier to work with as compared to the
 complexity of the C language.  That book written by Nir Simionovich
 (Asterisk Gateway Interface 1.4 and 1.6 Programming)  clearly describe the
 pros and cons of writing AGI scripts in various languages (Java/C etc...)
 and also his book cover the PHPAGI library.




 On Wed, Feb 18, 2009 at 7:35 PM, Steve Edwards 
 asterisk@sedwards.comwrote:

 On Wed, 18 Feb 2009, michel freiha wrote:

  I suggest please if someone advice to me a free PDF book just dedicated
  for AGI and nothing else

 It takes a rare individual to put the effort required to write a book and
 then distribute it for free.

 I would like to write it, but my kids have grown accustomed to eating :)

 Thanks in advance,
 
 Steve Edwards  sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
 Newline Fax: +1-760-731-3000

 ___
 -- 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



___
-- 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

[asterisk-users] Max person in meetme conference

2009-02-10 Thread Emmanuel Bruno
Is it possible to restrict the maximum number of person in a particular
conference room?

for example, I have

meetme.conf

[general]

[rooms]

conf = c1,1234
conf = c2,1234



I want c1 to allow 10 persons max in the conference
and c2 5 persons max

How can I do that?

Thanks
___
-- 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] Max person in meetme conference

2009-02-10 Thread Emmanuel Bruno
Thanks! it works fine for me, I though there was another way maybe in the
config file for meetme.conf to set that option.  The example given in that
link has a typo that needs to be fixed:
exten = s,2,Gotoif,$[${count} = ${CONFMAX}]?103

there's an extra , and the evaluation has to be between parenthesis.

exten = s,2,Gotoif($[${count} = ${CONFMAX}]?103)



On Tue, Feb 10, 2009 at 6:52 PM, Nhadie nha...@gmail.com wrote:

 Hi,

 Try this:

 http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+MeetMeCount

 Nhadie

 Emmanuel Bruno wrote:
  Is it possible to restrict the maximum number of person in a particular
  conference room?
 
  for example, I have
 
  meetme.conf
 
  [general]
 
  [rooms]
 
  conf = c1,1234
  conf = c2,1234
 
 
 
  I want c1 to allow 10 persons max in the conference
  and c2 5 persons max
 
  How can I do that?
 
  Thanks
 
 
  
 
  ___
  -- 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

 ___
 -- 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

___
-- 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