Re: [asterisk-users] Asterisk 1.6.0.14 and 1.6 .1.5 Now Available - pbx/lua.c changes

2009-08-30 Thread Tilghman Lesher
On Saturday 29 August 2009 15:14:33 Bob Gustafson wrote:
 The file pbx/pbx_lua.c needed to be changed slightly so as to find lua
 on my Fedora9 system

Fixed in SVN.  See:
http://lists.digium.com/pipermail/asterisk-commits/2009-August/036616.html

-- 
Tilghman  Teryl
with Peter, Cottontail, Midnight, Thumper,  Johnny (bunnies)
and Harry, BB,  George (dogs)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


[asterisk-users] Asterisk/app_rpt and bandwidth

2009-08-30 Thread Michael Maxwell
Hello to the list,

I have a question about Asterisk/app_rpt:

When a signal is *not* being received and or transmitted by the radio system 
attached to Asterisk/app_rpt via its interface, is the incoming and or 
outgoing data suppressed (silence suppression)?

In other words! At idle but still connected to some other device, what data 
will be transferred?

I currently don't have access to a working Asterisk/app_rpt node or hardware, 
so any input would be really good.

-- 
Thanks, Michael Maxwell

eMail: metalm...@gmail.com
Phone: +61 (03) 8680 4946
Web: mikey.webhop.org

Powered By: PCBSD.org | FreeBSD.org | OpenSource.org


PRAIL.org - Australia-Wide radio communications for free
Sponsor:

  Hightek Hosting - A New Wave in IT and Hosting Technology
  Hosting, IT services, sales and onsite support!
  1300 85 34 30 - www.hightekhosting.com.au



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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] PRI worked fine for months, nowit stopps working after 2-3 hours

2009-08-30 Thread Loic Didelot
Thanks for your answer, but disabling the use of 'lsusb' inside my
script fixed the problem.

Best regards,
Loïc.



On Sat, 2009-08-29 at 09:27 +0300, Tzafrir Cohen wrote:
 On Fri, Aug 28, 2009 at 03:50:10PM +0200, Loic Didelot wrote:
  Hello,
  I wanted to relaunch my problem with a quite precise and small question.
  
  Could the command lsusb affect interrupts when executing it regularly
  (cron) and if the zaptel pci card is sharing an interrupt with a usb
  bus?
 
 lsusb reads information through /dev/bus/usb . I don't see how this can
 generate any interrupts.
 


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[asterisk-users] MySQL syntax error : I really don't see where...

2009-08-30 Thread jonas kellens
Hi list,

I'm stuck for the moment @ the following :

My Query (in a macro) :

exten = s,n,MYSQL(Query resultid ${connid} SELECT\ vakantie_set\
vakantie_data1\ vakantie_data2\ FROM\ AstDB\ where\
SIPACCOUNT=${ARG1})

Asterisk CLI :

[Aug 30 14:07:42] -- Executing [...@macro-vakantie:2]
MYSQL(IAX2/zoiper-9238, Query resultid 1 SELECT vakantie_set
vakantie_data1 vakantie_data2 FROM AstDB where SIPACCOUNT=092779077)
in new stack
[Aug 30 14:07:42] WARNING[26029]: app_addon_sql_mysql.c:335
aMYSQL_query: aMYSQL_query: mysql_query failed.
Error: You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use
near 'vakantie_data2 FROM AstDB where SIPACCOUNT=092779077' at line 1


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] MySQL syntax error : I really don't see where...

2009-08-30 Thread Doug Lytle
jonas kellens wrote:
 Hi list,

 I'm stuck for the moment @ the following :

 My Query (in a macro) :

 exten = s,n,MYSQL(Query resultid ${connid} SELECT\ vakantie_set\ 
 vakantie_data1\ vakantie_data2\ FROM\ AstDB\ where\ SIPACCOUNT=${ARG1})


exten = s,n,MYSQL(Query resultid ${connid} SELECT vakantie_set \, 
vakantie_data1 \, vakantie_data2 FROM AstDB WHERE SIPACCOUNT = ${ARG1})

Doug


-- 
Ben Franklin quote:

Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety.


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] MySQL syntax error : I really don't see where...

2009-08-30 Thread Per Jessen
jonas kellens wrote:

 [Aug 30 14:07:42] -- Executing [...@macro-vakantie:2]
 MYSQL(IAX2/zoiper-9238, Query resultid 1 SELECT vakantie_set
 vakantie_data1 vakantie_data2 FROM AstDB where
 SIPACCOUNT=092779077) in new stack
 [Aug 30 14:07:42] WARNING[26029]: app_addon_sql_mysql.c:335
 aMYSQL_query: aMYSQL_query: mysql_query failed.
 Error: You have an error in your SQL syntax; check the manual that
 corresponds to your MySQL server version for the right syntax to use
 near 'vakantie_data2 FROM AstDB where SIPACCOUNT=092779077' at line
 1

You need to separate the selected columns with commas.


/Per Jessen, Zürich

-- 
http://www.spamchek.com/ - your spam is our business.


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Cyprus VoIP
Hello all,

I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon, but 
without success.

Is there a proper online manual that describes all the steps to follow 
and debugging/monitoring information?

When I type in the CLI module show, cdr_addon_mysql.so is not listed, 
although in modules.conf, I added the line load = cdr_addon_mysql.so. 
I also tried preload, but it didn't change anything.

I also checked res_mysql.conf and cdr_mysql.conf, and the entire 
necessary data for the mysql server is there.

In cdr_manager.conf and cdr.conf, I set enabled = yes in [general].

I would appreciate any help I can get at this point, as I'm clueless as 
to what can be wrong.

