• 1
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 20
[RELEASE] XBMC PBX Addon - Home Telephony Experience using Asterisk
sorry my fault with the backend version, copied over the php script again.

checked out the latest revision from svn, rev. 191.
still the same behavior

22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addo Wrote:: > NewChannel()
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317674288.97
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >> State: Down
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >>> Will attach to this one:
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >>> UniqueID: 1317674288.97
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >>> State: Down
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: > NewChannel()
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317674288.98
22:39:26 T:2928757616 M:1929515008 NOTICE: [XBMC PBX Addon]: >> State: Down
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: > Hangup()
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317674288.98
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: > Hangup()
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317674288.97
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: > hangup_actions()
22:39:36 T:2928757616 M:1929396224 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317674288.97
Reply
Guys are you on holiday? Big Grin

Let me know if you need additional logs/testing on asterisk 1.8.

Here are the installation instructions for asterisk 1.8 on debian squeeze in a virtual machine if you prefer to try it yourself.

Quote:#Install the newest debian os

http://cdimage.debian.org/debian-cd/6.0....etinst.iso

#disable graphical desktop environment
#activate SSH server


#remove and disable exim4
apt-get -y remove --purge exim4
apt-get install rcconf
rcconf
#disable exim4, ok

#setting a fixed IP address
vi /etc/network/interfaces

#delete the following line
iface eth0 inet dhcp

#at the same position, insert the stuff below and set the according IP.
iface eth0 inet static
address 192.168.1.xx
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

reboot


#Prerequisites

aptitude install linux-source-2.6 kernel-package make g++ libncurses5-dev
cd /usr/src/
tar xvjf /usr/src/linux-source-2.6.32.tar.bz2
ln -s /usr/src/linux-source-2.6.32 /usr/src/linux
cp /boot/config-`uname -r` /usr/src/linux/.config
cd /usr/src/linux-source-2.6.32
yes "" | make oldconfig
make prepare
make prepare scripts


#Installation of dahdi

cd /usr/src/
wget http://downloads.asterisk.org/pub/teleph...ent.tar.gz
tar zxvf dahdi-linux-complete-current.tar.gz
cd /usr/src/dahdi-linux-complete-<version>/linux/
make
make install


#Installation of dahdi tools

cd /usr/src/dahdi-linux-complete-<version>/tools/
./configure
make
make install
make config


#Installation of libpri

cd /usr/src/
wget http://downloads.asterisk.org/pub/teleph...ent.tar.gz
tar zxvf libpri-1.4-current.tar.gz
cd /usr/src/libpri-<version>/
make
make install


#installation of lame encoder

echo "deb http://www.debian-multimedia.org squeeze main non-free" >> /etc/apt/sources.list
wget "http://www.debian-multimedia.org/pool/main/d/debian-multimedia-keyring/debian-multimedia-keyring_2010.12.26_all.deb" -O /tmp/debian-multimedia-keyring_2010.12.26_all.deb
dpkg -i /tmp/debian-multimedia-keyring_2010.12.26_all.deb
aptitude update
aptitude install lame libmp3lame-dev


#Prerequisites for asterisk

aptitude install libxml2-dev unixodbc-dev libmyodbc subversion libmysqlclient15-dev libsqlite0-dev libsnmp-dev


#Installation of asterisk

cd /usr/src/
wget http://downloads.asterisk.org/pub/teleph...ent.tar.gz
tar zxvf asterisk-1.8-current.tar.gz
cd /usr/src/asterisk-<version>/
./contrib/scripts/get_mp3_source.sh
./configure
make menuconfig

#in menuconfig under Add-ons, choose the following : app_mysql, app_saycountpl, cdr_mysql,chan_ooh323, format_mp3, res_config_mysql
#Under Extras Sound Packages choose the following: EXTRAS-SOUNDS-EN-GSM
#Exit and save with S

make
make install
make samples


#Preparation of the FreePBX installation

cd /usr/src/
wget http://mirror.freepbx.org/freepbx-2.9.0.tar.gz
tar zxvf freepbx-2.9.0.tar.gz
cd /usr/src/freepbx-2.9.0/
aptitude install libxml2 libxml2-dev libtiff4 libtiff4-dev apache2 libapache2-mod-php5 php5-mysql php5-gd php-pear mysql-server openssl libssl-dev linux-source-2.6.32 bison libncurses5-dev libaudiofile-dev curl sox sudo


#Setting apache memoy limit and max. upload file size, modify for your needs

sed -i "s/\(upload_max_filesize *= *\)\(.*\)/\120M/" /etc/php5/apache2/php.ini
sed -i "s/\(memory_limit *= *\)\(.*\)/\1100M/" /etc/php5/apache2/php.ini


