Re: [asterisk-users] cdr_custom outout to serial port

2008-04-14 Thread c . savinovich
No problem. The program is in Windows. Contact me off line to make arrangements to send you the installation files. C. Savinovich Long ago, I wrote a nice program that reads CDR output from any legacy PBX via the serial port. Not much in use lately, but I will be happy to furbish it

[asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Col Ferguson
Hello, I have a system in a motel that needs call billing data output through its serial port so the existing motel management software can collect the call billing info. Is there any easy way to redirect the data that goes into the cdr_custom/Master.csv file to go out the serial port ? The

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Col Ferguson
Ferguson [EMAIL PROTECTED] To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Sent: Saturday, April 12, 2008 5:12 PM Subject: [asterisk-users] cdr_custom outout to serial port Hello, I have a system in a motel that needs call billing data output through

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Zoa
5:12 PM Subject: [asterisk-users] cdr_custom outout to serial port Hello, I have a system in a motel that needs call billing data output through its serial port so the existing motel management software can collect the call billing info. Is there any easy way to redirect the data

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Col Ferguson
@lists.digium.com Sent: Saturday, April 12, 2008 9:36 PM Subject: Re: [asterisk-users] cdr_custom outout to serial port How about a tail -f on Master.csv ? Then you will have everything realtime and you will not need a cronjob. Zoa Col Ferguson wrote: Hello again, I can copy the file out

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Tilghman Lesher
On Saturday 12 April 2008 07:22:46 Col Ferguson wrote: Thanks for the idea Zoa. I've got the cronjob working every minute now using if [ -f /var/log/asterisk/cdr-custom/Master.csv ] then cd /var/log/asterisk/cdr-custom mv -f Master.csv out1.csv cat out1.csv /dev/ttyS0 fi

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Andrew Kohlsmith (lists)
On April 12, 2008 03:12:31 am Col Ferguson wrote: Hello, I have a system in a motel that needs call billing data output through its serial port so the existing motel management software can collect the call billing info. Is there any easy way to redirect the data that goes into the

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Tzafrir Cohen
On Sat, Apr 12, 2008 at 10:21:40AM -0400, Andrew Kohlsmith (lists) wrote: On April 12, 2008 03:12:31 am Col Ferguson wrote: Hello, I have a system in a motel that needs call billing data output through its serial port so the existing motel management software can collect the call billing

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Doug Lytle
Andrew Kohlsmith (lists) wrote: I've written a few variants of what I call a CDR MUX -- a little application that reads CDRs from a legacy system via serial port, reads CDRs from Anything that you can make available? I'd love to be able to get our Definity's CDR into a MySQL

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread Philipp Kempgen
Doug Lytle schrieb: Andrew Kohlsmith (lists) wrote: I've written a few variants of what I call a CDR MUX -- a little application that reads CDRs from a legacy system via serial port, reads CDRs from Anything that you can make available? I'd love to be able to get our Definity's

Re: [asterisk-users] cdr_custom outout to serial port

2008-04-12 Thread c . savinovich
Anything that you can make available? I'd love to be able to get our Definity's CDR into a MySQL database. Long ago, I wrote a nice program that reads CDR output from any legacy PBX via the serial port. Not much in use lately, but I will be happy to furbish it with mysql output to anyone who