Thanks.



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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Tilghman Lesher
On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:
 Hello all,

 I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon, but
 without success.

 Is there a proper online manual that describes all the steps to follow
 and debugging/monitoring information?

 When I type in the CLI module show, cdr_addon_mysql.so is not listed,
 although in modules.conf, I added the line load = cdr_addon_mysql.so.
 I also tried preload, but it didn't change anything.

 I also checked res_mysql.conf and cdr_mysql.conf, and the entire
 necessary data for the mysql server is there.

 In cdr_manager.conf and cdr.conf, I set enabled = yes in [general].

 I would appreciate any help I can get at this point, as I'm clueless as
 to what can be wrong.

Type:  'module load cdr_addon_mysql.so' and correct any errors you see.

-- 
Tilghman  Teryl
with Peter, Cottontail, Midnight, Thumper,  Johnny (bunnies)
and Harry, BB,  George (dogs)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Cyprus VoIP
Thanks. I found out that the module didn't load:

[Aug 30 20:35:59] WARNING[31906]: loader.c:371 load_dynamic_module: 
Error loading module 'cdr_addon_mysql.so': 
/usr/lib/asterisk/modules/cdr_addon_mysql.so: cannot open shared object 
file: No such file or directory

When I checked, I saw that it doesn't exist. It seems that when I 
installed the addons, I didn't realize that there were some issues to 
resolve first, as in the menuselect, I see that both app_addon_sql_mysql 
and cdr_addon_mysql have dependencies problems.

What should I do to resolve that?

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Tilghman Lesher tilgh...@mail.jeffandtilghman.com
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 17:17:59

 On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:
 Hello all,

 I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon, but
 without success.

 Is there a proper online manual that describes all the steps to follow
 and debugging/monitoring information?

 When I type in the CLI module show, cdr_addon_mysql.so is not listed,
 although in modules.conf, I added the line load = cdr_addon_mysql.so.
 I also tried preload, but it didn't change anything.

 I also checked res_mysql.conf and cdr_mysql.conf, and the entire
 necessary data for the mysql server is there.

 In cdr_manager.conf and cdr.conf, I set enabled = yes in [general].

 I would appreciate any help I can get at this point, as I'm clueless as
 to what can be wrong.
 
 Type:  'module load cdr_addon_mysql.so' and correct any errors you see.
 

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Pascal Bruno
You have to fix the dependency issues, which means install the stuff  
you are missing that cdrmysql depends on so u can recompile it.

Sent from my iPod

On Aug 30, 2009, at 11:18 AM, Cyprus VoIP voi...@gmail.com wrote:

 Thanks. I found out that the module didn't load:

 [Aug 30 20:35:59] WARNING[31906]: loader.c:371 load_dynamic_module:
 Error loading module 'cdr_addon_mysql.so':
 /usr/lib/asterisk/modules/cdr_addon_mysql.so: cannot open shared  
 object
 file: No such file or directory

 When I checked, I saw that it doesn't exist. It seems that when I
 installed the addons, I didn't realize that there were some issues to
 resolve first, as in the menuselect, I see that both  
 app_addon_sql_mysql
 and cdr_addon_mysql have dependencies problems.

 What should I do to resolve that?

 Thanks.

  Original Message  
 Subject: Re: [asterisk-users] Need help - CDR MySQL
 From: Tilghman Lesher tilgh...@mail.jeffandtilghman.com
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 asterisk-users@lists.digium.com
 Date: Sunday, 30 August, 2009 17:17:59

 On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:
 Hello all,

 I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon,  
 but
 without success.

 Is there a proper online manual that describes all the steps to  
 follow
 and debugging/monitoring information?

 When I type in the CLI module show, cdr_addon_mysql.so is not  
 listed,
 although in modules.conf, I added the line load =  
 cdr_addon_mysql.so.
 I also tried preload, but it didn't change anything.

 I also checked res_mysql.conf and cdr_mysql.conf, and the entire
 necessary data for the mysql server is there.

 In cdr_manager.conf and cdr.conf, I set enabled = yes in  
 [general].

 I would appreciate any help I can get at this point, as I'm  
 clueless as
 to what can be wrong.

 Type:  'module load cdr_addon_mysql.so' and correct any errors you  
 see.


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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Cyprus VoIP
I think that the missing component is mysqlclient, but when i yum 
update mysql, it does nothing.

Anyone know how to download the RPM? I'm using CentOS 5.3.

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Pascal Bruno tipas...@gmail.com
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 18:28:35

 You have to fix the dependency issues, which means install the stuff  
 you are missing that cdrmysql depends on so u can recompile it.
 
 Sent from my iPod
 
 On Aug 30, 2009, at 11:18 AM, Cyprus VoIP voi...@gmail.com wrote:
 
 Thanks. I found out that the module didn't load:

 [Aug 30 20:35:59] WARNING[31906]: loader.c:371 load_dynamic_module:
 Error loading module 'cdr_addon_mysql.so':
 /usr/lib/asterisk/modules/cdr_addon_mysql.so: cannot open shared  
 object
 file: No such file or directory

 When I checked, I saw that it doesn't exist. It seems that when I
 installed the addons, I didn't realize that there were some issues to
 resolve first, as in the menuselect, I see that both  
 app_addon_sql_mysql
 and cdr_addon_mysql have dependencies problems.

 What should I do to resolve that?

 Thanks.

  Original Message  
 Subject: Re: [asterisk-users] Need help - CDR MySQL
 From: Tilghman Lesher tilgh...@mail.jeffandtilghman.com
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 asterisk-users@lists.digium.com
 Date: Sunday, 30 August, 2009 17:17:59

 On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:
 Hello all,

 I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon,  
 but
 without success.

 Is there a proper online manual that describes all the steps to  
 follow
 and debugging/monitoring information?

 When I type in the CLI module show, cdr_addon_mysql.so is not  
 listed,
 although in modules.conf, I added the line load =  
 cdr_addon_mysql.so.
 I also tried preload, but it didn't change anything.

 I also checked res_mysql.conf and cdr_mysql.conf, and the entire
 necessary data for the mysql server is there.

 In cdr_manager.conf and cdr.conf, I set enabled = yes in  
 [general].

 I would appreciate any help I can get at this point, as I'm  
 clueless as
 to what can be wrong.
 Type:  'module load cdr_addon_mysql.so' and correct any errors you  
 see.

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

 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 --
 
 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net
 
 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 --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread hh174