#create asterisk user and group

groupadd asterisk
useradd -c "asterisk PBX" -d /var/lib/asterisk -g asterisk asterisk


#create the mysql databases

mysql -u root -p
Enter password:
mysql> create database asteriskcdrdb;
mysql> create database asterisk;
mysql> GRANT ALL PRIVILEGES ON asteriskcdrdb.* TO asteriskuser@localhost IDENTIFIED BY 'amp109';
mysql> GRANT ALL PRIVILEGES ON asterisk.* TO asteriskuser@localhost IDENTIFIED BY 'amp109';
mysql> quit;


#create the needed tables in asteriskcdrdb and asterisk

mysql -u asteriskuser -pamp109 asteriskcdrdb < /usr/src/freepbx-2.9.0/SQL/cdr_mysql_table.sql
mysql -u asteriskuser -pamp109 asterisk < /usr/src/freepbx-2.9.0/SQL/newinstall.sql


#Installation of freePBX

mv /etc/asterisk/sip_notify.conf /etc/asterisk/sip_notify.conf.backup
/usr/src/freepbx-2.9.0/start_asterisk start
pear install DB
/usr/src/freepbx-2.9.0/install_amp

#Enter your USERNAME to connect to the ‘asterisk’ database: [asteriskuser]
#Enter your PASSWORD to connect to the ‘asterisk’ database: [amp109]
#Enter the hostname of the ‘asterisk’ database: [localhost]
#Enter a USERNAME to connect to the Asterisk Manager interface: [admin]
#Enter a PASSWORD to connect to the Asterisk Manager interface: [amp111]
#Enter the path to use for your AMP web root: [/var/www/html] /var/www
#Enter the IP ADDRESS or hostname used to access the AMP web-admin: [xx.xx.xx.xx] 192.168.1.xx
#Enter a PASSWORD to perform call transfers with the Flash Operator Panel: [passw0rd]
#Use simple Extensions [extensions] admin or separate Devices and Users [deviceanduser]? [extensions]
#Enter directory in which to store AMP executable scripts: [/var/lib/asterisk/bin]
#Enter directory in which to store super-user scripts: [/usr/local/sbin]


#configure apache to run with asterisk credentials

cp /etc/apache2/apache2.conf /etc/apache2/apache2.conf-orig
sed -i "s/\(^User *\)\(.*\)/\1asterisk/" /etc/apache2/apache2.conf
sed -i "s/\(^Group *\)\(.*\)/\1asterisk/" /etc/apache2/apache2.conf
/etc/init.d/apache2 stop
/etc/init.d/apache2 start


#changing the password for asteriskuser

NEWPASSWORD='password';
sed -i "s/\(^AMPDBPASS=*\)\(.*\)/\1$NEWPASSWORD/" /etc/amportal.conf
sed -i "s/\(^password = *\)\(.*\)/\1$NEWPASSWORD/" /etc/asterisk/cdr_mysql.conf
sed -i "s/\(^AMPDBPASS = *\)\(.*\)/\1$NEWPASSWORD/" /etc/asterisk/extensions_additional.conf
sed -i "s/\($amp_conf\['AMPDBPASS'\]\\t= '*\)\(.*\)/\1$NEWPASSWORD';/" /etc/freepbx.conf
echo "SET PASSWORD FOR 'asteriskuser'@localhost = PASSWORD('$NEWPASSWORD');" | mysql -u root -p


#changing the password for asterisk manager user 'admin'

NEWPASSWORD='password';
sed -i "s/\(^secret = *\)\(.*\)/\1$NEWPASSWORD/" /etc/asterisk/manager.conf
sed -i "s/\(^AMPMGRPASS = *\)\(.*\)/\1$NEWPASSWORD/" /etc/asterisk/extensions_additional.conf
sed -i "s/\(^AMPMGRPASS=*\)\(.*\)/\1$NEWPASSWORD/" /etc/amportal.conf
asterisk -r -x "module reload manager"
echo "UPDATE freepbx_settings SET value='$NEWPASSWORD' WHERE keyword='AMPMGRPASS';" | mysql -u root -p asterisk

#setting asterisk to start automatically after reboot
vi /etc/rc.local

#add the folowing before the line with "exit 0"
/usr/local/sbin/amportal start

#save and reboot


#Start/stop/restart of asterisk
amportal start
amportal stop
amportal restart

#login to the webinterface

http://192.168.1.xx

user: admin
pw: admin
Reply
@olaffi, that's great!

I'll take a look to the information you provided and give it a try.

Thanks,
Hernán.-
Reply
@olaffi, that's great!

I'll take a look to the information you provided and give it a try.