yum search mysql client
yum install 'TheClientYumHasReturnedForYourSystem'

Olivier

Cyprus VoIP a crit:

  I think that the missing component is mysqlclient, but when i "yum 
update mysql", it does nothing.

Anyone know how to download the RPM? I'm using CentOS 5.3.

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Pascal Bruno tipas...@gmail.com
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 18:28:35

  
  
You have to fix the dependency issues, which means install the stuff  
you are missing that cdrmysql depends on so u can recompile it.

Sent from my iPod

On Aug 30, 2009, at 11:18 AM, Cyprus VoIP voi...@gmail.com wrote:



  Thanks. I found out that the module didn't load:

[Aug 30 20:35:59] WARNING[31906]: loader.c:371 load_dynamic_module:
Error loading module 'cdr_addon_mysql.so':
/usr/lib/asterisk/modules/cdr_addon_mysql.so: cannot open shared  
object
file: No such file or directory

When I checked, I saw that it doesn't exist. It seems that when I
installed the addons, I didn't realize that there were some issues to
resolve first, as in the menuselect, I see that both  
app_addon_sql_mysql
and cdr_addon_mysql have dependencies problems.

What should I do to resolve that?

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Tilghman Lesher tilgh...@mail.jeffandtilghman.com
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 17:17:59

  
  
On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:


  Hello all,

I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon,  
but
without success.

Is there a proper online manual that describes all the steps to  
follow
and debugging/monitoring information?

When I type in the CLI "module show", cdr_addon_mysql.so is not  
listed,
although in modules.conf, I added the line "load =  
cdr_addon_mysql.so".
I also tried "preload", but it didn't change anything.

I also checked "res_mysql.conf" and "cdr_mysql.conf", and the entire
necessary data for the mysql server is there.

In "cdr_manager.conf" and "cdr.conf", I set "enabled = yes" in  
"[general]".

I would appreciate any help I can get at this point, as I'm  
clueless as
to what can be wrong.
  

Type:  'module load cdr_addon_mysql.so' and correct any errors you  
see.


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Cyprus VoIP




OK, Installed all the dependencies and recompiled everything.

My cdr_addon_mysql.so loads now, but still nothing is logged in the
database.

I ran this on the CLI:
localhost*CLI cdr show status
CDR logging: enabled
CDR mode: simple
CDR output unanswered calls: yes
CDR registered backend: cdr_manager
CDR registered backend: cdr-custom
CDR registered backend: Adaptive ODBC
CDR registered backend: csv

Should there be a reference here to MySQL?

Anything else I should set?

Thanks.

 Original Message 
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: hh174 oliv...@hh174.be
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 18:58:48 

  
  
yum search mysql client
yum install 'TheClientYumHasReturnedForYourSystem'
  
Olivier
  
Cyprus VoIP a crit:
  
I think that the missing component is mysqlclient, but when i "yum 
update mysql", it does nothing.

Anyone know how to download the RPM? I'm using CentOS 5.3.

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Pascal Bruno tipas...@gmail.com
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 18:28:35

  

  You have to fix the dependency issues, which means install the stuff  
you are missing that cdrmysql depends on so u can recompile it.

Sent from my iPod

On Aug 30, 2009, at 11:18 AM, Cyprus VoIP voi...@gmail.com wrote:


  
Thanks. I found out that the module didn't load:

[Aug 30 20:35:59] WARNING[31906]: loader.c:371 load_dynamic_module:
Error loading module 'cdr_addon_mysql.so':
/usr/lib/asterisk/modules/cdr_addon_mysql.so: cannot open shared  
object
file: No such file or directory

When I checked, I saw that it doesn't exist. It seems that when I
installed the addons, I didn't realize that there were some issues to
resolve first, as in the menuselect, I see that both  
app_addon_sql_mysql
and cdr_addon_mysql have dependencies problems.

What should I do to resolve that?

Thanks.

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Tilghman Lesher tilgh...@mail.jeffandtilghman.com
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 17:17:59

  

  On Sunday 30 August 2009 08:30:54 Cyprus VoIP wrote:

  
Hello all,

I'm trying to activate (on Asterisk 1.6.0.13) the cdr_mysql addon,  
but
without success.

Is there a proper online manual that describes all the steps to  
follow
and debugging/monitoring information?

When I type in the CLI "module show", cdr_addon_mysql.so is not  
listed,
although in modules.conf, I added the line "load =  
cdr_addon_mysql.so".
I also tried "preload", but it didn't change anything.

I also checked "res_mysql.conf" and "cdr_mysql.conf", and the entire
necessary data for the mysql server is there.

In "cdr_manager.conf" and "cdr.conf", I set "enabled = yes" in  
"[general]".

I would appreciate any help I can get at this point, as I'm  
clueless as
to what can be wrong.
  
  
  Type:  'module load cdr_addon_mysql.so' and correct any errors you  
see.



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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

asterisk-users mailing list
To UNSUBSCRIBE or update 

Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Doug Lytle
Cyprus VoIP wrote:
 I think that the missing component is mysqlclient, but when i yum 
 update mysql, it does nothing.

   

You need to make sure that mysql-devel is installed  and then re-compile 
add-ons

Doug


-- 
Ben Franklin quote:

Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety.


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


[asterisk-users] I find this incomprehensible ?!

2009-08-30 Thread jonas kellens
I am totally not understanding this :

My IAX.conf :
register = BOX-YOCAN:pas...@remote_asterisk_ip

On remote Asterisk :
*CLI [Aug 30 20:37:07] -- Registered IAX2
'BOX-YOCAN' (AUTHENTICATED) at ip:4569

So this is normal... Now the following :

[remoteasterisk]
type=peer
host=ip remote asterisk
auth=md5
secret=passwd


On the remote Asterisk :

[BOX-YOCAN]
type=user
host=dynamic
auth=md5
secret=passwd
context=from-BOX-YOCAN

Then when I make a call :
[Aug 30 20:37:33] -- Accepting UNAUTHENTICATED call from
ip_box_yocan
[Aug 30 20:37:33] -- Executing [xxx...@default:1]

So the call is unauthenticated and comes into the default [context].

Why is the call not authenticated when I specify the same password
'passwd' at both the Asterisk-servers ???

It gets even better when I remove the secret !!

On the remote Asterisk :

[BOX-YOCAN]
type=user
host=dynamic
auth=md5
; secret=passwd  (no password)
context=from-BOX-YOCAN

The when I make a call :
*CLI [Aug 30 20:48:37] -- Accepting UNAUTHENTICATED call from
ip_box_yocan:
[Aug 30 20:48:37] -- Executing [x...@from-box-yocan:1]

So the call is onauthenticated, that I understand (there is a match on
username, but no correct secret), but then it does not go into the
default context !! Oh no, it goes into the context that is defined for
the incoming call from that user !

How comprehensible is this ?! And what do I need to do to have an
authenticated call from an authenticated registered user ??

Thanks for the help !

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] I find this incomprehensible ?!

2009-08-30 Thread Stephen Davies
2009/8/30 jonas kellens jonas.kell...@telenet.be

  I am totally not understanding this :

 My IAX.conf :
 register = BOX-YOCAN:pas...@remote_asterisk_ip yocan9...@89.31.97.186

 On remote Asterisk :
 *CLI [Aug 30 20:37:07] -- Registered IAX2 'BOX-YOCAN' (AUTHENTICATED)
 at ip:4569

 So this is normal... Now the following :

 [remoteasterisk]
 type=peer
 host=ip remote asterisk
 auth=md5
 secret=passwd



I think you are missing a username=BOX-YOCAN in the [remoteasterik] peer
entry.

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Cyprus VoIP
I already did that and now cdr_addon_mysql.so is loaded, but I still 
don't get anything into the database. How can I debug it?

 Original Message  
Subject: Re: [asterisk-users] Need help - CDR MySQL
From: Doug Lytle supp...@drdos.info
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Sunday, 30 August, 2009 19:27:46

 Cyprus VoIP wrote:
 I think that the missing component is mysqlclient, but when i yum 
 update mysql, it does nothing.

   
 
 You need to make sure that mysql-devel is installed  and then re-compile 
 add-ons
 
 Doug
 
 

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Doug Lytle
Cyprus VoIP wrote:
 I already did that and now cdr_addon_mysql.so is loaded, but I still 
 don't get anything into the database. How can I debug it?

   

I'm guessing that you've already set the database up correctly and that 
you've entered the correct info in the cdr_mysql.conf?

Doug


-- 
Ben Franklin quote:

Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety.


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Asterisk/app_rpt and bandwidth

2009-08-30 Thread Eric Fort
the quick answer is I don't know. but here's where the answer can be
found:
if you don't get a reply by posting to the list specific to app_rpt then
drop an email to:
hws...@rodgers.sdcoxmail.com he knows.

app_rpt has a list all it's own - here's the address to post.
app-...@qrvc.com

On Sun, Aug 30, 2009 at 2:57 AM, Michael Maxwell metalmic...@gmail.comwrote:

 Hello to the list,

 I have a question about Asterisk/app_rpt:

 When a signal is *not* being received and or transmitted by the radio
 system
 attached to Asterisk/app_rpt via its interface, is the incoming and or
 outgoing data suppressed (silence suppression)?

 In other words! At idle but still connected to some other device, what data
 will be transferred?

 I currently don't have access to a working Asterisk/app_rpt node or
 hardware,
 so any input would be really good.

 --
 Thanks, Michael Maxwell

 eMail: metalm...@gmail.com
 Phone: +61 (03) 8680 4946
 Web: mikey.webhop.org

 Powered By: PCBSD.org | FreeBSD.org | OpenSource.org

 
 PRAIL.org - Australia-Wide radio communications for free
 Sponsor:

  Hightek Hosting - A New Wave in IT and Hosting Technology
  Hosting, IT services, sales and onsite support!
  1300 85 34 30 - www.hightekhosting.com.au
 


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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Need help - CDR MySQL

2009-08-30 Thread Matt Riddell
On 31/08/09 9:28 AM, Cyprus VoIP wrote:
 I already did that and now cdr_addon_mysql.so is loaded, but I still
 don't get anything into the database. How can I debug it?

To start with do cdr mysql status.

If that shows as connected, turn debug on (inside 
/etc/asterisk/logger.conf) and do a logger reload in the Asterisk console.

Make another call and see what it says.

I suspect though that you'll find that cdr mysql status shows it as not 
connected.

Did you edit /etc/asterisk/cdr_mysql.conf?

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


[asterisk-users] Question of resiliance

2009-08-30 Thread Alex Samad
Hi

I am in the process of move a company from pstn to an asterisk setup.

They had 2 pstn lines - only really needed a max of 2 previously.