Thanks,
Hernán.-
Reply
Got it working on asterisk 1.8 by recreating the inbound route, now the alertinfo is transmitted.
but after reboot of XBMC, it does not work anymore.

Before reboot
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addo Wrote:: >> UniqueID: 1317841427.205
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> State: Down
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >>> Will attach to this one:
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >>> UniqueID: 1317841427.205
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >>> State: Down
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > NewCallerID()
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.205
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> CallerID: olaffi Handy <+XXXXXXXXXX>
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > newcall_actions()
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> Channel: SIP/olaffi_siptrunk-000000ab
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.205
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> CallerID: olaffi Handy <+XXXXXXXXXX>
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> ALERT_INFO: pausexbmc
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> Notification: olaffi Handy <+XXXXXXXXXX>
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > NewChannel()
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.206
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> State: Down
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > NewChannel()
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.207
21:05:04 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> State: Down
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > Hangup()
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.207
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > Hangup()
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.206
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > Hangup()
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.205
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: > hangup_actions()
21:05:07 T:2911578992 M:1949679616 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841427.205


After reboot

xbmc@XBMCLive:~$ uptime
21:08:10 up 1 min, 1 user, load average: 1.13, 0.43, 0.15
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addo Wrote:: > NewChannel()
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.208
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >> State: Down
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >>> Will attach to this one:
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >>> UniqueID: 1317841678.208
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >>> State: Down
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: > NewCallerID()
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.208
21:09:14 T:2929838960 M:1964896256 NOTICE: [XBMC PBX Addon]: >> CallerID:
21:09:14 T:2929838960 M:1964830720 NOTICE: [XBMC PBX Addon]: > NewChannel()
21:09:14 T:2929838960 M:1964830720 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.209
21:09:14 T:2929838960 M:1964830720 NOTICE: [XBMC PBX Addon]: >> State: Down
21:09:14 T:2929838960 M:1964863488 NOTICE: [XBMC PBX Addon]: > NewChannel()
21:09:14 T:2929838960 M:1964863488 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.210
21:09:14 T:2929838960 M:1964863488 NOTICE: [XBMC PBX Addon]: >> State: Down
21:09:19 T:2929838960 M:1964830720 NOTICE: [XBMC PBX Addon]: > Hangup()
21:09:19 T:2929838960 M:1964830720 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.210
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: > Hangup()
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.209
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: > Hangup()
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.208
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: > hangup_actions()
21:09:19 T:2929838960 M:1964703744 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1317841678.208
Reply
Would you mind posting an example of how you got it working ?
Shouldn't your ring state be set to RING for that version ?

thanks
Reply
I assume it's related to the callerID, if the callerid is supressed on the first try, it doesn't work.

If the callerid is submitted, everything work as expected. When then a second call arrives with callerid supressed, it shows the last callerID that called. I have to do some more tests tomorrow with two different mobile phones.

I also thought the channel state would be RING, but it's still DOWN, even when setting "signal ringing" on the inbound route settings.
Reply
hmr Wrote:Or even better, you should be able to (from the Trixbox web frontend) create a Ring Group with the "Change External CID Configuration" option set to have a fixed CID Name for every inbound call.

I already had a ring group for my PBX. I've just added a spacing in the CID name option and it resolved my problem of no popup and no pause on phone call.

Thank you for this great addon. I really appreciate it.

Maybe it can be interesting to have the possibility to associate a contact picture with the caller ID Number in the futur version of this addon.

Great job
Reply
Ok I have done some tests. The nightly r191 seems to work fine with asterisk 1.8. Sometimes the addon doesn't recognize the alertinfo, even if it's shown in the asterisk log, I then have to reload asterisk config, or do some changes on the affected inbound route, revert and apply.

If it's working, the only bug is if the first call after bootup comes from a anonymous callerID, nothing happens, no pausing, no popup. As soon as there was a call with a visible callerID, it shows the last callerID that called for a anonymous caller.

Will you release a new version that supports all 1.4, 1.6 and 1.8 asterisk?
Reply
Hi! I installed pbx-addon on pre-Eden and try to work with asterisk 1.8. But the only thing I saw in logs is "Notification: syntax error: line 2, column: 0". http://xxx.xxx.xxx.xxx/xbmc-pbx-addon.php?cdr work's.
Reply
Just installed this addon to pre-Eden on a Windows XBMC installation and a PBX in a Flash Asterisk 1.8 distribution. Everything appears to work fine, thanks to everyone who has contributed to this.

I do have a couple of questions though:

I'm on US central time and on XBMC my voicemails correctly display in CST but the CDR screen is showing GMT. My FreePBX CDR display is in CST but if a use a web browser (http://asterisk/xbmc-pbx-addon.php?cdr) the xml display is also in GMT. So I'm guessing I need to change something in the php script on my Linux box? Any hints on what line/file to edit would be gratefully received.

Also my incoming call alert works but it is a little small (I want it really big!), which file in the addon defines the size & format of the pop up?
Reply
Question 
After installing XBMC PBX it takes a while to exit XBMC. I assume this has to do with the background.py script that takes a while to end.

I'm running PBX plugin 1.0.9 on XBMC 10.1 (compiled march 9 2011) on Ubuntu 10.04 with Asterisk 1.6.2.5

The second problem is that XBMC doesn't look for new movies/series onload when the PBX plugin is enabled.

Any suggestions to solve this problem are more then welcome.

- Apart from above problems the PBX plugin works wonderful and I like it a lot. One minor problem i had was that my Asterisk installation seems to give DOWN on external calls and RING on internal calls (or the other way around, im not sure anymore) so I could choose to either pop-up on external calls or on internal calls. It was easy to fix this by altering the background.py script a bit. Of course I put the original script back after I found out about the above problems, but that didn't make any difference.

Thanks in advance! Spoon.
Reply
Everything is working except the inbound call notification.
Here is the message that I am getting.
Any ideas would be great!

08:59:31 T:2859465584 NOTICE: [XBMC PBX Addon]: > NewChannel()
08:59:31 T:2859465584 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327067971.59
08:59:31 T:2859465584 NOTICE: [XBMC PBX Addon]: >> State: Down
08:59:32 T:2859465584 NOTICE: [XBMC PBX Addon]: >> Notification: need more than 1 value to unpack

Thanks
Randy
Reply
Here are my versions:

[XBMC PBX Addon]: Version 1.0.9
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: XBMC for Linux
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: Running in background...
08:58:56 T:2851072880 NOTICE: VideoInfoScanner: Starting scan ..
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: >> Asterisk 1.8
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: >> Asterisk 1.8.3.3 built by root @ pbx.local on a x86_64 running Linux on 2011-05-10 14:19:06 UTC
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: >> Notification: New messages: 4
08:58:56 T:2859465584 NOTICE: [XBMC PBX Addon]: __init__()
Reply
I have same thing, need to get inbound calls working.
I have looked at the log from bgservice.py.

From the log, one can notice that the routine called NewCallerID is never being entered.

I have run this with NewChannel State DOWN but also with AUTO which the routine corrects it to Ring (which is correct for Asterisk 1.8 ChannelStateDesc).

Please can you suggest how I could have inbound call working?



22:01:59 T:30192 NOTICE: [XBMC PBX Addon]: Version 1.0.9
22:01:59 T:30192 NOTICE: [XBMC PBX Addon]: XBMC for win32
22:02:00 T:30192 NOTICE: [XBMC PBX Addon]: Running in background...
22:02:00 T:24292 NOTICE: StorageServer Module loaded RUN
22:02:00 T:24292 NOTICE: StorageClient-0.8 Starting server
22:02:00 T:30248 ERROR: CRemoteControl::Connect - failed to connect
22:02:00 T:30192 NOTICE: [XBMC PBX Addon]: >> Asterisk 1.8
22:02:00 T:30192 NOTICE: [XBMC PBX Addon]: >> Asterisk 1.8.6.0 built by root @ pbx.local on a i686 running Linux on 2011-10-25 14:14:37 UTC
22:02:00 T:30192 NOTICE: [XBMC PBX Addon]: >> Notification: New messages: 1
22:02:00 T:30192 NOTICE: [XBMC PBX Addon]: __init__()
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: > NewChannel()
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438929.29
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >> State: Down
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >>> Will attach to this one:
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >>> UniqueID: 1327438929.29
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >>> State: Down
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: > NewChannel()
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438930.30
22:02:09 T:30192 NOTICE: [XBMC PBX Addon]: >> State: Down
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: > Hangup()
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438930.30
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: > Hangup()
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438929.29
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: > hangup_actions()
22:02:10 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438929.29
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: > NewChannel()
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438951.31
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >> State: Down
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >>> Will attach to this one:
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >>> UniqueID: 1327438951.31
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >>> State: Down
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: > NewChannel()
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438951.32
22:02:31 T:30192 NOTICE: [XBMC PBX Addon]: >> State: Down
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: > Hangup()
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438951.32
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: > Hangup()
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438951.31
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: > hangup_actions()
22:02:37 T:30192 NOTICE: [XBMC PBX Addon]: >> UniqueID: 1327438951.31
KODI: LibreElec on Raspberry Pi
KODI: LibreElec on Asus Chromebox
 
Reply
  • 1
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 20

Logout Mark Read Team Forum Stats Members Help
[RELEASE] XBMC PBX Addon - Home Telephony Experience using Asterisk3