Now I have installed a tdm410 to handle the cross over from pabx to voip
handset.  this has been done, the tdm is now just used to provide a
backup pstn line - only used as a last resort for outgoing calls - as
its shared with a fax line.


I use 2 voip providers one primarily for local and std and the other for
mobile calls, all though they can be backups for each other. and then
the pstn line

originally i had (and still till i get around to changing them) macros
to dial each interface and macro's that handle trying each voip and then
pstn in order, this is based around dialstatus (hackled from the
website).

My problem is when I have had long adsl problems (pain in the back side,
back to base alarm system) eventually asterisk seems to not want to talk
to the voip phone - nor does it allow any calls to be placed.

my guess is this
srvlookup=yes

which I had until recently - decided I don't really need it, my guess it
asterisk has a problem with name resolution and get stuck, but stuck
such that call processing can't happen.

snippet of my macro


[macro-dial-sipmnf-sippt-pstn]
;
;   Enter with these
;   ARG1 = number to dial
;   ARG2 = timeout value
;   ARG3 = flag determines if hangup or return on no answer
;   HR = hangup and return (default)
;   RT = return without hangup (must set)
;
;   Returns with FOUNDME = DIALSTATUS
;
;
exten = s,1,Set(GLOBAL(FOUNDME)=ANSWER)
exten = s,2,Dial(SIP/${ARG1}${SIPMNF},${ARG2})
exten = s,3,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
exten = s,4,GotoIf([${DIALSTATUS} = CHANUNAVAIL]?5:12)
;
exten = s,5,Set(GLOBAL(FOUNDME)=ANSWER)
exten = s,6,Dial(SIP/${ARG1}${SIPPT},${ARG2})
exten = s,7,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
exten = s,8,GotoIf([${DIALSTATUS} = CHANUNAVAIL]?9:12)
;
exten = s,9,Set(GLOBAL(FOUNDME)=ANSWER)
exten = s,10,Dial(${PSTN}/${ARG1},${ARG2})
exten = s,11,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
exten = s,12,Goto(s-${DIALSTATUS},1)
;


Alex



signature.asc
Description: Digital signature
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Question of resiliance

2009-08-30 Thread Kyle Kienapfel
It's been my experience that when asterisk does a dns lookup, for externhost
or to do a SIP register, it blocks the whole server. Not sure if 1.6 has
that problem or just 1.4 though as my internet has been stable while im
awake these days

On Sun, Aug 30, 2009 at 5:54 PM, Alex Samad a...@samad.com.au wrote:

 Hi

 I am in the process of move a company from pstn to an asterisk setup.

 They had 2 pstn lines - only really needed a max of 2 previously.

 Now I have installed a tdm410 to handle the cross over from pabx to voip
 handset.  this has been done, the tdm is now just used to provide a
 backup pstn line - only used as a last resort for outgoing calls - as
 its shared with a fax line.


 I use 2 voip providers one primarily for local and std and the other for
 mobile calls, all though they can be backups for each other. and then
 the pstn line

 originally i had (and still till i get around to changing them) macros
 to dial each interface and macro's that handle trying each voip and then
 pstn in order, this is based around dialstatus (hackled from the
 website).

 My problem is when I have had long adsl problems (pain in the back side,
 back to base alarm system) eventually asterisk seems to not want to talk
 to the voip phone - nor does it allow any calls to be placed.

 my guess is this
 srvlookup=yes

 which I had until recently - decided I don't really need it, my guess it
 asterisk has a problem with name resolution and get stuck, but stuck
 such that call processing can't happen.

 snippet of my macro


 [macro-dial-sipmnf-sippt-pstn]
 ;
 ;   Enter with these
 ;   ARG1 = number to dial
 ;   ARG2 = timeout value
 ;   ARG3 = flag determines if hangup or return on no answer
 ;   HR = hangup and return (default)
 ;   RT = return without hangup (must set)
 ;
 ;   Returns with FOUNDME = DIALSTATUS
 ;
 ;
 exten = s,1,Set(GLOBAL(FOUNDME)=ANSWER)
 exten = s,2,Dial(SIP/${ARG1}${SIPMNF},${ARG2})
 exten = s,3,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
 exten = s,4,GotoIf([${DIALSTATUS} = CHANUNAVAIL]?5:12)
 ;
 exten = s,5,Set(GLOBAL(FOUNDME)=ANSWER)
 exten = s,6,Dial(SIP/${ARG1}${SIPPT},${ARG2})
 exten = s,7,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
 exten = s,8,GotoIf([${DIALSTATUS} = CHANUNAVAIL]?9:12)
 ;
 exten = s,9,Set(GLOBAL(FOUNDME)=ANSWER)
 exten = s,10,Dial(${PSTN}/${ARG1},${ARG2})
 exten = s,11,Set(GLOBAL(FOUNDME)=${DIALSTATUS})
 exten = s,12,Goto(s-${DIALSTATUS},1)
 ;


 Alex


 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)

 iEYEARECAAYFAkqbH1UACgkQkZz88chpJ2MLAACg+RRZjkgPLV6wjzhVXA2E7R/s
 zzcAoP6fALTRjwT0U+vQWohToCt56AR0
 =UJ12
 -END PGP SIGNATURE-

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Help me testing this webphone at www.VisionVoIP.com

2009-08-30 Thread Zeeshan Zakaria
Thank you everyone who tested the webphone, but I haven't got input from
anybody. Most of the calls made were unfortunately unsuccessful, but I would
like to know what error you got? Did the webphone stayed in Loading...
state and never completed its loading, or your local firewall blocked, it,
or something else happened?

-- 
Zeeshan A Zakaria

On Sun, Aug 30, 2009 at 1:52 AM, Zeeshan Zakaria zisha...@gmail.com wrote:

 Greetings everyone,

 I've been trying to make this java based webphone work for everybody
 visiting my website, but seems like for many users it doesn't work. In order
 to get a better idea what is the success rate of this webphone, I would
 appreciate help from anybody who could make a few calls from it within North
 America and if it doesn't work, send me what error you get, or if it works,
 tell me it sounds right, no echoing etc. I am keeping calling free for now
 for testing purposes.

 The webphone is located at http://www.visionvoip.com

 Thanks,

 --
 Zeeshan A Zakaria




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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[asterisk-users] Asterisk Web Meetme module not loading

2009-08-30 Thread Glen
I have asterisk 1.4.21 and web meetme (latest release 3.1) I have also 
installed the latest versions of mysql and php. I followed the readme 
file that came with the web meetme app and everything seemed to go fine 
up until I realised the module wasnt being loaded. When I stop asterisk 
and try to start it, it errors out and does not load and I get the 
following message:

Parsing '/etc/asterisk/cbmysql.conf': Found
asterisk: symbol lookup error: /usr/lib/asterisk/modules/app_cbmysql.so: 
undefined symbol: mysql_init

Has anybody seen this error message or have any idea what the problem 
could possibly be?

If more information is required please let me know and I will post up 
any config files you need.

Thanks


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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


[asterisk-users] How to deal with PayPal frauds?

2009-08-30 Thread Zeeshan Zakaria
I charge my customers through PayPal, but recently faced a fraud which
previously had only heard about. Somebody registered a few accounts, paid
online with paypal (as my service is only prepaid) and started making
expensive long distance calls. In fact the IP registering the accounts was
from Florida, and IPs making calls were from Africa. After about 20 minutes
the first payment was reversed. Then a few times more payments were made,
and every payment was reversed almost as soon as it was made. Payments were
made from different PayPal accounts. And then I started getting emails from
PayPal resolution center that some payments were made by users who didn't
authorize them.

Obviously either somebody was using stolen paypal accounts, or somebody
knows that he can pay and reverse the payment and in the meanwhile make
enough long distance calls. What is really fishy that reversals were made
almost as soon as the payments were made, one after another.

Those who are more experienced in this business, please advise how to avoid
this type of fraud, and which service to use in place of PayPal, because
PayPal doesn't seem the right payment solution for a prepaid VoIP service.
Also now that they have all the payments put on hold and asking for a
resolution, their resolution center is good only for shipped merchendise,
not for online services. How would I prove to them that the buyer who is
asking his money back has already utilized my service by making lot of
international calls, which I now have to pay for to the carrier.

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Asterisk/app_rpt and bandwidth

2009-08-30 Thread Steve Totaro
On Sun, Aug 30, 2009 at 5:57 AM, Michael Maxwell metalmic...@gmail.comwrote:

 Hello to the list,

 I have a question about Asterisk/app_rpt:

 When a signal is *not* being received and or transmitted by the radio
 system
 attached to Asterisk/app_rpt via its interface, is the incoming and or
 outgoing data suppressed (silence suppression)?

 In other words! At idle but still connected to some other device, what data
 will be transferred?

 I currently don't have access to a working Asterisk/app_rpt node or
 hardware,
 so any input would be really good.

 --
 Thanks, Michael Maxwell

 eMail: metalm...@gmail.com
 Phone: +61 (03) 8680 4946
 Web: mikey.webhop.org

 Powered By: PCBSD.org | FreeBSD.org | OpenSource.org

 
 PRAIL.org - Australia-Wide radio communications for free
 Sponsor:

  Hightek Hosting - A New Wave in IT and Hosting Technology
  Hosting, IT services, sales and onsite support!
  1300 85 34 30 - www.hightekhosting.com.au
 ~~


Silence suppression is not supported in Asterisk as far as I know.

It is basically PTT or COR that triggers the traffic call AFAIK.

-- 
Thanks,
Steve Totaro
+12409381212 (Cell)
+12024369784 (Skype)
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Asterisk Web Meetme module not loading

2009-08-30 Thread Matt Riddell
On 31/08/09 2:33 PM, Glen wrote:
 I have asterisk 1.4.21 and web meetme (latest release 3.1) I have also
 installed the latest versions of mysql and php. I followed the readme
 file that came with the web meetme app and everything seemed to go fine
 up until I realised the module wasnt being loaded. When I stop asterisk
 and try to start it, it errors out and does not load and I get the
 following message:

 Parsing '/etc/asterisk/cbmysql.conf': Found
 asterisk: symbol lookup error: /usr/lib/asterisk/modules/app_cbmysql.so:
 undefined symbol: mysql_init

Likely you don't have mysql-devel libraries installed - though I wonder 
how it would have compiled.

mysql_init is a function provided by the libmysqlclient library - if you 
didn't compile app_cbmysql.so yourself, you could type ldd 
app_cbmysql.so to see what it links to then check your lib directory to 
see if you have the same - you might have 64 bit when it was compiled 
for 32 bit or something.

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] How to deal with PayPal frauds?

2009-08-30 Thread Matt Riddell
On 31/08/09 2:45 PM, Zeeshan Zakaria wrote:
 Those who are more experienced in this business, please advise how to
 avoid this type of fraud, and which service to use in place of PayPal,
 because PayPal doesn't seem the right payment solution for a prepaid
 VoIP service. Also now that they have all the payments put on hold and
 asking for a resolution, their resolution center is good only for
 shipped merchendise, not for online services. How would I prove to them
 that the buyer who is asking his money back has already utilized my
 service by making lot of international calls, which I now have to pay
 for to the carrier.

I've used CDR for that and don't automatically accept payments.  When we 
receive a payment we compare:

1. IP Address of user (whois normally gives approximate location)
2. Paypal account holder email (should match sign up email)
3. Countries for emails and ip address should match.
4. Initial payment should be $1-$2 (i.e. noone is going to sign up for a 
service and in order to test it put down $500 via paypal)

If any of the above look suspect I ask the paypal account holder to 
email me and start looking at email headers to see how sus it looks.

If it's a large amount then they have to have already been doing 
business with us successfully with small amounts - most scammers can't 
be bothered doing this.

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] How to deal with PayPal frauds?

2009-08-30 Thread Kyle Kienapfel
Disclaimer: I'm just a guy

Step one seems to be to delay account activation on your end. ;)
I do know that Les.net sits on payments from unverified paypal accounts for
14 days.

With all the fraud going around these days you might have to prove that the
buyer is the payer. I think you're limited in options:

Logic (Don't let someone call from africa when they just registered from an
IP in florida, maybe check the florida ip for an open proxy via an RBL list)
Delays (sit on first payments for a few days)
Try and Verify by phone or mail

On Sun, Aug 30, 2009 at 7:45 PM, Zeeshan Zakaria zisha...@gmail.com wrote:

 I charge my customers through PayPal, but recently faced a fraud which
 previously had only heard about. Somebody registered a few accounts, paid
 online with paypal (as my service is only prepaid) and started making
 expensive long distance calls. In fact the IP registering the accounts was
 from Florida, and IPs making calls were from Africa. After about 20 minutes
 the first payment was reversed. Then a few times more payments were made,
 and every payment was reversed almost as soon as it was made. Payments were
 made from different PayPal accounts. And then I started getting emails from
 PayPal resolution center that some payments were made by users who didn't
 authorize them.

 Obviously either somebody was using stolen paypal accounts, or somebody
 knows that he can pay and reverse the payment and in the meanwhile make
 enough long distance calls. What is really fishy that reversals were made
 almost as soon as the payments were made, one after another.

 Those who are more experienced in this business, please advise how to avoid
 this type of fraud, and which service to use in place of PayPal, because
 PayPal doesn't seem the right payment solution for a prepaid VoIP service.
 Also now that they have all the payments put on hold and asking for a
 resolution, their resolution center is good only for shipped merchendise,
 not for online services. How would I prove to them that the buyer who is
 asking his money back has already utilized my service by making lot of
 international calls, which I now have to pay for to the carrier.

 --
 Zeeshan A Zakaria

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Question of resiliance

2009-08-30 Thread Alex Samad
On Sun, Aug 30, 2009 at 06:49:06PM -0700, Kyle Kienapfel wrote:
 It's been my experience that when asterisk does a dns lookup, for externhost
 or to do a SIP register, it blocks the whole server. Not sure if 1.6 has
 that problem or just 1.4 though as my internet has been stable while im
 awake these days

just for clarity I am running on 1.6

[snip]

Alex


signature.asc
Description: Digital signature
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[asterisk-users] CDR to Postgres Centos

2009-08-30 Thread ABBAS SHAKEEL
Hello

I have installed postgres and asterisk on centos.

I confused which module i have to install  to store  CDR info to postgres
DB.

I have visited some links but mostly are for configuration file in database.
I only want CDR to Database not the configuration files for time being

Please help

-- 
Best Regards
Shakeel Abbas
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread hadi motamedi
Dear All
Can you please do me favor and let me know how I can hide the subs number
being displayed on his phone when he goes off hook ? I mean when the subs
goes off hook he sees his assigned number on his phone and I need to disable
this feature . I don't know from which configuration file this feature is
coming so please let me know how can I disable it .
Regards
H.Motamedi
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread Matt Riddell
On 31/08/09 5:24 PM, hadi motamedi wrote:
 Dear All
 Can you please do me favor and let me know how I can hide the subs
 number being displayed on his phone when he goes off hook ? I mean when
 the subs goes off hook he sees his assigned number on his phone and I
 need to disable this feature . I don't know from which configuration
 file this feature is coming so please let me know how can I disable it .

You're not really giving enough information.

Who sees the number?

Where do they see it?

What type of phone?

What is a subs?

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Multiple user registration ...

2009-08-30 Thread Faheem
The purpose of Perl script is to store user registrations records only and 
nothing else regarding call dialing. 

The script will main records like this.
User1:
IP1: 192.168.0.100  Por1: 5060
IP2: 69.30.21.10 Port2: 5060

User2:

IP1: 192.168.10.1  Por1: 5060
IP2: 192.168.10.1  Por2: 5061    


User3:


IP1: 192.168.10.121  Por1: 5060

IP2: 192.168.10.123  Por2: 5061    





and so on

No it all depends on you to store these information on files or database. 
Assume you have stored  IP/Ports in the database.

Database=cloneline
Table = users(username,ip1,port1,ip2,port2)

For dialing:
Assume username=user1 and extension =123456
exten= 123456,1,NoOp()
exten= 123456,n,MYSQL(Connect connid 'localhost' cdr dbpass cloneline)
exten= 123456,n,NoOP(Connection ID:${connid})
exten= 123456,n,MYSQL(Query resultid ${connid} SELECT\ ip1\, port1\, ip2\, 
port2\, status\ from\ users\ where\ username=user1 )
exten= 123456,n,MYSQL(Fetch fetchid ${resultid} ip1 port1 ip2 port2)
exten= 123456,n,Dial(SIP/us...@${ip1}:${port1}SIP/us...@${ip2}:${port2})


for dialing user3
username=user3 and extension =112233

exten= 112233,1,NoOp()

exten= 112233,n,MYSQL(Connect connid 'localhost' cdr dbpass cloneline)

exten= 112233,n,NoOP(Connection ID:${connid})

exten= 112233,n,MYSQL(Query resultid ${connid} SELECT\ ip1\,
port1\, ip2\, port2\, status\ from\ users\ where\ username=user3 )

exten= 112233,n,MYSQL(Fetch fetchid ${resultid} ip1 port1 ip2 port2)

exten= 112233,n,Dial(SIP/us...@${ip1}:${port1}SIP/us...@${ip2}:${port2})


Hope every thing would be clear...

 Muhammad Faheem
Software Engineer
AxVoice Inc.
307,Y Commercial,
DHA Lahore, Pakistan
+92-333-4793314
http://www.axvoice.com


--- On Fri, 8/28/09, Mauro Sergio Ferreira Brasil mauro.bra...@tqi.com.br 
wrote:

From: Mauro Sergio Ferreira Brasil mauro.bra...@tqi.com.br
Subject: Re: [asterisk-users] Multiple user registration ...
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Date: Friday, August 28, 2009, 5:38 PM

Thank you very much for all your help, Muhammad! (please let me know if 
I should call you Faheem, instead).
I'll make some tests with this script on my premises as soon as possible.

Having a look on it, I couldn't realize how it really works in 
conjunction with Asterisk.
I mean, it seems that the line cloning is acchieved by the 
creation/update of a file (with a name that matches the SIP user name) 
inside folder /var/lib/asterisk/users.
The point is that I couldn't find any similar folder on my test server, 
and a search on Google by this folder didn't returned any usefull results.
Am I missing something here ?

Suppose I want to acchieve this feature by database update.
I've noticed here that it will be a problem considering that field 
name at sip_buddies, that is my Realtime table for SIP users, have a 
UNIQUE_KEY constraint.
Moreover, I don't know what will happen on Realtime (probably an error 
or undesired behavior) that seems to be expecting just one record user 
record information.
Have you tried database approach ?

Thanks again and best regards,
Mauro.




Faheem escreveu:
 Mauro,

 Yes, you will receive simultaneous ring on all devices which are 
 registered with the same SIP User Account.

 If a SIP user is registered on multiple devices i.e. only one SIP 
 account is used and only one extension is used here in my 
 implementation, then he will ring on all registered SIP enabled 
 devices/softphones.

 Also I've tested it with following combinations of SIP enabled 
 devices/Softphones.

 1) Both ports of SPA2100 are registered with one SIP account(Same IP 
 address but different ports)
 2) The same SIP user is registered with one port of SAP2100 and the 
 same user is registered with Xten (multiple IP addresses)
 3) The same SIP User is registered with two different SIP Dialers.

 Here in these three cases I've sucessfully able to receive concurrent 
 ring on the registered devices/softphones. Also CDR are working correctly.

 The perl script works perfectly with my customization, you need to 
 modify it according to  your requirements.


 Muhammad Faheem
 Software Engineer
 AxVoice Inc.
 307,Y Commercial,
 DHA Lahore, Pakistan
 +92-333-4793314
 http://www.axvoice.com

 

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

-- 
__At.,                                                                          
                                                   
   _
 
*Technology and Quality on Information*
Mauro Sérgio Ferreira Brasil
Coordenador de Projetos e Analista de Sistemas
+ mauro.bra...@tqi.com.br mailto:@tqi.com.br
: www.tqi.com.br 

Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread Paul Hales
Matt Riddell wrote:

 What is a subs?

   
A submarine. I think.

PaulH

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread Matt Riddell
On 31/08/09 5:31 PM, Paul Hales wrote:
 Matt Riddell wrote:

 What is a subs?

 A submarine. I think.

I was thinking it was near dinner time :)

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread hadi motamedi
Sorry for lack of enough information . I mean my subscriber when goes off
hook he will see his own number displayed on his phone . I need to disable
this feature on my Asterisk .The phone type is ANABELL phone . Please do me
favor and let me know how can I disable this feature on my Asterisk ?
Looking forward your reply
Regards
H.Motamedi



On Mon, Aug 31, 2009 at 6:28 AM, Matt Riddell li...@venturevoip.com wrote:

  On 31/08/09 5:24 PM, hadi motamedi wrote:
  Dear All
  Can you please do me favor and let me know how I can hide the subs
  number being displayed on his phone when he goes off hook ? I mean when
  the subs goes off hook he sees his assigned number on his phone and I
  need to disable this feature . I don't know from which configuration
  file this feature is coming so please let me know how can I disable it .

 You're not really giving enough information.

 Who sees the number?

 Where do they see it?

 What type of phone?

 What is a subs?

 --
 Cheers,

 Matt Riddell
 Director
 ___

 http://www.venturevoip.com/news.php (Daily Asterisk News)
 http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
 http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread hadi motamedi
Sorry . I meant subscriber .

On Mon, Aug 31, 2009 at 6:31 AM, Paul Hales pdha...@optusnet.com.au wrote:

 Matt Riddell wrote:
 
  What is a subs?
 
 
 A submarine. I think.

 PaulH

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

 AstriCon 2009 - October 13 - 15 Phoenix, Arizona
 Register Now: http://www.astricon.net

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] Inquiry:How to hide Caller Id

2009-08-30 Thread Matt Riddell
On 31/08/09 5:49 PM, hadi motamedi wrote:
 Sorry for lack of enough information . I mean my subscriber when goes
 off hook he will see his own number displayed on his phone . I need to
 disable this feature on my Asterisk .The phone type is ANABELL phone .
 Please do me favor and let me know how can I disable this feature on my
 Asterisk ?

Hi,

If he is seeing his own number on his display before he has dialed any 
numbers then it is probably a feature of the phone - in which case you 
need to disable it there.

If you're talking about an incoming call then it's different.

-- 
Cheers,

Matt Riddell
Director
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer)
http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)

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

AstriCon 2009 - October 13 - 15 Phoenix, Arizona
Register Now: http://www.astricon.net

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