[Asterisk-Users] How does asterisk behave when multiple phones are logged in on a single SIP/account?

2006-05-01 Thread Arne Morten Johansen








Hi.

How does this work?

What if this SIP/account was a member (agent) of
a queue? 

Ex: dial(SIP/account,20,tT). Would the dialstatus
be set as busy when one of the phones is actively talking, or will the other
phones continue to ring?

You may have seen my other submissions to this
list. I’m looking for a way to make the other phones in a group
unavailable when one of them is busy. Because one person will have multiple
phones. 

Thanks

Arne Morten Johansen. 






___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Re: Auto Logout from queue

2006-05-01 Thread Tomislav Parčina
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
> that is a nice function
> I use a cronjob to logout everyone each evening if anyone wants that script
> I would love to provide it.

Please send the script to the list.



--
Tomislav Parčina
Lama Computers Split
Stinice 12, 21000 Split
Tel.: +385(21)495148
SIP: [EMAIL PROTECTED]
e-mail: tparcina#lama.hr
http://www.lama.hr
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Re: Error messages

2006-05-01 Thread Tomislav Parčina
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
> well, if you dont use/need a module, in modules.conf put noload => 
> app_intercom.so (for example).
> 
> i think you can choose whether to automatically load all then specifically 
> noload whichever you dont 
> want with a noload =>, or with autoload=no, specify which you want to load.

Thank you!



--
Tomislav Parčina
Lama Computers Split
Stinice 12, 21000 Split
Tel.: +385(21)495148
SIP: [EMAIL PROTECTED]
e-mail: tparcina#lama.hr
http://www.lama.hr
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] /var/spool/asterisk/outgoing/ prematurely hangingup

2006-05-01 Thread Josh McAllister
Just a shot in the dark... but have you tried Answer() before
Playback()? 

Josh McAllister

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom
Engleward
Sent: Monday, May 01, 2006 11:43 PM
To: asterisk-users@lists.digium.com
Subject: [Asterisk-Users] /var/spool/asterisk/outgoing/ prematurely
hangingup

I have a PSTN termination provider "foo" which will
accept standard U.S. calls in the form 1<10 digit
ph#>.
I have an outbound route named "foo", with dial
pattern "5|.", with the only entry in trunk sequence
being "IAX2/foo".

I have an X-lite local extension, on which I can dial
51<10 digit ph#>, and asterisk will call out over foo
and the phone at <10 digit ph#> will ring. This rules
out a lot of possible problems.

extensions.conf includes this:
[outgoingtest]
exten => s,1,Playback(custom/testmsg)
exten => s,2,Wait(1)
exten => s,3,Hangup

And yes, asterisk has been restarted since the last
time any config files were modified.

I have a test message at
/var/lib/asterisk/sounds/custom/testmsg.gsm

If I make the file "1.call" containing:
Channel: IAX2/foo
MaxRetries: 1
RetryTime: 5
WaitTime: 10
Context: outgoingtest
Extension: 1<10 digit ph#>
Priority: 1

and copy it to /var/spool/asterisk/outgoing/
then the phone doesn't ring, but this shows up on the
asterisk console:
-- Attempting call on IAX2/foo for 1<10 digit
ph#>@outgoingtest:1 (Retry 1)
-- Hungup 'IAX2/foo-7'
-- Attempting call on IAX2/foo for 1<10 digit
ph#>@outgoingtest:1 (Retry 2)
-- Hungup 'IAX2/foo-8'

The "foo-7" and "foo-8" on the console are different
(numbers anywhere from 1 to 9) every time I try
copying the file to outgoing.

I tried using extension 51<10 digit ph#> instead of
1<10 digit ph#> in 1.call, but that didn't work
either.

Why is it failing?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Change in audio file while listening to it

2006-05-01 Thread Christoph Rothe

Hi Marco,

this is not an asterisk issue, it is a UNIX/Linux-issue.

If you overwrite a file, asterisk of course plays the data it reads from 
the (at that moment overwritten) file.


I would suggest to delete the file and then write the updated file. On 
UNIX if you delete an opened file, the program reading from the deleted 
file still has access to it, until it closes the file.
The problem with this is, that you have a race condition: If asterisk 
tries to read the file at that moment, where you just deleted the file 
and did not yet create a new one, the caller would hear nothing. 
Probably a thing which can be fixed in your dialplan by re-reading the 
file if it is empty.


HTH,

Christoph

Marco Trucchi schrieb:

Hello everybody,
does anybody know how to handle the following problem?

I update some gsm audio files every 10 minutes, by rewriting directly 
on them.


I've noticed that if the file is being played by asterisk exactly in 
the moment when I rewrite onto it, who is calling hears a small "jump" 
and then it is the updated file that starts being played, starting 
from about the same position of the old one.
(i.e. if the update arrives after 10 seconds of playing on the old 
file, the updated file starts after the jump about at its 10 second 
position).
I would prefer to end up with the old file without changing the 
current conversation.


Maybe a parameter handle this?
Otherwise the only way that I see is to give a different name to each 
file, then let asterisk read the most up-to-date. But it would be not 
as easy as it is now.


For information, I use Asterisk 1.2.6 on Linux CentOS. I pay a SIP 
Gateway to have a geographical number that points to my asterisk 
(sorry if I do not use the correct terms).



Thanks a lot!
Cheers,
Marco

___
--Bandwidth and Colocation provided by Easynews.com --

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

___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] /var/spool/asterisk/outgoing/ prematurely hanging up

2006-05-01 Thread Tom Engleward
I have a PSTN termination provider "foo" which will
accept standard U.S. calls in the form 1<10 digit
ph#>.
I have an outbound route named "foo", with dial
pattern "5|.", with the only entry in trunk sequence
being "IAX2/foo".

I have an X-lite local extension, on which I can dial
51<10 digit ph#>, and asterisk will call out over foo
and the phone at <10 digit ph#> will ring. This rules
out a lot of possible problems.

extensions.conf includes this:
[outgoingtest]
exten => s,1,Playback(custom/testmsg)
exten => s,2,Wait(1)
exten => s,3,Hangup

And yes, asterisk has been restarted since the last
time any config files were modified.

I have a test message at
/var/lib/asterisk/sounds/custom/testmsg.gsm

If I make the file "1.call" containing:
Channel: IAX2/foo
MaxRetries: 1
RetryTime: 5
WaitTime: 10
Context: outgoingtest
Extension: 1<10 digit ph#>
Priority: 1

and copy it to /var/spool/asterisk/outgoing/
then the phone doesn't ring, but this shows up on the
asterisk console:
-- Attempting call on IAX2/foo for 1<10 digit
ph#>@outgoingtest:1 (Retry 1)
-- Hungup 'IAX2/foo-7'
-- Attempting call on IAX2/foo for 1<10 digit
ph#>@outgoingtest:1 (Retry 2)
-- Hungup 'IAX2/foo-8'

The "foo-7" and "foo-8" on the console are different
(numbers anywhere from 1 to 9) every time I try
copying the file to outgoing.

I tried using extension 51<10 digit ph#> instead of
1<10 digit ph#> in 1.call, but that didn't work
either.

Why is it failing?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] unable to set outgoing callerid

2006-05-01 Thread Sebastian Reitenbach
Hi *,

now for a long time i am trying to set the outgoing callerid, without luck. 

I am here in Germany, my asterisk has a pri interface connected to a PMX 
installed by Telekom. All telephone calls are preselected to EcoVoice.
I am using asterisk 1.2.7.1, zaptel 1.2.5 and libpri 1.2.2.

A week ago we tried with a device able to simulate a telephone system so send 
out a callerid, and that worked as expected.

When calling a mobile phone or making a far distance call, then normally the 
number starts with a 0. For some reason I do not know I have to remove the 
entered 0 from the number before the call will make it to the intended number.

I tried a lot of different formats for the callid, but no luck:
004933811234451
0049033811234451
+4933811234451
+49033811234451
033811234451 
1234451  
451  

I tried to configure it with the set and the setcallerid functions, both with 
the same result. 


anybody might have a clue what my problem might be? any small hint is 
appreciated as this is going to drive me crazy. On another machine at home I 
have no problem setting the callerid, but there I only have a SIP trunk.

kind regards
Sebastian


===
; Zapata telephony interface
;
; Configuration file


[trunkgroups]

[channels]

language=en
context=from-pstn
;signalling=fxs_ks
signalling=pri_cpe ; pri_cpe = PRI slave ; pri_net = PRI master
switchtype=euroisdn
;softdtmf=on
;relaxdtmf=on
rxwink=300 ; Atlas seems to use long (250ms) winks
;
; Whether or not to do distinctive ring detection on FXO lines
;
;usedistinctiveringdetection=yes
callerid=asreceived
;pridialplan=unknown
usecallerid=yes
nationalprefix=0
internationalprefix=00
localprefix=03381
callerid=asreceived
;callerid=033811234100
hidecallerid=no
callwaiting=yes
usecallingpres=yes
callwaitingcallerid=yes
threewaycalling=yes
transfer=yes
cancallforward=yes
callreturn=yes
echocancel=yes
echocancelwhenbridged=yes
echotraining=400
rxgain=0.0
txgain=0.0
overlapdial=yes
group=1
callgroup=1
pickupgroup=1
immediate=no


;faxdetect=both
faxdetect=incoming
;faxdetect=outgoing
;faxdetect=no

;Include genzaptelconf configs
#include zapata-auto.conf

;Include AMP configs
#include zapata_additional.conf
channel => 1-15,17-31
===
; testing extensions.conf
[general]
static=yes
writeprotect=no

[globals]


[default]
include => from-pstn
;exten => _0.,1,SetCallerID,"451"
exten => _0.,1,Set(CALLERID(number)=004933811234451)
exten => _0.,2,Dial(ZAP/g1/${EXTEN:2},60,tr)
exten => _0.,3,Hangup



==;
; test phone.conf file
; Linux Telephony Interface
;
; Configuration file
;
[interfaces]
;
; Select a mode, either the phone jack provides dialtone, reads digits,
; then starts PBX with the given extension (dialtone mode), or
; immediately provides the PBX without reading any digits or providing
; any dialtone (this is the immediate mode, the default).  Also, you
; can set the mode to "fxo" if you have a linejack to make it operate
; properly.
;
mode=immediate
;mode=dialtone
;mode=fxo
;
; You can decide which format to use by default, "g723.1" or "slinear".
; XXX Be careful, sometimes the card causes kernel panics when running
; in signed linear mode for some reason... XXX
;
;format=slinear
format=g723.1
;
; And set the echo cancellation to "off", "low", "medium", and "high".
; This is not supported on all phones.
;
echocancel=medium
;
; You can optionally use VAD/CNG silence supression
;
;silencesupression=yes
;
; List all devices we can use.  Contexts may also be specified
;
;context=local
;
; You can set txgain and rxgain for each device in the same way as context.
; If you want to change default gain value (1.0 =~ 100%) for device, simple
; add txgain or rxgain line before device line. But rememeber, if you change
; volume all cards listed below will be affected by these values. You can
; use float values (1.0, 0.5, 2.0) or percentage values (100%, 150%, 50%).
;
;txgain=100%
;rxgain=1.0
;device => /dev/phone0
=



===

here the log while calling



   -- Executing Set("SIP/451-f54b", "CALLERID(number)=004933811234451") in new 
stack
-- Executing Dial("SIP/451-f54b", "ZAP/g1/3381678934|60|tr") in new stack
-- Requested transfer capability: 0x00 - SPEECH
-- Called g1/3381678934
-- B-channel 0/2 successfully restarted on span 1
-- B-channel 0/3 successfully restarted on span 1
-- B-channel 0/4 successfully restarted on span 1
-- Zap/1-1 is proceeding passing it to SIP/451-f54b
-- Zap/1-1 answered SIP/451-f54b
-- B-channel 0/5 successfully restarted on span 1
-- B-channel 0/6 successfully restarted on span 1
-- B-channel 0/7 successfully restarted on span 1
-- B-channel 0/8 successfully restarted on span 1
-- B-channel 0/9 successfully restarted on span 1
-- B-chan

RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

2006-05-01 Thread Damon Estep
My experience is that a stun server does not do anything that nat=yes in
asterisk does not do. Asterisk is capable of determining the source port
and ip address of a registration, so there is no need for the UA (ATA)
to learn this information form a stun server. Keep it simple if
possible, the stun server just adds another device to manage and/or
worry about being unreachable.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, May 01, 2006 9:04 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

You will probably want to set a stun server in the 2100 if behind a nat.
You
can use stun.fwdnet.net for testing.  With that, you probably wont need
to
port forward & it should work.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Damon
Estep
Sent: Monday, May 01, 2006 8:30 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

Set nat=yes as you have
Enable qualify=yes

Important - Do a sip reload or asterisk reload (the nat and qualify
settings have to be refreshed, at least with realtime and
rtcahcefriends).

Turn off all NAT traversal features on the SPA2100

If it still does not work - your NAT router may be the issue, make sure
that security policy allows ALL outbound traffic from the SPA2100 (no
filters).

With Linksys, Belkin, and some 3com/USR NAT routers (among others I am
sure) you will need to make sure you have recent firmware on them, older
firmware (1 year or older in many cases) does not behave well with SIP
and NAT.

The NAT=yes tells asterisk to use the IP address and port of the
connection socket (a form of NAT discovery similar to a STUN server),
not what is in the registration message, and the qualify=yes tells
asterisk to send periodic SIP OPTIONS queries to keep the NAT timeout
from expiring on the NAT router.



> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Eric Lyons
> Sent: Monday, May 01, 2006 5:01 PM
> To: asterisk-users@lists.digium.com
> Subject: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling
> 
> I've got a Sipura SPA-1001 that I'm trying to get working with an
Asterisk
> server that's on the public Internet, while the SPA-1001
> is behind NAT.  I did the first obvious thing and mapped ports 5060
and
> 1 - 3 to the local IP address of the SPA-1001.
> Tried numerous proxy settings, have all the NAT settings == yes.
> Registration seems to be happening; with sip debug on, I see it
> get an OK and sip show peers shows it on the list.  But I can't get a
dial
> tone.
> 
> It works fine connecting to a local Asterisk box (not traversing NAT).
> 
> Anyone know the magic trick?  My sip.conf looks like:
> [homesip]
> type=friend
> username=homesip
> secret=
> context=fagi
> ;qualify=yes
> host=dynamic
> nat=yes
> 
> tried qualify both ways.  My sip show peers says:
> 
> telebox*CLI> sip show peers
> Name/username  HostDyn Nat ACL Port Status
> homesip/homesip67.188.35.109D   N  5060
> Unmonitored
> 
> Can't seem to find enough info to get this to work, any help
appreciated
> greatly,
> 
> Eric.
> 
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


__ NOD32 1.1447 (20060316) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com


___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] I am looking for a webphone on MY SITE

2006-05-01 Thread Anton Krall
Anyway to check out Corraleta? :) 

|-Original Message-
|From: [EMAIL PROTECTED] 
|[mailto:[EMAIL PROTECTED] On Behalf Of 
|Dean Collins
|Sent: Wednesday, April 26, 2006 1:12 PM
|To: Asterisk Users Mailing List - Non-Commercial Discussion
|Subject: RE: [Asterisk-Users] I am looking for a webphone on MY SITE
|
|Ahh it's about time you released to market anyway.
|
|
|
|> -Original Message-
|> From: [EMAIL PROTECTED] 
|[mailto:asterisk-users- 
|> [EMAIL PROTECTED] On Behalf Of Tim Panton
|> Sent: Wednesday, 26 April 2006 1:05 PM
|> To: Asterisk Users Mailing List - Non-Commercial Discussion
|> Subject: Re: [Asterisk-Users] I am looking for a webphone on MY SITE
|> 
|> 
|> On 26 Apr 2006, at 16:24, Dean Collins wrote:
|> 
|> > Do a google on Mexuar.
|> 
|> That's my cover blown :-)
|> 
|> Tim Panton
|> [EMAIL PROTECTED]
|> 
|> 
|> 
|> ___
|> --Bandwidth and Colocation provided by Easynews.com --
|> 
|> Asterisk-Users mailing list
|> To UNSUBSCRIBE or update options visit:
|>http://lists.digium.com/mailman/listinfo/asterisk-users
|
|
|___
|--Bandwidth and Colocation provided by Easynews.com --
|
|Asterisk-Users mailing list
|To UNSUBSCRIBE or update options visit:
|   http://lists.digium.com/mailman/listinfo/asterisk-users
|
|

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

2006-05-01 Thread billy
You will probably want to set a stun server in the 2100 if behind a nat. You
can use stun.fwdnet.net for testing.  With that, you probably wont need to
port forward & it should work.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Damon Estep
Sent: Monday, May 01, 2006 8:30 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

Set nat=yes as you have
Enable qualify=yes

Important - Do a sip reload or asterisk reload (the nat and qualify
settings have to be refreshed, at least with realtime and
rtcahcefriends).

Turn off all NAT traversal features on the SPA2100

If it still does not work - your NAT router may be the issue, make sure
that security policy allows ALL outbound traffic from the SPA2100 (no
filters).

With Linksys, Belkin, and some 3com/USR NAT routers (among others I am
sure) you will need to make sure you have recent firmware on them, older
firmware (1 year or older in many cases) does not behave well with SIP
and NAT.

The NAT=yes tells asterisk to use the IP address and port of the
connection socket (a form of NAT discovery similar to a STUN server),
not what is in the registration message, and the qualify=yes tells
asterisk to send periodic SIP OPTIONS queries to keep the NAT timeout
from expiring on the NAT router.



> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Eric Lyons
> Sent: Monday, May 01, 2006 5:01 PM
> To: asterisk-users@lists.digium.com
> Subject: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling
> 
> I've got a Sipura SPA-1001 that I'm trying to get working with an
Asterisk
> server that's on the public Internet, while the SPA-1001
> is behind NAT.  I did the first obvious thing and mapped ports 5060
and
> 1 - 3 to the local IP address of the SPA-1001.
> Tried numerous proxy settings, have all the NAT settings == yes.
> Registration seems to be happening; with sip debug on, I see it
> get an OK and sip show peers shows it on the list.  But I can't get a
dial
> tone.
> 
> It works fine connecting to a local Asterisk box (not traversing NAT).
> 
> Anyone know the magic trick?  My sip.conf looks like:
> [homesip]
> type=friend
> username=homesip
> secret=
> context=fagi
> ;qualify=yes
> host=dynamic
> nat=yes
> 
> tried qualify both ways.  My sip show peers says:
> 
> telebox*CLI> sip show peers
> Name/username  HostDyn Nat ACL Port Status
> homesip/homesip67.188.35.109D   N  5060
> Unmonitored
> 
> Can't seem to find enough info to get this to work, any help
appreciated
> greatly,
> 
> Eric.
> 
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


__ NOD32 1.1447 (20060316) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com


___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Damon Estep
Cross-posted to Dev on purpose.

I missed Astricon (not willing to give up a planned vacation!).

I looks like there is already code that detects the facility IE, as asterisk 
whines about "do not know what to do with a second ROSE component" (not 
verified in current version). That second ROSE component is the message that 
says the CNAM is coming in a facility IE according to the PM sessions I have 
been able to look at.

Why not put a flag in the config? WaitforfacilityIE=yes|no <- this would allow 
the user to decide on a per span basis if it is needed.

The Bellcore spec on CNAM states that the SETUP must contain an "information 
following" message element to indicate that the CNAM will arrive in the 
Facility IE.

Libpri could be written to look for the "information following" element in 
SETUP and wait for the FACIILITY IE if it is detected AND the user flag is set 
to wait for Facility IE.

Of course, when I say "could be written", I mean by someone like Matthew 
Frederickson, not me :). I do not have the required knowledge of the code to 
even try and attempt this.

I spent way too much time on this last year trying to use a TNT as a media 
gateway, now it (the TNT) is an outbound gateway for our 911 trunks and nothing 
else.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Lopez
Sent: Monday, May 01, 2006 6:38 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] CallerID Name problem

You explained this very well thank you!!, We discussed (Astricon 2005 Anaheim) 
having LibPri either wait 1 second before passing the call on to asterisk, or 
waiting until CNAME was received, both ideas were not good as it will introduce 
delays for all instead of just those that needed it.

For the time being we will put the Wait(1) in.
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Damon Estep
> Sent: Monday, May 01, 2006 8:24 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: RE: [Asterisk-Users] CallerID Name problem
> 
> The CDR is written at the end of the call, the SIP invite is generated
> when you tell it to.
> 
> You must wait for the CID name before you "dial" a SIP channel, as this is
> when the SIP invite is created.
> 
> Wait 1 seems to be long enough.
> 
> For analog TDM this is not an issue as the CNAM is sent between the first
> and second ring.
> 
> In nearly every case I have seen, the facility IE that contains the CNAM
> on most NI-2 ISDN PRIs, the Facility IE is not sent until after you send
> progress back to the telco.
> 
> Like this;
> 
> Telco sends ISDN SETUP message
> You send back ISDN PROGRESS (on a normal call)
> The Telco sends ISDN FACILITY INFORMATION ELEMENT (IE) containing CNAM
> 
> I have looked at several protocol monitoring session form both Nortel and
> lucent class 5 switches, and every one seems to send the facility IE in
> less than 500 milliseconds following SETUP assuming you (Zaptel) reply
> PROGRESS in a timely fashion, which does not appear to ever be an issue
> with Asterisk.
> 
> I have been lead to believe there are two reasons for sending the CNAM in
> the facility IE.
> 
> One explanation is that the SETUP message has a restriction on length, and
> in order to provide other features, the CNAM had to be moved.
> 
> The other explanation is that the Telco is saving costs by not dipping
> into LIDB (line information databases) for all calls where PROGRESS is not
> received from the endpoint (a high percentage of all calls). There is a
> cost associated with LIDB dips.
> 
> Both are believable explanations, but the result is the same, you have to
> wait 1 second!
> 
> Sure would be nice if asterisk could wait 500 milliseconds instead, since
> there is a need to put a "play 1 second of silence" in the first step of
> the IVR (if used) to avoid clipping the first phrase also. The combined 2
> seconds of "wait" gets noticed by some users/callers.
> 
> For the archives - The Lucent TNT (as of 11.0 firmware) is not capable of
> "waiting" for CNAM before generating the SIP invite, so it is not
> compatible with PRIs where the CNAM is sent in the facility IE instead of
> the SETUP message, which is the case with most telco switches with current
> software on them.
> 
> Damon
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:asterisk-users-
> > [EMAIL PROTECTED] On Behalf Of Josh McAllister
> > Sent: Monday, May 01, 2006 4:25 PM
> > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > Subject: RE: [Asterisk-Users] CallerID Name problem
> >
> >
> > >From: [EMAIL PROTECTED] [mailto:asterisk-users-
> > [EMAIL PROTECTED] On Behalf Of Lacy Moore - Aspendora
> > >Sent: Monday, May 01, 2006 3:06 PM
> > >To: Asterisk Users Mailing List - Non-Commercial Discussion
> > >Subject: Re: [Asterisk-Users] CallerID Name problem
> > >
> > >Do you ge

RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Alexander Lopez
You explained this very well thank you!!, We discussed (Astricon 2005 Anaheim) 
having LibPri either wait 1 second before passing the call on to asterisk, or 
waiting until CNAME was received, both ideas were not good as it will introduce 
delays for all instead of just those that needed it.

For the time being we will put the Wait(1) in.
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Damon Estep
> Sent: Monday, May 01, 2006 8:24 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: RE: [Asterisk-Users] CallerID Name problem
> 
> The CDR is written at the end of the call, the SIP invite is generated
> when you tell it to.
> 
> You must wait for the CID name before you "dial" a SIP channel, as this is
> when the SIP invite is created.
> 
> Wait 1 seems to be long enough.
> 
> For analog TDM this is not an issue as the CNAM is sent between the first
> and second ring.
> 
> In nearly every case I have seen, the facility IE that contains the CNAM
> on most NI-2 ISDN PRIs, the Facility IE is not sent until after you send
> progress back to the telco.
> 
> Like this;
> 
> Telco sends ISDN SETUP message
> You send back ISDN PROGRESS (on a normal call)
> The Telco sends ISDN FACILITY INFORMATION ELEMENT (IE) containing CNAM
> 
> I have looked at several protocol monitoring session form both Nortel and
> lucent class 5 switches, and every one seems to send the facility IE in
> less than 500 milliseconds following SETUP assuming you (Zaptel) reply
> PROGRESS in a timely fashion, which does not appear to ever be an issue
> with Asterisk.
> 
> I have been lead to believe there are two reasons for sending the CNAM in
> the facility IE.
> 
> One explanation is that the SETUP message has a restriction on length, and
> in order to provide other features, the CNAM had to be moved.
> 
> The other explanation is that the Telco is saving costs by not dipping
> into LIDB (line information databases) for all calls where PROGRESS is not
> received from the endpoint (a high percentage of all calls). There is a
> cost associated with LIDB dips.
> 
> Both are believable explanations, but the result is the same, you have to
> wait 1 second!
> 
> Sure would be nice if asterisk could wait 500 milliseconds instead, since
> there is a need to put a "play 1 second of silence" in the first step of
> the IVR (if used) to avoid clipping the first phrase also. The combined 2
> seconds of "wait" gets noticed by some users/callers.
> 
> For the archives - The Lucent TNT (as of 11.0 firmware) is not capable of
> "waiting" for CNAM before generating the SIP invite, so it is not
> compatible with PRIs where the CNAM is sent in the facility IE instead of
> the SETUP message, which is the case with most telco switches with current
> software on them.
> 
> Damon
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:asterisk-users-
> > [EMAIL PROTECTED] On Behalf Of Josh McAllister
> > Sent: Monday, May 01, 2006 4:25 PM
> > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > Subject: RE: [Asterisk-Users] CallerID Name problem
> >
> >
> > >From: [EMAIL PROTECTED] [mailto:asterisk-users-
> > [EMAIL PROTECTED] On Behalf Of Lacy Moore - Aspendora
> > >Sent: Monday, May 01, 2006 3:06 PM
> > >To: Asterisk Users Mailing List - Non-Commercial Discussion
> > >Subject: Re: [Asterisk-Users] CallerID Name problem
> > >
> > >Do you get caller ID number?  If so, WAITing is not going to help,
> since
> > you already get the info.  If you >get caller ID number, then your telco
> > is not >sending the name.
> >
> > This is not necessarily true. I've always gotten cID number, but only
> > recently when I added a wait(1) did I start getting channel vars
> populated
> > with cID Name. Same as Eric, I was getting cID Name in the CDR records
> all
> > along as well.
> >
> > Eric -- Go ahead and give it a shot... even if you are getting the cID
> > number. This will likely fix your problem.
> >
> > Josh McAllister
> >
> >
> > ___
> > --Bandwidth and Colocation provided by Easynews.com --
> >
> > Asterisk-Users mailing list
> > To UNSUBSCRIBE or update options visit:
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Using frequent keepalives to eliminate need forNAT port forwarding?

2006-05-01 Thread Damon Estep
Qualify=yes will send a SIP OPTIONS periodically and keep the NAT open,
if you use 1 to 1 NAT (versus PAT where it is "many to one NAT") it will
work because port 5060 on the private address will still be port 5060 on
the public address.

With PAT the port could be anything over 1024, but usually much higher,
and the originator will send to port 5060, which your NAT router will
drop.


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Tom Engleward
> Sent: Monday, May 01, 2006 6:25 PM
> To: asterisk-users@lists.digium.com
> Subject: [Asterisk-Users] Using frequent keepalives to eliminate need
> forNAT port forwarding?
> 
> I have an asterisk system behind NAT, and need to
> connect to public PSTN originators via SIP or IAX2,
> but don't have the option of forwarding any ports
> (4569, 5060, etc) to the asterisk system. However, the
> NAT system does properly establish transient UDP
> forwarding on the basis of outgoing connections, so is
> it possible to configure asterisk to send frequent
> keepalive UDP packets (say every 30 seconds) from
> ports 4569 and 5060 to the PSTN originators in order
> to keep the NAT system's transient forwarding in
> effect, so that when the PSTN originator receives
> inbound calls and attempts to contact my asterisk
> system, the NAT system won't drop the packets?
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

2006-05-01 Thread Damon Estep
Set nat=yes as you have
Enable qualify=yes

Important - Do a sip reload or asterisk reload (the nat and qualify
settings have to be refreshed, at least with realtime and
rtcahcefriends).

Turn off all NAT traversal features on the SPA2100

If it still does not work - your NAT router may be the issue, make sure
that security policy allows ALL outbound traffic from the SPA2100 (no
filters).

With Linksys, Belkin, and some 3com/USR NAT routers (among others I am
sure) you will need to make sure you have recent firmware on them, older
firmware (1 year or older in many cases) does not behave well with SIP
and NAT.

The NAT=yes tells asterisk to use the IP address and port of the
connection socket (a form of NAT discovery similar to a STUN server),
not what is in the registration message, and the qualify=yes tells
asterisk to send periodic SIP OPTIONS queries to keep the NAT timeout
from expiring on the NAT router.



> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Eric Lyons
> Sent: Monday, May 01, 2006 5:01 PM
> To: asterisk-users@lists.digium.com
> Subject: [Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling
> 
> I've got a Sipura SPA-1001 that I'm trying to get working with an
Asterisk
> server that's on the public Internet, while the SPA-1001
> is behind NAT.  I did the first obvious thing and mapped ports 5060
and
> 1 - 3 to the local IP address of the SPA-1001.
> Tried numerous proxy settings, have all the NAT settings == yes.
> Registration seems to be happening; with sip debug on, I see it
> get an OK and sip show peers shows it on the list.  But I can't get a
dial
> tone.
> 
> It works fine connecting to a local Asterisk box (not traversing NAT).
> 
> Anyone know the magic trick?  My sip.conf looks like:
> [homesip]
> type=friend
> username=homesip
> secret=
> context=fagi
> ;qualify=yes
> host=dynamic
> nat=yes
> 
> tried qualify both ways.  My sip show peers says:
> 
> telebox*CLI> sip show peers
> Name/username  HostDyn Nat ACL Port Status
> homesip/homesip67.188.35.109D   N  5060
> Unmonitored
> 
> Can't seem to find enough info to get this to work, any help
appreciated
> greatly,
> 
> Eric.
> 
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Alexander Lopez
Title: RE: [Asterisk-Users] CallerID Name problem








Glad to help. It is NOT a BUG, but it
works that way due to the way CallerID name is transmited to the customer with
some Telcos

 

 











From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hall, Eric M.
Sent: Monday, May 01, 2006 6:29 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
CallerID Name problem



 

That worked GREAT 

Thank you so so MUCH for your help!!

 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander Lopez
Sent: Monday, May 01, 2006 5:06 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
CallerID Name problem

You don't need the answer, But you need
the wait. CallerID Name comes over the FACILITY messge many times and it takes
a slpit second for it to come in.

 



 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hall, Eric M.
Sent: Monday, May 01, 2006 4:34 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
CallerID Name problem

Do
you wait before or after the answer? Do you even need the answer?



 -Original Message-
From:   Alexander Lopez [mailto:[EMAIL PROTECTED]]
Sent:   Mon May 01 14:26:49 2006
To: Asterisk Users Mailing
 List - Non-Commercial Discussion
Subject:    RE: [Asterisk-Users]
CallerID Name problem

How are the calls coming into the PBX. PRI? If so add a Wait(1) before
your try ringing the SIP channel.


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Hall, Eric M.
> Sent: Monday, May 01, 2006 12:37 PM
> To: Asterisk Users Mailing List - Non-Commercial
 Discussion
> Subject: [Asterisk-Users] CallerID Name problem
>
>
> I'm having trouble getting callerid name to show up on my phones
(Cisco
> 7960 and a few softphones)
> When I look in the CDR database I see the name but not on any phone
when
> being called.
>
> I'm running
> Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC
>
>
> Any help would be great !
> ___
> --Bandwidth and Colocation provided by Easynews.com --
>
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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










___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Using frequent keepalives to eliminate need for NAT port forwarding?

2006-05-01 Thread Tom Engleward
I have an asterisk system behind NAT, and need to
connect to public PSTN originators via SIP or IAX2,
but don't have the option of forwarding any ports
(4569, 5060, etc) to the asterisk system. However, the
NAT system does properly establish transient UDP
forwarding on the basis of outgoing connections, so is
it possible to configure asterisk to send frequent
keepalive UDP packets (say every 30 seconds) from
ports 4569 and 5060 to the PSTN originators in order
to keep the NAT system's transient forwarding in
effect, so that when the PSTN originator receives
inbound calls and attempts to contact my asterisk
system, the NAT system won't drop the packets?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Damon Estep
The CDR is written at the end of the call, the SIP invite is generated when you 
tell it to.

You must wait for the CID name before you "dial" a SIP channel, as this is when 
the SIP invite is created.

Wait 1 seems to be long enough.

For analog TDM this is not an issue as the CNAM is sent between the first and 
second ring.

In nearly every case I have seen, the facility IE that contains the CNAM on 
most NI-2 ISDN PRIs, the Facility IE is not sent until after you send progress 
back to the telco.

Like this;

Telco sends ISDN SETUP message
You send back ISDN PROGRESS (on a normal call)
The Telco sends ISDN FACILITY INFORMATION ELEMENT (IE) containing CNAM

I have looked at several protocol monitoring session form both Nortel and 
lucent class 5 switches, and every one seems to send the facility IE in less 
than 500 milliseconds following SETUP assuming you (Zaptel) reply PROGRESS in a 
timely fashion, which does not appear to ever be an issue with Asterisk.

I have been lead to believe there are two reasons for sending the CNAM in the 
facility IE.

One explanation is that the SETUP message has a restriction on length, and in 
order to provide other features, the CNAM had to be moved.

The other explanation is that the Telco is saving costs by not dipping into 
LIDB (line information databases) for all calls where PROGRESS is not received 
from the endpoint (a high percentage of all calls). There is a cost associated 
with LIDB dips.

Both are believable explanations, but the result is the same, you have to wait 
1 second!

Sure would be nice if asterisk could wait 500 milliseconds instead, since there 
is a need to put a "play 1 second of silence" in the first step of the IVR (if 
used) to avoid clipping the first phrase also. The combined 2 seconds of "wait" 
gets noticed by some users/callers.

For the archives - The Lucent TNT (as of 11.0 firmware) is not capable of 
"waiting" for CNAM before generating the SIP invite, so it is not compatible 
with PRIs where the CNAM is sent in the facility IE instead of the SETUP 
message, which is the case with most telco switches with current software on 
them.

Damon












> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Josh McAllister
> Sent: Monday, May 01, 2006 4:25 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: RE: [Asterisk-Users] CallerID Name problem
> 
> 
> >From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Lacy Moore - Aspendora
> >Sent: Monday, May 01, 2006 3:06 PM
> >To: Asterisk Users Mailing List - Non-Commercial Discussion
> >Subject: Re: [Asterisk-Users] CallerID Name problem
> >
> >Do you get caller ID number?  If so, WAITing is not going to help, since
> you already get the info.  If you >get caller ID number, then your telco
> is not >sending the name.
> 
> This is not necessarily true. I've always gotten cID number, but only
> recently when I added a wait(1) did I start getting channel vars populated
> with cID Name. Same as Eric, I was getting cID Name in the CDR records all
> along as well.
> 
> Eric -- Go ahead and give it a shot... even if you are getting the cID
> number. This will likely fix your problem.
> 
> Josh McAllister
> 
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Lacy Moore - Aspendora
Good to know.  I always thought that it was all sent along the D channel in the call setup.  But, until Wednesday, I'm just talking.  After Wednesday, I'll have my PRI.  At least now I know to include the wait.
 
Thanks! 
On 5/1/06, Josh McAllister <[EMAIL PROTECTED]> wrote:
>From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]] On Behalf Of Lacy Moore - Aspendora>Sent: Monday, May 01, 2006 3:06 PM>To: Asterisk Users Mailing List - Non-Commercial Discussion
>Subject: Re: [Asterisk-Users] CallerID Name problem>>Do you get caller ID number? If so, WAITing is not going to help, since you already get the info. If you >get caller ID number, then your telco is not >sending the name.
This is not necessarily true. I've always gotten cID number, but only recently when I added a wait(1) did I start getting channel vars populated with cID Name. Same as Eric, I was getting cID Name in the CDR records all along as well.
Eric -- Go ahead and give it a shot... even if you are getting the cID number. This will likely fix your problem.Josh McAllister___--Bandwidth and Colocation provided by 
Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:  http://lists.digium.com/mailman/listinfo/asterisk-users
-- Lacy MooreAspendora, Inc. 
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Cisco 2621 router for voice and data?

2006-05-01 Thread T. Shaw
Hey Guys/Gals, 
I was thinking of getting a cisco 2621 router with 2 FastE modules and 1
T1-Wic to use for a small business setup along with asterisk. I want to
provide redundancy between my VOIP provider and telco, or between two VOIP
providers. Also my plans are to setup VLANS to separate internal voice
traffic and regular data traffic using a cisco 2900 switch. Is the 2621
overkill for 5-7 person office? I'm thinking about scalability as well. It
could grow into +5 people within the next 6mos. I was also looking at a
cisco 1760-v modular router.

Thanks for your thoughts!

Terrelle
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] wellgate 38XX with VAD and call files

2006-05-01 Thread Jerry Geis

Has anyone configured the wellgate 38XX sip units with VAD?
I have the unit all working but when I do a call file from
/var/spool/asterisk/outgoing/callfile (below)
--
Channel: SIP/1001/506
Context: smvoice-dialout
Extension: 9
Application: Playback
Data: demo-congrats
--
Where 506 is my cell phone number.
The demo-congrats message is already playing before I answer the call.
What is the trick to have VAD correctly work so the message does not
start to play before I answer the phone.

Thanks,

Jerry

___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] SPA-1001 behind NAT -- mucho hair pulling

2006-05-01 Thread Eric Lyons
I've got a Sipura SPA-1001 that I'm trying to get working with an Asterisk server that's on the public Internet, while the SPA-1001 
is behind NAT.  I did the first obvious thing and mapped ports 5060 and 1 - 3 to the local IP address of the SPA-1001. 
Tried numerous proxy settings, have all the NAT settings == yes.  Registration seems to be happening; with sip debug on, I see it 
get an OK and sip show peers shows it on the list.  But I can't get a dial tone.


It works fine connecting to a local Asterisk box (not traversing NAT).

Anyone know the magic trick?  My sip.conf looks like:
[homesip]
type=friend
username=homesip
secret=
context=fagi
;qualify=yes
host=dynamic
nat=yes

tried qualify both ways.  My sip show peers says:

telebox*CLI> sip show peers
Name/username  HostDyn Nat ACL Port Status
homesip/homesip67.188.35.109D   N  5060 Unmonitored

Can't seem to find enough info to get this to work, any help appreciated 
greatly,

Eric. 



___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Polycom SoundPoint 501 + Asterisk

2006-05-01 Thread Douglas Garstang
I remember a thread about this exact problem a few weeks ago.
You need to upgrade the phone XML config files to the ones that come with the 
version of firmware you are using.

Doug.

> -Original Message-
> From: Kenneth Shaw [mailto:[EMAIL PROTECTED]
> Sent: Monday, May 01, 2006 3:24 PM
> To: asterisk-users@lists.digium.com
> Subject: [Asterisk-Users] Polycom SoundPoint 501 + Asterisk
> 
> 
> Guys,
> 
> I recently purchased some new SoundPoint 501 phones. The new 
> ones that I
> purchased had a newer firmware than the 501s we had deployed at the
> time. I updated the firmware on the older 501s, and now these phones
> have some very odd echoes with Asterisk, etc. I assume this is due to
> changes in the config file somehow (I love Polycom!), but was 
> wondering
> if anyone else had experienced odd audio problems with the 501s after
> upgrading to the latest bootrom and sip images.
> 
> Any info would be much appreciated! Thanks!
> 
> -- 
> Kenneth Shaw
> Director of Technology
> ExpiTrans, Inc.
> 129 W. Wilson St., Suite 204
> Costa Mesa, CA 92627
> tel: 949 278 7288
> fax: 949 642 6044
> [EMAIL PROTECTED]
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
Title: RE: [Asterisk-Users] CallerID Name problem



That worked GREAT 
Thank you so so MUCH for your 
help!!


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander 
LopezSent: Monday, May 01, 2006 5:06 PMTo: Asterisk Users 
Mailing List - Non-Commercial DiscussionSubject: RE: [Asterisk-Users] 
CallerID Name problem

You don't need the answer, But you need the wait. 
CallerID Name comes over the FACILITY messge many times and it takes a slpit 
second for it to come in.
 

  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Hall, 
  Eric M.Sent: Monday, May 01, 2006 4:34 PMTo: Asterisk 
  Users Mailing List - Non-Commercial DiscussionSubject: RE: 
  [Asterisk-Users] CallerID Name problem
  
  Do you wait before or after the answer? Do you even need the 
  answer? -Original Message-From:   
  Alexander Lopez [mailto:[EMAIL PROTECTED]]Sent:   
  Mon May 01 14:26:49 2006To: Asterisk Users Mailing 
  List - Non-Commercial 
  DiscussionSubject:    RE: 
  [Asterisk-Users] CallerID Name problemHow are the calls coming into 
  the PBX. PRI? If so add a Wait(1) beforeyour try ringing the SIP 
  channel.> -Original Message-> From: 
  [EMAIL PROTECTED] [mailto:asterisk-users-> 
  [EMAIL PROTECTED] On Behalf Of Hall, Eric M.> Sent: Monday, May 
  01, 2006 12:37 PM> To: Asterisk Users Mailing List - Non-Commercial 
  Discussion> Subject: [Asterisk-Users] CallerID Name 
  problem>>> I'm having trouble getting callerid name to 
  show up on my phones(Cisco> 7960 and a few softphones)> When 
  I look in the CDR database I see the name but not on any phonewhen> 
  being called.>> I'm running> Asterisk SVN-trunk-r7498 
  built on 2006-04-30 15:11:39 UTC>>> Any help would be 
  great !> ___> 
  --Bandwidth and Colocation provided by Easynews.com -->> 
  Asterisk-Users mailing list> To UNSUBSCRIBE or update options 
  visit:>    http://lists.digium.com/mailman/listinfo/asterisk-users___--Bandwidth 
  and Colocation provided by Easynews.com --Asterisk-Users mailing 
  listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Josh McAllister

>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lacy Moore - 
>Aspendora
>Sent: Monday, May 01, 2006 3:06 PM
>To: Asterisk Users Mailing List - Non-Commercial Discussion
>Subject: Re: [Asterisk-Users] CallerID Name problem
>
>Do you get caller ID number?  If so, WAITing is not going to help, since you 
>already get the info.  If you >get caller ID number, then your telco is not 
>>sending the name.

This is not necessarily true. I've always gotten cID number, but only recently 
when I added a wait(1) did I start getting channel vars populated with cID 
Name. Same as Eric, I was getting cID Name in the CDR records all along as well.

Eric -- Go ahead and give it a shot... even if you are getting the cID number. 
This will likely fix your problem.

Josh McAllister
 

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Doug Lytle wrote:

  

Jon,

I don't know.  I went into my voicemail.conf and put a semicolon in
front of that option,

Re-attached to the Asterisk console and did a reload and the option was
no longer available from Advanced Options.

I'm running 1.2.7.1



Do you mean the option was not offered to you or it did not work when
offered. I am also on 1.2.7.1


  

The option is no longer offered.

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 Easynews.com --

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


[Asterisk-Users] Music on Hold from Soundcard

2006-05-01 Thread Alex Robar
Hey 
all,


I've been trying to get MoH to work 
from the line-in on my soundcard, but as of yet have had no success. I found 
this script that should allow for it to happen:http://www.sineapps.com/news.php?rssid=722


The script, when run as the asterisk 
user, works properly and streams sound to stdin. But when Asterisk starts MoH it 
stops it immediately afterwards with no explanation. Has anyone gotten this to 
work? Or does anyone have any ideas on how to debug why MoH stops immediately 
after starting?

Thanks in advance!Alex Robar
 
___
 
Alex Robar,  Technical Support, 
  GearyTech Inc.


3075 Fourteenth Avenue, Unit 3, 
Markham, Ontario L3R 
0G9
Markham: 905-513-8000  x 223  
Fax: 905-513-8040
Toronto
: 416-226-3614      
Toll Free: 888-890-3499
[EMAIL PROTECTED]
 
www.gearytech.com
 
Strategic management of technology 
for business.
 
Have you seen our new 
Voice over IP telephone systems for business? 
Visit 
http://www.gearytech.com/VoIP.asp
 
for more information.-- Alex Robar[EMAIL PROTECTED]
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] billing realtime

2006-05-01 Thread Thameem Ansari
Hello All,

I had the same question when I was writing my own billing software in
java. Here is what I am doing to track multiple calls at a time from
the prepaid account. 

1. Keep on db table for balance and reserver_balance.
2. First call coming to agi, check the balance - Sum of all the reserve_balance of that account code. 
3. Check the destination and allowed minutes for that balance amount from step 2. 
4. Reserve balance table will contain destination, amount, reserved secs columns
5. If the avaialable balance is <= 0 then announce not enough credit and hangup. 
6. If the available balance is > 0 but seconds allowed to talk is
less than reserved secs (see step 8 for more details about what this is)
   then set absolutetimeout for those seconds.
7. Otherwise the allowed seconds is more than the allowed seconds, set
absolute time out for the reserved seconds and make the call.
8. Reserved secs is a custom constant seconds, say you can reserve fund
for 3 minutes (180 seconds). if the account has balance for only 2
minutes (120 seconds) then the absolute time out will be 120 seconds. 
9. Once the channel status changed to reserved, insert an record to
reserve_balance table with uniqueid, accountcode, amount, reserved_secs
information. 

The above steps will handle one call so far now...and lets see how the dial plan should be,
10. In your dial plan, add an AbsoluteTimeout extension "T" and call
another AGI script which will just to reset the absolute timeout.
11. When the particular timeout is reached asterisk will transfer the
call to 'T" extension which will in turn call another agi. 
12. The agi will receive all the information about the channel
including uniqueid, repeat the steps 2- 7 (except dial) and reset the
abstimeout and this process will repeat until the channel hangup. 
13. Once the channel hangup, you can either use Manager to receive the
cdr event or you can set "h" extension (not reliable and not
recommended) to calculate the real balance and update the balance
table. Once you update the balance table, remove the record from
reserve_balance table for the uniqueid, channel and accountcode. (these
three are enough to find out the entry in that table).

Now lets take the scenario for  second call when the first call was  active, 
14. When the second call comes in, start from step 2. In step 2, we are
doing finalBalance = Balance - Sum(reserve_balance) for that account
code. If there is already a call on this accountcode, then this table
will have one entry and the reserved amount. Get the finalBalance by
subtracting the amounts. Follow step 3 and allow or deny the caller.
The above said solution is very stable and doesn't overflow the memory
or session and not using any threads. The only restriction here is, if
we have the scenario, 

Call -1 
balance = $0.10 
destination= 1 (which is US) 
rate = $0.02 per minute
reserveSecs  = 10 minutes (600secs)
finalBalance = $0.10 - $0 (consider this is first call and no entry in reserve_balance table) = $0.10 
allowedMints = $0.10/$0.02 = 5 minutes  = 300 seconds. 
AbsoluteTimeout = 300 seconds (this is less than the default reserveSecs so set this as abstimeout)

Call -2
balance = $0.10 

destination= 1 (which is US) 

rate = $0.02 per minute

reserveSecs  = 10 minutes (600secs)

finalBalance = $0.10 - $0.10 (consider this is second call and already an entry in reserve_balance table) = $0.0

allowedMints = 0 seconds. 
announce the denied ivr. 

So, the reserveSecs is critical to avoid how much threshold amount the
caller should have to make two calls. If they have $10 in their account
as per the above two algorithms, they can make as many simultaneous
calls. 

I hope this solves most of your problems. I looked at ASTCC, A2Billing
etc and they are not doing this way and not know whether they work
properly. But this works for me. Shoot me your questions if you have
one. 

I am developing my own billing and routing app (in java) and I need a
name for that.. guys pls suggest one.. i may put that in sourceforge if
i feel confident. 

Thanks,
Thameem
On 4/27/06, JP Carballo <[EMAIL PROTECTED]> wrote:
Dovid Bender wrote:>A while back some one posted some code that he used>that took out the flag in astcc that kept track if>there was a call in progress for that pin or not. Dont>know if it wil work for real time though.
>>Dovid>>I don't know if you were pertaining to what I posted in the message"ASTCC: How to reset "in-use" flag automatically ?".The setinuse() routine already exists in ASTCC.
One simply has to use that routine to disable the inuse flag when a callbegins and ASTCC will allow multiple calls for the same account.However, I too have no idea if this will work for real time.--
JP Carballohttp://www.netfone2x.comBringing the world closer.It might look like I'm doing nothing, but at the cellular level, I'm really quite busy.___
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing lis

RE: [Asterisk-Users] Digium TDM400P vs Sangoma A200 for 2 x FXO

2006-05-01 Thread Chris Bagnall
I've no experience with the A200, so I can't really pass judgement on it. We
have 2 sites with TDM400P cards currently deployed (one with 3 FXO, the
other with 1 FXO and 3 FXS). The site in Northampton with 3 FXO has been an
absolute nightmare over the last 9 months the system's been in place.
Initially we had big problems with echo that no amount of tweaking of the
echo parameters would fix.

Once asterisk 1.2 was deployed, things improved remarkably. I took the time
on-site to properly configure the txgain and rxgain using a milliwatt tone
coming from one of our other servers in a datacentre (rather than relying on
using ztmonitor -v whilst the client was making/receiving calls - you can't
guarantee whether the party they're talking to has *their* gains properly
configured, which means you end up with completely different results on
every call). Once I'd got the gains properly configured, fairly standard
echo cancellation settings of "on" and "echotraining=800" seem to work
relatively well.

One thing worth checking with BT - if you can find someone who can give you
an accurate answer - is whether the Featureline will give you disconnect
supervision. If it will, so much the better, as * 1.2 seems to have usable
support for it. If it works reliably, you can increase the number of busy
tones to detect before a channel is killed (this will massively reduce
incidences of false hangups).

It's still not as good as the building next door where they have 2 ISDN
BRIs, but it works, and I've not had any complaints for the last month since
their box was upgraded to 1.2.

Hope that helps.

(shameless plug - I have a spare TDM400 card here if you're looking to
acquire one at a reduced price - discuss off-list if interested)

Regards,

Chris
-- 
C.M. Bagnall, Director, Minotaur I.T. Limited
This email is made from 100% recycled electrons


___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Polycom SoundPoint 501 + Asterisk

2006-05-01 Thread Kenneth Shaw
Guys,

I recently purchased some new SoundPoint 501 phones. The new ones that I
purchased had a newer firmware than the 501s we had deployed at the
time. I updated the firmware on the older 501s, and now these phones
have some very odd echoes with Asterisk, etc. I assume this is due to
changes in the config file somehow (I love Polycom!), but was wondering
if anyone else had experienced odd audio problems with the 501s after
upgrading to the latest bootrom and sip images.

Any info would be much appreciated! Thanks!

-- 
Kenneth Shaw
Director of Technology
ExpiTrans, Inc.
129 W. Wilson St., Suite 204
Costa Mesa, CA 92627
tel: 949 278 7288
fax: 949 642 6044
[EMAIL PROTECTED]

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: Spam? Re: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
Title: RE: Spam? Re: [Asterisk-Users] CallerID Name problem






I'm getting Number but when I look at the CDR database. I do see the name



 -Original Message-
From:   Lacy Moore - Aspendora [mailto:[EMAIL PROTECTED]]
Sent:   Mon May 01 17:10:26 2006
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject:    Spam? Re: [Asterisk-Users] CallerID Name problem

Do you get caller ID number?  If so, WAITing is not going to help, since you
already get the info.  If you get caller ID number, then your telco is not
sending the name.

On 5/1/06, Hall, Eric M. <[EMAIL PROTECTED]> wrote:
>
>  Do you wait before or after the answer? Do you even need the answer?
>
>
>
>
>  -Original Message-
> From:   Alexander Lopez [mailto:[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> ]
> Sent:   Mon May 01 14:26:49 2006
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject:    RE: [Asterisk-Users] CallerID Name problem
>
> How are the calls coming into the PBX. PRI? If so add a Wait(1) before
> your try ringing the SIP channel.
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:asterisk-users-
> > [EMAIL PROTECTED] On Behalf Of Hall, Eric M.
> > Sent: Monday, May 01, 2006 12:37 PM
> > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > Subject: [Asterisk-Users] CallerID Name problem
> >
> >
> > I'm having trouble getting callerid name to show up on my phones
> (Cisco
> > 7960 and a few softphones)
> > When I look in the CDR database I see the name but not on any phone
> when
> > being called.
> >
> > I'm running
> > Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC
> >
> >
> > Any help would be great !
> > ___
> > --Bandwidth and Colocation provided by Easynews.com--
> >
> > Asterisk-Users mailing list
> > To UNSUBSCRIBE or update options visit:
> >    http://lists.digium.com/mailman/listinfo/asterisk-users
> ___
> --Bandwidth and Colocation provided by Easynews.com --
>
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users
>
>
> ___
> --Bandwidth and Colocation provided by Easynews.com --
>
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>
>
>


--
Lacy Moore
Aspendora, Inc.




___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer


Doug Lytle wrote:

> Jon,
> 
> I don't know.  I went into my voicemail.conf and put a semicolon in
> front of that option,
> 
> Re-attached to the Asterisk console and did a reload and the option was
> no longer available from Advanced Options.
> 
> I'm running 1.2.7.1

Do you mean the option was not offered to you or it did not work when
offered. I am also on 1.2.7.1


-- 
Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
Title: RE: [Asterisk-Users] CallerID Name problem






Thanks will try that tonight.

Thanks again



 -Original Message-
From:   Alexander Lopez [mailto:[EMAIL PROTECTED]]
Sent:   Mon May 01 17:07:43 2006
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject:    RE: [Asterisk-Users] CallerID Name problem

You don't need the answer, But you need the wait. CallerID Name comes
over the FACILITY messge many times and it takes a slpit second for it
to come in.





    From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Hall, Eric
M.
    Sent: Monday, May 01, 2006 4:34 PM
    To: Asterisk Users Mailing List - Non-Commercial Discussion
    Subject: RE: [Asterisk-Users] CallerID Name problem
   
   

    Do you wait before or after the answer? Do you even need the
answer?
   
   
   
 -Original Message-
    From:   Alexander Lopez [mailto:[EMAIL PROTECTED]]
    Sent:   Mon May 01 14:26:49 2006
    To: Asterisk Users Mailing List - Non-Commercial Discussion
    Subject:    RE: [Asterisk-Users] CallerID Name problem
   
    How are the calls coming into the PBX. PRI? If so add a Wait(1)
before
    your try ringing the SIP channel.
   
   
    > -Original Message-
    > From: [EMAIL PROTECTED]
[mailto:asterisk-users-
    > [EMAIL PROTECTED] On Behalf Of Hall, Eric M.
    > Sent: Monday, May 01, 2006 12:37 PM
    > To: Asterisk Users Mailing List - Non-Commercial Discussion
    > Subject: [Asterisk-Users] CallerID Name problem
    >
    >
    > I'm having trouble getting callerid name to show up on my
phones
    (Cisco
    > 7960 and a few softphones)
    > When I look in the CDR database I see the name but not on any
phone
    when
    > being called.
    >
    > I'm running
    > Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC
    >
    >
    > Any help would be great !
    > ___
    > --Bandwidth and Colocation provided by Easynews.com --
    >
    > Asterisk-Users mailing list
    > To UNSUBSCRIBE or update options visit:
    >    http://lists.digium.com/mailman/listinfo/asterisk-users
    ___
    --Bandwidth and Colocation provided by Easynews.com --
   
    Asterisk-Users mailing list
    To UNSUBSCRIBE or update options visit:
       http://lists.digium.com/mailman/listinfo/asterisk-users
   





___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Digium TDM400P vs Sangoma A200 for 2 x FXO

2006-05-01 Thread John Novack
Though many will probably disagree, you will be LOTS better off with the 
Sangoma A200
It is MUCH more forgiving regarding Motherboards and the PCI 2.2 
requirement, even though the software installation instructions leave 
much to be desired for the inexperienced, it does work, and Sangoma  
fixed a problem I discovered with their FXS module software.
My first experience with Digium and the TDM400 was, when it couldn't be 
seen in a motherboard that said it was PCI 2.2,  Digium's response was 
"try another motherboard"


John Novack


Nick Chalk wrote:


Evening all.

I'm looking at building an Asterisk system for one
of the projects of the Charity where I'm the
SysAdmin.

The project has two analogue phone lines - BT
Featureline Compact, we're in the UK - that I'd
like Asterisk to handle.

My current quandary is which FXO interface to use.
I've been looking at the Digium TDM400P and
Sangoma A200, which are similar prices for two FXO
lines. Can anyone comment on the relative merits
of those two devices? Are there any other options
in the same price range?

As we're a small Charity, price is a major
consideration. I don't think we can afford the
A200's hardware echo-canceller, for instance.

Thanks for your help.

Nick.

 


___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] app_icd

2006-05-01 Thread lenz

Hello list,

I am seeing that the current version of AMP / FreePBX sports app_icd
instead of app_queue as the default call distribution method - see
http://sourceforge.net/projects/icd

I was wondering if anyone had hands-on experience with app_icd and if
there are good selling points that make the transition worthwile - it is
not surely used in as many installations as app_queue, so I would bet it
is not as tested.

Anybody got first-hand experience?
Yours,
l.

--
Assum est, versa et manduca.
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Lacy Moore - Aspendora
Do you get caller ID number?  If so, WAITing is not going to help, since you already get the info.  If you get caller ID number, then your telco is not sending the name.
On 5/1/06, Hall, Eric M. <[EMAIL PROTECTED]> wrote:


Do you wait before or after the answer? Do you even need the answer?
 -Original Message-From:   Alexander Lopez [
mailto:[EMAIL PROTECTED]]Sent:   Mon May 01 14:26:49 2006To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject:    RE: [Asterisk-Users] CallerID Name problemHow are the calls coming into the PBX. PRI? If so add a Wait(1) beforeyour try ringing the SIP channel.
> -Original Message-> From: [EMAIL PROTECTED]
 [mailto:asterisk-users-> 
[EMAIL PROTECTED]] On Behalf Of Hall, Eric M.> Sent: Monday, May 01, 2006 12:37 PM> To: Asterisk Users Mailing List - Non-Commercial Discussion> Subject: [Asterisk-Users] CallerID Name problem
>>> I'm having trouble getting callerid name to show up on my phones(Cisco> 7960 and a few softphones)> When I look in the CDR database I see the name but not on any phonewhen
> being called.>> I'm running> Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC>>> Any help would be great !> ___
> --Bandwidth and Colocation provided by Easynews.com -->> Asterisk-Users mailing list> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users___
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

___--Bandwidth and Colocation provided by Easynews.com
 --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:  
http://lists.digium.com/mailman/listinfo/asterisk-users-- Lacy MooreAspendora, Inc. 
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Alexander Lopez
Title: RE: [Asterisk-Users] CallerID Name problem



You don't need the answer, But you need the wait. 
CallerID Name comes over the FACILITY messge many times and it takes a slpit 
second for it to come in.
 

  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Hall, 
  Eric M.Sent: Monday, May 01, 2006 4:34 PMTo: Asterisk 
  Users Mailing List - Non-Commercial DiscussionSubject: RE: 
  [Asterisk-Users] CallerID Name problem
  
  Do you wait before or after the answer? Do you even need the 
  answer? -Original Message-From:   
  Alexander Lopez [mailto:[EMAIL PROTECTED]]Sent:   
  Mon May 01 14:26:49 2006To: Asterisk Users Mailing 
  List - Non-Commercial 
  DiscussionSubject:    RE: 
  [Asterisk-Users] CallerID Name problemHow are the calls coming into 
  the PBX. PRI? If so add a Wait(1) beforeyour try ringing the SIP 
  channel.> -Original Message-> From: 
  [EMAIL PROTECTED] [mailto:asterisk-users-> 
  [EMAIL PROTECTED] On Behalf Of Hall, Eric M.> Sent: Monday, May 
  01, 2006 12:37 PM> To: Asterisk Users Mailing List - Non-Commercial 
  Discussion> Subject: [Asterisk-Users] CallerID Name 
  problem>>> I'm having trouble getting callerid name to 
  show up on my phones(Cisco> 7960 and a few softphones)> When 
  I look in the CDR database I see the name but not on any phonewhen> 
  being called.>> I'm running> Asterisk SVN-trunk-r7498 
  built on 2006-04-30 15:11:39 UTC>>> Any help would be 
  great !> ___> 
  --Bandwidth and Colocation provided by Easynews.com -->> 
  Asterisk-Users mailing list> To UNSUBSCRIBE or update options 
  visit:>    http://lists.digium.com/mailman/listinfo/asterisk-users___--Bandwidth 
  and Colocation provided by Easynews.com --Asterisk-Users mailing 
  listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Asterisk-Users Digest, Vol 22, Issue 1

2006-05-01 Thread Terence Burnard

Hey,

Thanks for the input Andrew. I did all you suggested but noticed that 
when I did the loopback test, the output *was not* there as you 
mentioned ("I'm set to pri_net, but the other side thinks it is pri_net!").


In fact, the same message as before kept repeating every second or so:

>> Unnumbered frame:
>> SAPI: 00  C/R: 0 EA: 0
>>  TEI: 000EA: 1
>>   M3: 3   P/F: 1 M2: 3 11: 3  [ SABME (set asynchronous balanced mode

extended) ]

>> 0 bytes of data

Sending Set Asynchronous Balanced Mode Extended


This was true on both of our Te411 cards so I'd be surprised if both 
were defective.  The cisco gateway that this Asterisk box is replacing 
is dms100, esf, b8zs so I just set the asterisk box with the same 
configuration.  I spoke to the telco and they said everything looks good 
on their end, and since this a production T1 it doesn't need turning up.


Now that I know support comes with these cards, I might give Digium a 
shout. :)


Terence




Date: Mon, 1 May 2006 07:20:51 -0400
From: Andrew Kohlsmith <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-Users] PRI Issue: D-Channel woes
To: asterisk-users@lists.digium.com
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain;  charset="iso-8859-1"

On Monday 01 May 2006 01:42, Terence Burnard wrote:

Module  Size  Used by
wcusb  21760  0
wctdm  36512  0
wcfxo  13408  0
wcte11xp   24896  0
wct1xxp16544  0
wct4xxp97664  24
tor2   89856  0


First of all, don't load every Asterisk module under the sun.  Load the
modules for the hardware you have, and if you're using something like [EMAIL 
PROTECTED]
which loads everything, edit your /etc/modules.conf to alias the ones 
you do

NOT have to 'off' to prevent them from being loaded.


# cat /etc/zaptel.conf
span=1,0,0,esf,b8zs


That should read '1,1,0' but is otherwise great.  You want to 
synchronize to

the telco.


[channels]
context=pri_inbound
switchtype=dms100
signalling=pri_cpe
group=1
channel => 1-23


I generally add
pridialplan=unknown
priindication=outofband
overlapdial=no
resetinterval=86400

to that as well (i.e. before the "channel =>" line) to make things a little
cleaner and clearer.  Only the first line would have any effect on 
mitigating

your problem, though.


*CLI> pri show span 1
Primary D-channel: 24
Status: Provisioned, Down, Active


That's the problem: your D channel is not up.  Either your switchtype is 
wrong
(it is NOT set to the physical switch make/model on the other side, it 
is set
to the signaling system it is emulating), the telco's brought the line 
down,

or the two sides just can't see each other.  Since you're running
green-light, you're seeing each other.

You can do a very simple test by plugging a loopback plug into the span
instead of the PRI.  just take an RJ45 end and two pieces of wire.  plug 
one

wire into pins 1 and 4, and the other into 2 and 5.  Crimp it down and plug
it in.  The light on the back of the card should go green and the system
should be in the exact same state it's in now.  If you change your 
signalling
to pri_net, you should see messages on the Asterisk console complaining 
about

"I'm set to pri_net, but the other side thinks it is pri_net!".

Verify your switchtype...  The Cisco should have a setting and you 
should set
Asterisk in a similar fashion.  Failing that I would try loading the 
wct4xxp

module with the "vpmsupport=0" parameter to disable the voice processing
module just to see if that helps (i.e. possible card issue), and failing 
all
of that, I would contact Digium technical support, as the price of that 
card
included technical assistance and it is this type of problem that is a 
great

use of that support.

-A.
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Digium TDM400P vs Sangoma A200 for 2 x FXO

2006-05-01 Thread Mike Clark

Nick Chalk wrote:


Evening all.

I'm looking at building an Asterisk system for one
of the projects of the Charity where I'm the
SysAdmin.

The project has two analogue phone lines - BT
Featureline Compact, we're in the UK - that I'd
like Asterisk to handle.

My current quandary is which FXO interface to use.
I've been looking at the Digium TDM400P and
Sangoma A200, which are similar prices for two FXO
lines. Can anyone comment on the relative merits
of those two devices? Are there any other options
in the same price range?

As we're a small Charity, price is a major
consideration. I don't think we can afford the
A200's hardware echo-canceller, for instance.

Thanks for your help.

Nick.

 


Nick:

If you aren't going for the echo cancellation, then I think either card 
will do fine.We have over twenty five systems deployed in rural eastern 
North Carolina locations with six analog lines each and the majority 
work fine with TDM400s, though we have had to replace several with 
Sangoma A200 with echo cancellation to eliminate echo. We are now 
deploying only the A200 because we never know if echo will be an issue 
or if it can be "tuned" away and it is just easier for support to not 
have that worry.


Mike Clark


___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
Title: RE: [Asterisk-Users] CallerID Name problem






Do you wait before or after the answer? Do you even need the answer?



 -Original Message-
From:   Alexander Lopez [mailto:[EMAIL PROTECTED]]
Sent:   Mon May 01 14:26:49 2006
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject:    RE: [Asterisk-Users] CallerID Name problem

How are the calls coming into the PBX. PRI? If so add a Wait(1) before
your try ringing the SIP channel.


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Hall, Eric M.
> Sent: Monday, May 01, 2006 12:37 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: [Asterisk-Users] CallerID Name problem
>
>
> I'm having trouble getting callerid name to show up on my phones
(Cisco
> 7960 and a few softphones)
> When I look in the CDR database I see the name but not on any phone
when
> being called.
>
> I'm running
> Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC
>
>
> Any help would be great !
> ___
> --Bandwidth and Colocation provided by Easynews.com --
>
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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




___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] integrated voip originator, to digitize audio once and only once?

2006-05-01 Thread Tom Engleward
Bruce Reeves <[EMAIL PROTECTED]> wrote:
> I use teliax.com and exgn.net to do my initial test
> of toll free calls into
> my system.
How's your experience been with their audio quality,
and with their inbound call completion reliability?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] (Semi-OT) QoS Question FTP Living with Asterisk

2006-05-01 Thread Matt Roth

Steve Totaro wrote:

Not sure if cheesy is the right word.  Sound solution may be a better 
adjective.  Adding two NICs, one to each machine and connecting them 
directly via crossover cable on a totally separate network may be my 
best solution.  No FTP traffic would even hit the NIC or the network 
used for VoIP and everything else.


Unless there is a setting in Linux somewhere (still holding out hope)


Steve,

Part of your problem may be that you are mixing batches of leg files on 
the Asterisk server every five minutes.  Mixing the leg files is 
processor intensive and I'd be surprised if mixing them in batches 
didn't degrade your call quality.  In general, it is better to perform 
tasks such as this on a remote server.


If the problem is purely bandwidth related, the batch processing is 
probably aggravating that as well.  It is relatively simple to transfer 
the leg files as each individual call terminates.  Staggering the 
transfers of the files may provide all of the throttling you need.


I am currently administrating an Asterisk server that functions as the 
switch for an inbound call center.  On a busy day it handles over 13,000 
digital recordings in the PCM format.  This post caught my eye, because 
I use a dedicated NIC and a crossover cable to transfer them via NFS.  
From my observations, this method adds very little load to the server 
(although I am considering NAPI and other methods to throttle the number 
of interrupts generated by the NICs).  The entire setup is documented here:




I've made some small alterations in our production environment since the 
writing of that post.  The most important one concerns the use of the 
"MONITOR_EXEC" variables in the dialplan to trigger the transferring of 
the leg files.  That method turned out to be unreliable.  Hijacking 
soxmix, as documented in the following post, handles this task reliably:




See "show application monitor" in the Asterisk CLI for details on 
getting your custom "soxmix" script invoked at the end of each call.


As I mentioned, offloading tasks such as mixing the leg files is a *very 
good idea*.  I have a set of four scripts on the digital recording 
server that take care of mixing the leg files, indexing them by date and 
time, exporting a list of recordings to our mainframe, archiving the 
recordings, and deleting old recordings to free up disk space.  I'd be 
happy to help you offload some of these tasks from your Asterisk server 
if you are interested.


I hope this was helpful

Matthew Roth
InterMedia Marketing Solutions
Software Engineer and Systems Developer
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Digium TDM400P vs Sangoma A200 for 2 x FXO

2006-05-01 Thread Nick Chalk
Evening all.

I'm looking at building an Asterisk system for one
of the projects of the Charity where I'm the
SysAdmin.

The project has two analogue phone lines - BT
Featureline Compact, we're in the UK - that I'd
like Asterisk to handle.

My current quandary is which FXO interface to use.
I've been looking at the Digium TDM400P and
Sangoma A200, which are similar prices for two FXO
lines. Can anyone comment on the relative merits
of those two devices? Are there any other options
in the same price range?

As we're a small Charity, price is a major
consideration. I don't think we can afford the
A200's hardware echo-canceller, for instance.

Thanks for your help.

Nick.

-- 
Nick Chalk . once a Radio Designer
 Confidence is failing to understand the problem.

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Remco Barende

On Mon, 1 May 2006, Kerry Garrison wrote:


> There are still some basic things missing (for example if you
don't use
> voicemail it is not possible to set a destination for the call if
not
> answered, you have to create a ring group for each extension to
work
> around it, this is a major issue)

Remco - take a look at the Follow Me module I added. It is basically
a presonal ring group for each extension. If you want to do the above, just
define the Follow-Me settings to ring your own extension (or more if you
want) and then choose any destination you want. It effectively does 'creat a
ring group for each extensions' that wants one, but it does it in such a way
as to be separate and work side by side with normal ringgroups, and there is
a direct link between it and the extension (or user) so that navigation is
very easy as you can bounce back and forth with a single mouse click.


Sounds very interesting, and looks like a good solution to the problem.

I believe that many of the "shortcomings" of FreePBX are caused by lack of 
documentation, i.e. you do not immediately see how to solve a certain 
problem.


Thanks to all the develeopers for all the work they are putting 
in FreePBX!


I'll have a look at the new functions, thanks!
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Alexander Lopez








Did your Telco tell you what switch they
are using?

 

Also change your timing settings in the /etc/zaptel.conf
file to have this PRI do primary timing.

 

 











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 2:59 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P



 

Thank you for the reply Alexandar.

 

After I restarted my dev machine I
recieved these messages from asterisk:

 

chan_zap.c:2290 pri_find_dchan: No
D-channels available!  Using Primary channel 24 as D-channel anyway!



chan_zap.c:8202 pri_dchannel: PRI got
event: No more alarm (5) on Primary D-channel of span 1



May  1 10:23:27 WARNING[3882]:
chan_zap.c:2290 pri_find_dchan: No D-channels available!  Using Primary
channel 24 as D-channel anyway!

 

So you are right on the D-Chan.  If
my telco says everything is ok, what should I look at next?

 

AFAIK this PRI was in working condition
before I moved it to the asterisk test machine.

 

Thanks!

 

-Dan

 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander Lopez
Sent: Monday, May 01, 2006 11:53
AM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P

Looks like your D-channel is down.

 

Ztcfg reports all is ok, b/c as far as iut
is concerned, it is talking to your card just fine. LibPri handles the PRI
implemetaton.

 

Since you are able to see the pri commands
from the CLI, Isdn supprt is linked into your asterisk core.

 

Call your telco and ask if they have your
D-channel in a loop.

 

 

 











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 2:48 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P



 

Some more info to my problem:

 

ipt-dev01*CLI> zap show status

Description 
Alarms IRQ   
bpviol CRC4

T2XXP (PCI) Card 0 Span
1   
OK
0 
0  0



 



ipt-dev01*CLI> pri show span 1

Primary D-channel: 24

Status: Provisioned, Down, Active

Switchtype: National ISDN

Type: CPE

Window Length: 0/7

Sentrej: 0

SolicitFbit: 0

Retrans: 0

Busy: 0

Overlap Dial: 0

T200 Timer: 1000

T203 Timer: 1

T305 Timer: 3

T308 Timer: 4000

T313 Timer: 4000

N200 Counter: 3



 



Any ideas? ZTCFG looks good.

 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 10:41
AM
To: asterisk-users@lists.digium.com
Subject: [Asterisk-Users] Problems
with zaptel and TE210P



Hello,





I'm just starting out with asterisk and I'm playing around
with the system.  Currently I have a Digium TE210P connected to a PRI on
the Asterisk server.  I have a SIP soft phone on my laptop for testing
that is working fine.  When I try to place a call from my soft phone I get
this from Asterisk:





 





May  1 09:11:41 NOTICE[20098]: app_dial.c:1029
dial_exec_full: Unable to create channel of type 'Zap' (cause 34 - Circuit/channel
congestion)





  == Everyone is busy/congested at this time (1:0/1/0)





  == Auto fallthrough, channel 'SIP/test-3a26' status
is 'CONGESTION'





 





 





#/etc/zaptel.conf:





span=1,0,0,esf,b8zs





bchan=1-23





dchan=24





 





#/etc/asterisk/zapata.conf:





[channels]





switchtype=national





context=default





signalling=pri_cpe





group=1





channel => 1-23





 





#/etc/asterisk/extensions.conf:





[general]





static=yes





writeprotect=no





autofallthrough=yes





 





[default]





exten => 123,1,Answer()





exten => 123,2,Playback(hello-world)





exten => 123,3,Hangup()





 





exten => _9NXX,1,Dial(Zap/g1)





 





 





Any ideas?  Thank you in advance, your help is greatly
appreciated.





 





-Dan





 





 












___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Alexander Lopez








His PRI span is showing down, If you
forget to add the ${EXTEN} as you said it would show as connecting and he _should_ get an intercept from the telco.

 

 











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Colin Anderson
Sent: Monday, May 01, 2006 2:53 PM
To: 'Asterisk
 Users Mailing List - Non-Commercial Discussion'
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P



 



Just a stab:





 





exten =>
_9NXX,1,Dial(ZAP/g1/${EXTEN})





 





Note uppercase ZAP and explicitly
specifying the dialled number. 





 





hth





-Original Message-
From: Dan Brummer
[mailto:[EMAIL PROTECTED]
Sent: Monday, May 01, 2006 12:48 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P

Some more info to my problem:

 

ipt-dev01*CLI> zap show status

Description 
Alarms IRQ    bpviol
CRC4

T2XXP (PCI) Card 0 Span
1   
OK
0 
0  0



 



ipt-dev01*CLI> pri show span 1

Primary D-channel: 24

Status: Provisioned, Down, Active

Switchtype: National ISDN

Type: CPE

Window Length: 0/7

Sentrej: 0

SolicitFbit: 0

Retrans: 0

Busy: 0

Overlap Dial: 0

T200 Timer: 1000

T203 Timer: 1

T305 Timer: 3

T308 Timer: 4000

T313 Timer: 4000

N200 Counter: 3



 



Any ideas? ZTCFG looks good.

 







From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 10:41
AM
To:
asterisk-users@lists.digium.com
Subject: [Asterisk-Users] Problems
with zaptel and TE210P



Hello,





I'm just starting out with asterisk and I'm playing around
with the system.  Currently I have a Digium TE210P connected to a PRI on
the Asterisk server.  I have a SIP soft phone on my laptop for testing
that is working fine.  When I try to place a call from my soft phone I get
this from Asterisk:





 





May  1 09:11:41 NOTICE[20098]: app_dial.c:1029
dial_exec_full: Unable to create channel of type 'Zap' (cause 34 -
Circuit/channel congestion)





  == Everyone is busy/congested at this time (1:0/1/0)





  == Auto fallthrough, channel 'SIP/test-3a26' status
is 'CONGESTION'





 





 





#/etc/zaptel.conf:





span=1,0,0,esf,b8zs





bchan=1-23





dchan=24





 





#/etc/asterisk/zapata.conf:





[channels]





switchtype=national





context=default





signalling=pri_cpe





group=1





channel => 1-23





 





#/etc/asterisk/extensions.conf:





[general]





static=yes





writeprotect=no





autofallthrough=yes





 





[default]





exten => 123,1,Answer()





exten => 123,2,Playback(hello-world)





exten => 123,3,Hangup()





 





exten => _9NXX,1,Dial(Zap/g1)





 





 





Any ideas?  Thank you in advance, your help is greatly
appreciated.





 





-Dan





 





 












___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Is there a way to monitor DTMF tones in a channel?

2006-05-01 Thread C F

On 5/1/06, Obelix <[EMAIL PROTECTED]> wrote:


Is there a way to monitor a call for DTMF tones an trigger some actions based on
those DTMF tones?

I am interested in any arbitrary DTMF tones, not those related to the usual PBX
functions like call transfer, music on hold, call diversion etc


take a look at features.conf
what do you mean by "arbitrary", beyond the 16 DTMF being used? if so
you will have to edit the code for the others and it should work.




/Obelix
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread James Texter
Title: Re: [Asterisk-Users] Problems with zaptel and TE210P



Shouldn’t your zapata.conf be 

span=1,1,0,esf,b8zs

As it stands, you are not taking timing from the PRI.  Changing the second digit of the span entry to 1 will tell Asterisk to use that line as the clock master.

HTH,

James


On 5/1/06 1:58 PM, "Dan Brummer" <[EMAIL PROTECTED]> wrote:

Thank you for the reply Alexandar.
 
After I restarted my dev machine I recieved these messages from asterisk:
 
chan_zap.c:2290 pri_find_dchan: No D-channels available!  Using Primary channel 24 as D-channel anyway!
chan_zap.c:8202 pri_dchannel: PRI got event: No more alarm (5) on Primary D-channel of span 1
May  1 10:23:27 WARNING[3882]: chan_zap.c:2290 pri_find_dchan: No D-channels available!  Using Primary channel 24 as D-channel anyway!
 
So you are right on the D-Chan.  If my telco says everything is ok, what should I look at next?
 
AFAIK this PRI was in working condition before I moved it to the asterisk test machine.
 
Thanks!
 
-Dan

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Lopez
Sent: Monday, May 01, 2006 11:53 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] Problems with zaptel and TE210P

Looks like your D-channel is down.
 
Ztcfg reports all is ok, b/c as far as iut is concerned, it is talking to your card just fine. LibPri handles the PRI implemetaton.
 
Since you are able to see the pri commands from the CLI, Isdn supprt is linked into your asterisk core.
 
Call your telco and ask if they have your D-channel in a loop.
 
 
 





From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 2:48 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] Problems with zaptel and TE210P
 
Some more info to my problem:
 
ipt-dev01*CLI> zap show status
Description  Alarms IRQ    bpviol CRC4
T2XXP (PCI) Card 0 Span 1    OK 0  0  0

 
ipt-dev01*CLI> pri show span 1
Primary D-channel: 24
Status: Provisioned, Down, Active
Switchtype: National ISDN
Type: CPE
Window Length: 0/7
Sentrej: 0
SolicitFbit: 0
Retrans: 0
Busy: 0
Overlap Dial: 0
T200 Timer: 1000
T203 Timer: 1
T305 Timer: 3
T308 Timer: 4000
T313 Timer: 4000
N200 Counter: 3

 
Any ideas? ZTCFG looks good.
 





From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 10:41 AM
To: asterisk-users@lists.digium.com
Subject: [Asterisk-Users] Problems with zaptel and TE210P

Hello,

I'm just starting out with asterisk and I'm playing around with the system.  Currently I have a Digium TE210P connected to a PRI on the Asterisk server.  I have a SIP soft phone on my laptop for testing that is working fine.  When I try to place a call from my soft phone I get this from Asterisk:

 

May  1 09:11:41 NOTICE[20098]: app_dial.c:1029 dial_exec_full: Unable to create channel of type 'Zap' (cause 34 - Circuit/channel congestion)

  == Everyone is busy/congested at this time (1:0/1/0)

  == Auto fallthrough, channel 'SIP/test-3a26' status is 'CONGESTION'

 

 

#/etc/zaptel.conf:

span=1,0,0,esf,b8zs

bchan=1-23

dchan=24

 

#/etc/asterisk/zapata.conf:

[channels]

switchtype=national

context=default

signalling=pri_cpe

group=1

channel => 1-23

 

#/etc/asterisk/extensions.conf:

[general]

static=yes

writeprotect=no

autofallthrough=yes

 

[default]

exten => 123,1,Answer()

exten => 123,2,Playback(hello-world)

exten => 123,3,Hangup()

 

exten => _9NXX,1,Dial(Zap/g1)

 

 

Any ideas?  Thank you in advance, your help is greatly appreciated.

 

-Dan

 

 

___
--Bandwidth and Colocation provided by Easynews.com --

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





___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Dan Brummer



Thank you for the reply Alexandar.
 
After I restarted my dev machine I recieved these messages 
from asterisk:
 
chan_zap.c:2290 pri_find_dchan: No D-channels 
available!  Using Primary channel 24 as D-channel 
anyway!
chan_zap.c:8202 pri_dchannel: PRI got event: No more alarm (5) on Primary 
D-channel of span 1
May  1 10:23:27 WARNING[3882]: chan_zap.c:2290 
pri_find_dchan: No D-channels available!  Using Primary channel 24 as 
D-channel anyway!
 
So you are right on the D-Chan.  If my telco says 
everything is ok, what should I look at next?
 
AFAIK this PRI was in working condition before I moved it 
to the asterisk test machine.
 
Thanks!
 
-Dan


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander 
LopezSent: Monday, May 01, 2006 11:53 AMTo: Asterisk Users 
Mailing List - Non-Commercial DiscussionSubject: RE: [Asterisk-Users] 
Problems with zaptel and TE210P


Looks like your 
D-channel is down.
 
Ztcfg reports all is 
ok, b/c as far as iut is concerned, it is talking to your card just fine. LibPri 
handles the PRI implemetaton.
 
Since you are able to 
see the pri commands from the CLI, Isdn supprt is linked into your asterisk 
core.
 
Call your telco and ask 
if they have your D-channel in a loop.
 
 
 





From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Dan BrummerSent: Monday, May 01, 2006 2:48 
PMTo: Asterisk Users Mailing List - Non-Commercial 
DiscussionSubject: RE: [Asterisk-Users] Problems with 
zaptel and TE210P
 
Some more info to my 
problem:
 
ipt-dev01*CLI> zap 
show status
Description  
Alarms IRQ    
bpviol CRC4
T2XXP (PCI) Card 0 Span 
1    
OK 
0  
0  
0

 
ipt-dev01*CLI> pri 
show span 1
Primary D-channel: 
24
Status: 
Provisioned, Down, 
Active
Switchtype: National 
ISDN
Type: 
CPE
Window Length: 
0/7
Sentrej: 
0
SolicitFbit: 
0
Retrans: 
0
Busy: 
0
Overlap Dial: 
0
T200 Timer: 
1000
T203 Timer: 
1
T305 Timer: 
3
T308 Timer: 
4000
T313 Timer: 
4000
N200 Counter: 
3

 
Any ideas? ZTCFG looks 
good.
 



From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Dan BrummerSent: Monday, May 01, 2006 10:41 
AMTo: 
asterisk-users@lists.digium.comSubject: [Asterisk-Users] Problems with 
zaptel and TE210P

Hello,

I'm just starting out with asterisk 
and I'm playing around with the system.  Currently I have a Digium TE210P 
connected to a PRI on the Asterisk server.  I have a SIP soft phone on my 
laptop for testing that is working fine.  When I try to place a call from 
my soft phone I get this from Asterisk:

 

May  1 09:11:41 NOTICE[20098]: 
app_dial.c:1029 dial_exec_full: Unable to create channel of type 'Zap' (cause 34 
- Circuit/channel congestion)

  == Everyone is busy/congested 
at this time (1:0/1/0)

  == Auto fallthrough, channel 
'SIP/test-3a26' status is 'CONGESTION'

 

 

#/etc/zaptel.conf:

span=1,0,0,esf,b8zs

bchan=1-23

dchan=24

 

#/etc/asterisk/zapata.conf:

[channels]

switchtype=national

context=default

signalling=pri_cpe

group=1

channel => 
1-23

 

#/etc/asterisk/extensions.conf:

[general]

static=yes

writeprotect=no

autofallthrough=yes

 

[default]

exten => 
123,1,Answer()

exten => 
123,2,Playback(hello-world)

exten => 
123,3,Hangup()

 

exten => 
_9NXX,1,Dial(Zap/g1)

 

 

Any ideas?  Thank you in 
advance, your help is greatly appreciated.

 

-Dan

 

 
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Colin Anderson



Just a 
stab:
 
exten 
=> _9NXX,1,Dial(ZAP/g1/${EXTEN})
 
Note 
uppercase ZAP and explicitly specifying the dialled number. 
 
hth

  -Original Message-From: Dan Brummer 
  [mailto:[EMAIL PROTECTED]Sent: Monday, May 01, 2006 12:48 
  PMTo: Asterisk Users Mailing List - Non-Commercial 
  DiscussionSubject: RE: [Asterisk-Users] Problems with zaptel and 
  TE210P
  Some more info to my problem:
   
  ipt-dev01*CLI> zap show status
  Description  
  Alarms IRQ    
  bpviol CRC4
  T2XXP (PCI) Card 0 Span 
  1    
  OK 
  0  
  0  0
   
  ipt-dev01*CLI> pri show span 1
  Primary D-channel: 24
  Status: Provisioned, Down, 
  Active
  Switchtype: National ISDN
  Type: CPE
  Window Length: 0/7
  Sentrej: 0
  SolicitFbit: 0
  Retrans: 0
  Busy: 0
  Overlap Dial: 0
  T200 Timer: 1000
  T203 Timer: 1
  T305 Timer: 3
  T308 Timer: 4000
  T313 Timer: 4000
  N200 Counter: 3
   
  Any ideas? ZTCFG looks good.
  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Dan 
  BrummerSent: Monday, May 01, 2006 10:41 AMTo: 
  asterisk-users@lists.digium.comSubject: [Asterisk-Users] Problems 
  with zaptel and TE210P
  
  Hello,
  I'm just starting 
  out with asterisk and I'm playing around with the system.  Currently I 
  have a Digium TE210P connected to a PRI on the Asterisk server.  I have a 
  SIP soft phone on my laptop for testing that is working fine.  When I try 
  to place a call from my soft phone I get this from 
  Asterisk:
   
  May  1 
  09:11:41 NOTICE[20098]: app_dial.c:1029 dial_exec_full: Unable to create 
  channel of type 'Zap' (cause 34 - Circuit/channel 
  congestion)
    == Everyone 
  is busy/congested at this time (1:0/1/0)
    == Auto 
  fallthrough, channel 'SIP/test-3a26' status is 
'CONGESTION'
   
   
  #/etc/zaptel.conf:
  span=1,0,0,esf,b8zs
  bchan=1-23
  dchan=24
   
  #/etc/asterisk/zapata.conf:
  [channels]
  switchtype=national
  context=default
  signalling=pri_cpe
  group=1
  channel => 
  1-23
   
  #/etc/asterisk/extensions.conf:
  [general]
  static=yes
  writeprotect=no
  autofallthrough=yes
   
  [default]
  exten => 
  123,1,Answer()
  exten => 
  123,2,Playback(hello-world)
  exten => 
  123,3,Hangup()
   
  exten => 
  _9NXX,1,Dial(Zap/g1)
   
   
  Any ideas?  
  Thank you in advance, your help is greatly appreciated.
   
  -Dan
   
   
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Alexander Lopez








Looks like your D-channel is down.

 

Ztcfg reports all is ok, b/c as far as iut
is concerned, it is talking to your card just fine. LibPri handles the PRI
implemetaton.

 

Since you are able to see the pri commands
from the CLI, Isdn supprt is linked into your asterisk core.

 

Call your telco and ask if they have your
D-channel in a loop.

 

 

 











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 2:48 PM
To: Asterisk
 Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users]
Problems with zaptel and TE210P



 

Some more info to my problem:

 

ipt-dev01*CLI> zap show status

Description 
Alarms IRQ   
bpviol CRC4

T2XXP (PCI) Card 0 Span
1   
OK
0 
0  0



 



ipt-dev01*CLI> pri show span 1

Primary D-channel: 24

Status: Provisioned, Down, Active

Switchtype: National ISDN

Type: CPE

Window Length: 0/7

Sentrej: 0

SolicitFbit: 0

Retrans: 0

Busy: 0

Overlap Dial: 0

T200 Timer: 1000

T203 Timer: 1

T305 Timer: 3

T308 Timer: 4000

T313 Timer: 4000

N200 Counter: 3



 



Any ideas? ZTCFG looks good.

 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dan Brummer
Sent: Monday, May 01, 2006 10:41
AM
To:
asterisk-users@lists.digium.com
Subject: [Asterisk-Users] Problems
with zaptel and TE210P



Hello,





I'm just starting out with asterisk and I'm playing around
with the system.  Currently I have a Digium TE210P connected to a PRI on
the Asterisk server.  I have a SIP soft phone on my laptop for testing that
is working fine.  When I try to place a call from my soft phone I get this
from Asterisk:





 





May  1 09:11:41 NOTICE[20098]: app_dial.c:1029
dial_exec_full: Unable to create channel of type 'Zap' (cause 34 -
Circuit/channel congestion)





  == Everyone is busy/congested at this time (1:0/1/0)





  == Auto fallthrough, channel 'SIP/test-3a26' status
is 'CONGESTION'





 





 





#/etc/zaptel.conf:





span=1,0,0,esf,b8zs





bchan=1-23





dchan=24





 





#/etc/asterisk/zapata.conf:





[channels]





switchtype=national





context=default





signalling=pri_cpe





group=1





channel => 1-23





 





#/etc/asterisk/extensions.conf:





[general]





static=yes





writeprotect=no





autofallthrough=yes





 





[default]





exten => 123,1,Answer()





exten => 123,2,Playback(hello-world)





exten => 123,3,Hangup()





 





exten => _9NXX,1,Dial(Zap/g1)





 





 





Any ideas?  Thank you in advance, your help is greatly
appreciated.





 





-Dan





 





 










___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Kerry Garrison
> There are still some basic things missing (for example if you
don't use 
> voicemail it is not possible to set a destination for the call if
not 
> answered, you have to create a ring group for each extension to
work 
> around it, this is a major issue)

Remco - take a look at the Follow Me module I added. It is basically
a presonal ring group for each extension. If you want to do the above, just
define the Follow-Me settings to ring your own extension (or more if you
want) and then choose any destination you want. It effectively does 'creat a
ring group for each extensions' that wants one, but it does it in such a way
as to be separate and work side by side with normal ringgroups, and there is
a direct link between it and the extension (or user) so that navigation is
very easy as you can bounce back and forth with a single mouse click.
 

Many people have talked about limitations of freePBX and how you cant do
custom things. Both Phillip and I attacked the follow-me function this week
with his using personal ring groups and mine using personal call queues (see
article at http://voipspeak.net) to simulate the functionaly of the locate
function from CallManager. Both solutions used only freePBX functionality to
acocmplish two relativly complex tasks that many people have been struggling
to create with just the config files. That speaks to the flexibility of
using the system. Sure there are bound to be limitations that may prevent
some type of functionality, no system is perfect, but it does cover far more
than just a few small businesses.

Kerry Garrison
Director of Technical Services
Tech Data Pros - Orange County's Mobile IT Service Provider
(949) 502-7819 x200 - [EMAIL PROTECTED]
http://www.techdatapros.com



___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Dan Brummer



Some more info to my problem:
 
ipt-dev01*CLI> zap show status
Description  
Alarms IRQ    
bpviol CRC4
T2XXP (PCI) Card 0 Span 
1    
OK 
0  
0  0
 
ipt-dev01*CLI> pri show span 1
Primary D-channel: 24
Status: Provisioned, Down, 
Active
Switchtype: National ISDN
Type: CPE
Window Length: 0/7
Sentrej: 0
SolicitFbit: 0
Retrans: 0
Busy: 0
Overlap Dial: 0
T200 Timer: 1000
T203 Timer: 1
T305 Timer: 3
T308 Timer: 4000
T313 Timer: 4000
N200 Counter: 3
 
Any ideas? ZTCFG looks good.


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Dan 
BrummerSent: Monday, May 01, 2006 10:41 AMTo: 
asterisk-users@lists.digium.comSubject: [Asterisk-Users] Problems 
with zaptel and TE210P

Hello,
I'm just starting 
out with asterisk and I'm playing around with the system.  Currently I have 
a Digium TE210P connected to a PRI on the Asterisk server.  I have a SIP 
soft phone on my laptop for testing that is working fine.  When I try to 
place a call from my soft phone I get this from Asterisk:
 
May  1 09:11:41 
NOTICE[20098]: app_dial.c:1029 dial_exec_full: Unable to create channel of type 
'Zap' (cause 34 - Circuit/channel congestion)
  == Everyone 
is busy/congested at this time (1:0/1/0)
  == Auto 
fallthrough, channel 'SIP/test-3a26' status is 'CONGESTION'
 
 
#/etc/zaptel.conf:
span=1,0,0,esf,b8zs
bchan=1-23
dchan=24
 
#/etc/asterisk/zapata.conf:
[channels]
switchtype=national
context=default
signalling=pri_cpe
group=1
channel => 
1-23
 
#/etc/asterisk/extensions.conf:
[general]
static=yes
writeprotect=no
autofallthrough=yes
 
[default]
exten => 
123,1,Answer()
exten => 
123,2,Playback(hello-world)
exten => 
123,3,Hangup()
 
exten => 
_9NXX,1,Dial(Zap/g1)
 
 
Any ideas?  
Thank you in advance, your help is greatly appreciated.
 
-Dan
 
 
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Doug Lytle wrote:

  

What do you see at the console when someone presses 4 from voice mail?



-- Executing VoiceMailMain("SIP/502-ac3f", "s502") in new stack
-- Playing 'vm-youhave' (language 'en')
-- Playing 'vm-no' (language 'en')
-- Playing 'vm-messages' (language 'en')
-- Playing 'vm-opts' (language 'en')
-- Playing 'vm-tomakecall' (language 'en')
-- Playing 'vm-starmain' (language 'en')


  

Jon,

I don't know.  I went into my voicemail.conf and put a semicolon in 
front of that option,


Re-attached to the Asterisk console and did a reload and the option was 
no longer available from Advanced Options.


I'm running 1.2.7.1

Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Philippe Lindheimer
Rich Adamson wrote:     > Let's see if I can summarize various recent postings relative to the > broader topic of whether FreePBX/AAH is production-ready.     It's not proper to put FreePBX/AAH in the same breath. AAH puts FreePBX ontop of their build, along with a bunch of other software. Although AAH gets 'most of the credit,' the 'value' that most users are exposed to is FreePBX (or AMP). Not to trivialize the 'integration' work that AAH does. However - I say don't put them together because all too often I have seen AAH drop things on top that break FreePBX. If you want a pure system, build your own ISO and drop FreePBX on top of it.     Rich Adamson wrote:     > Seems the general consensus is that AAH and/or FreePBX is considered > production ready if the functionality embedded in AMP (primarily) > happens to fit the specific small
 business requirements...     and "Craig" wrote:     > Too many limitations in terms of having a flexible diaplan.  What would be nice> though is if they were to produce a 'lite' version that gave a gui interface> to add/change/move things - sip.conf, voicemail.conf, meetme.conf but> staying well away from extensions.conf  What one considers 'prodcution ready' is a very subjective evaluation. However, I will say that I have yet to find something I can't do on a system that FreePBX has. What I mean by that is that I can modify any macro or part of the core dial plan I don't like by overriding it in the _custom file as well as add any custom dialplans or other configuration that I need. I'm sure there is something out there I will run into where this doesn't work - but I haven't hit it yet. (And if I do, I'll do the needed changes and submit it back to FreePBX). 
    I think it is fair to say that if you really understand Asterisk and then spend a small amount of time understanding what FreePBX is doing, you can easily accomplish the best of both worlds. If you don't have that level of understanding, you may be thankful for those 'magic scripts' that are making a working system behind the scene from the FreePBX GUI.     If you are not interested in the fundamental functionality and 'fat/rich' dailplan, then you are better off using something else though.     Remco Barende wrote:     > There are still some basic things missing (for example if you don't use > voicemail it is not possible to set a destination for the call if not > answered, you have to create a ring group for each extension to work > around it, this is a major issue)  Remco - take a look at the Follow Me module I added. It is
 basically a presonal ring group for each extension. If you want to do the above, just define the Follow-Me settings to ring your own extension (or more if you want) and then choose any destination you want. It effectively does 'creat a ring group for each extensions' that wants one, but it does it in such a way as to be separate and work side by side with normal ringgroups, and there is a direct link between it and the extension (or user) so that navigation is very easy as you can bounce back and forth with a single mouse click.     p
		Blab-away for as little as 1¢/min. Make  PC-to-Phone Calls using Yahoo! Messenger with Voice.___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Alexander Lopez
How are the calls coming into the PBX. PRI? If so add a Wait(1) before
your try ringing the SIP channel.


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Hall, Eric M.
> Sent: Monday, May 01, 2006 12:37 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: [Asterisk-Users] CallerID Name problem
> 
> 
> I'm having trouble getting callerid name to show up on my phones
(Cisco
> 7960 and a few softphones)
> When I look in the CDR database I see the name but not on any phone
when
> being called.
> 
> I'm running
> Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC
> 
> 
> Any help would be great !
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
Using SIP and SCCP. The softphone uses SIP.

Doing a debug  I see no name being sent. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of kevin ling
Sent: Monday, May 01, 2006 2:06 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: RE: [Asterisk-Users] CallerID Name problem

Hi,

What protocol for your 7960 phone? SCCP or SIP? You can turn on the SIP
debug on CLI to make sure the callerid and name pass to your phone. 

Kevin 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hall, Eric
M.
Sent: Tuesday, May 02, 2006 12:37 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] CallerID Name problem

 
I'm having trouble getting callerid name to show up on my phones (Cisco
7960 and a few softphones) When I look in the CDR database I see the
name but not on any phone when being called.

I'm running
Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC 


Any help would be great !



___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] CallerID Name problem

2006-05-01 Thread kevin ling
Hi,

What protocol for your 7960 phone? SCCP or SIP? You can turn on the SIP
debug on CLI to make sure the callerid and name pass to your phone. 

Kevin 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hall, Eric M.
Sent: Tuesday, May 02, 2006 12:37 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] CallerID Name problem

 
I'm having trouble getting callerid name to show up on my phones (Cisco 7960
and a few softphones) When I look in the CDR database I see the name but not
on any phone when being called.

I'm running
Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC 


Any help would be great !



___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Listening on one IP and binding to other IP - isthis possible ?

2006-05-01 Thread Bartosz Jozwiak




Hello

Im new to Asterisk and generally to IPPBX.

Quick specification of my SOHO system:
1. 2 Interfaces: WAN and LAN
4. 5 VoIP phones configured with SIP attached to LAN
5. 1 external SIP line configured as "gateway" for VoIP phones to allow
outbound calls.

What I want is to set secure Asterisk platform. I would like Asterisk to
allow connections only from LAN but I would also like to use 1 SIP
account which requires registration on my provider sip server which
needs Internet connection.

When I set sip.conf "bindaddr" option to my LAN addres I was sure that
Asterisk will use WAN interface for Internet connections but i was wrong
:|.

When I set "bindaddr" back to "0.0.0.0" then all is ok except that
Asterisk allow to connect and register SIP accounts from WAN.

My general question is:
How to make Asterisk listen only on LAN interface and use WAN interface
for Internet connections ?

I could set NAT from LAN => WAN but this would be ugly, so I prefer to
handle this problem using Asterisk configuration.



To solve it quickly... set up some kind of firewall with iptables and 
allow/disallow sip access from certain IP addresses.


Bartosz 


___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Cepstral , options to read the contents of a file

2006-05-01 Thread kevin ling
Hi,

You can call an agi script to convert the text file to wave format.

Example:
http://www.voip-info.org/wiki/view/swift.agi

Kevin


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Joseph
Sent: Monday, May 01, 2006 7:08 PM
To: Asterisk Users
Subject: [Asterisk-Users] Cepstral , options to read the contents of a file

Hi 
I had installed Cepstral , and it is working in Asterisk ,  it workfine
for exten => s,1,Answer exten => s,2,Wait(1) exten => s,3,Cepstral( This is
Just a test ) exten => s,4,Cepstral(Hope u are getting this voices)

but instead of the text contents  for Cepstral , can I use the file name
location , where  it can read the file 
  Thanks 
  Joseph John 




___
24 FIFA World Cup tickets to be won with Yahoo! Mail
http://uk.mail.yahoo.com ___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Listening on one IP and binding to other IP - is this possible ?

2006-05-01 Thread Lukasz Wojciechowski

Hello

Im new to Asterisk and generally to IPPBX.

Quick specification of my SOHO system:
1. 2 Interfaces: WAN and LAN
4. 5 VoIP phones configured with SIP attached to LAN
5. 1 external SIP line configured as "gateway" for VoIP phones to allow
outbound calls.

What I want is to set secure Asterisk platform. I would like Asterisk to
allow connections only from LAN but I would also like to use 1 SIP
account which requires registration on my provider sip server which
needs Internet connection.

When I set sip.conf "bindaddr" option to my LAN addres I was sure that
Asterisk will use WAN interface for Internet connections but i was wrong
:|.

When I set "bindaddr" back to "0.0.0.0" then all is ok except that
Asterisk allow to connect and register SIP accounts from WAN.

My general question is:
How to make Asterisk listen only on LAN interface and use WAN interface
for Internet connections ?

I could set NAT from LAN => WAN but this would be ugly, so I prefer to
handle this problem using Asterisk configuration.

Thaks in advance for any help

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer


Doug Lytle wrote:

> What do you see at the console when someone presses 4 from voice mail?

-- Executing VoiceMailMain("SIP/502-ac3f", "s502") in new stack
-- Playing 'vm-youhave' (language 'en')
-- Playing 'vm-no' (language 'en')
-- Playing 'vm-messages' (language 'en')
-- Playing 'vm-opts' (language 'en')
-- Playing 'vm-tomakecall' (language 'en')
-- Playing 'vm-starmain' (language 'en')


-- 
Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Problems with zaptel and TE210P

2006-05-01 Thread Dan Brummer



Hello,
I'm just starting 
out with asterisk and I'm playing around with the system.  Currently I have 
a Digium TE210P connected to a PRI on the Asterisk server.  I have a SIP 
soft phone on my laptop for testing that is working fine.  When I try to 
place a call from my soft phone I get this from Asterisk:
 
May  1 09:11:41 
NOTICE[20098]: app_dial.c:1029 dial_exec_full: Unable to create channel of type 
'Zap' (cause 34 - Circuit/channel congestion)
  == Everyone 
is busy/congested at this time (1:0/1/0)
  == Auto 
fallthrough, channel 'SIP/test-3a26' status is 'CONGESTION'
 
 
#/etc/zaptel.conf:
span=1,0,0,esf,b8zs
bchan=1-23
dchan=24
 
#/etc/asterisk/zapata.conf:
[channels]
switchtype=national
context=default
signalling=pri_cpe
group=1
channel => 
1-23
 
#/etc/asterisk/extensions.conf:
[general]
static=yes
writeprotect=no
autofallthrough=yes
 
[default]
exten => 
123,1,Answer()
exten => 
123,2,Playback(hello-world)
exten => 
123,3,Hangup()
 
exten => 
_9NXX,1,Dial(Zap/g1)
 
 
Any ideas?  
Thank you in advance, your help is greatly appreciated.
 
-Dan
 
 
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] auto-dail for ZAP channel, the application gets executed before the call attended

2006-05-01 Thread Michael Silveus
I'm still trying to accomplish the same thing and a solution might come from
Newman Telecom but I'm still waiting to see. Note: I have no affiliation
with Newman Telecom but they're application code appears to be the closest
to what I'm looking for.

The problem is because asterisk needs a way of emulating answer supervision
on the FXO circuit, which it does not currently have. If you tested your
callout on a local extension or VOIP it works because it traps events
internally for all extensions. But once you do a handoff to an outside line
that's the end of asterisk knowledge base until someone out there creates an
addon patch to do answer supervision for those outside lines. The problem is
that world wide there is no standard signaling tones for ringing, busy, fax,
answering machines, etc. The indications file does a great job of defining
the basics but let's say you're in the US so * is defined for US but if you
are calling internationally the ring back tones you receive will vary
greatly.

Mike

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Joseph
Sent: Monday, May 01, 2006 9:18 AM
To: Asterisk Users
Subject: [Asterisk-Users] auto-dail for ZAP channel,the application gets
executed before the call attended 



Hi All 
   when I try to use auto-dial to connect to
outside phone , my applications get executed before
the caller attend the calls , this happens only when I
call outside no , ie when I use 
Channel: ZAP/1/050745 in my sample.call file , if 
I use Channel:SIP/326 ,  it works  fine 
  my "sample.call" file contains 
Channel: ZAP/1/050745
Callerid: Asterisk
MaxRetries: 2
RetryTime: 10
WaitTime: 60
Context: outboundmsg1
Extension: s
Priority: 1

and my "extensions.conf" file  contains
[outboundmsg1]
exten => s,1,DigitTimeout,5
exten => s,2,ResponseTimeout,30   
exten => s,3,Answer
exten => s,4,Wait(1)
exten => s,5,Cepstral(Hi ,, Hope u are getting this
voices, It is text to Voice  conversation , did u hear
it  )  
exten => 1,1,Goto(s,5)   ; replay message
exten => 2,1,Goto(msgack,s,1) ; acknowledge message
exten => t,1,Playback(vm-goodbye)
exten => t,2,Hangup

  Guidance requested , to know the
reason , why the  "Ceptral " application is executed ,
before the call is attended when I user ZAP channel .
But  for  SIP channel (only SIP internal call , I made
) it is working fine 
Thanks 
Joseph John 



 





___ 
Win tickets to the 2006 FIFA World Cup Germany with Yahoo! Messenger.
http://advision.webevents.yahoo.com/fifaworldcup_uk/
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Doug Lytle wrote:

  

Let's see that section of your voicemail.conf



  

What do you see at the console when someone presses 4 from voice mail?

Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] auto-dail for ZAP channel, the application gets executed before the call attended

2006-05-01 Thread Moises Silva

The problem is that "Answer"  for Zap channels, means that the FXO
card has accepted the call and is in process of making the call, but
that does not means that the other end (ie. the phone in the PSTN) has
already answered. Personally I have the same problem, but I have not
looked further on the code to solve it because I havent had the time.
I suggest you 3 options:

1. Wait 2 or 3 weeks, so I have some free time and came up with a fix.
2. Ask in bugs.digium.com for a feature to know this.
3. Keep looking and questioning about it in asterisk-users, may be
someone has a workaround.

Regards

On 5/1/06, John Joseph <[EMAIL PROTECTED]> wrote:


Hi All
   when I try to use auto-dial to connect to
outside phone , my applications get executed before
the caller attend the calls , this happens only when I
call outside no , ie when I use
Channel: ZAP/1/050745 in my sample.call file , if
I use Channel:SIP/326 ,  it works  fine
  my "sample.call" file contains
Channel: ZAP/1/050745
Callerid: Asterisk
MaxRetries: 2
RetryTime: 10
WaitTime: 60
Context: outboundmsg1
Extension: s
Priority: 1

and my "extensions.conf" file  contains
[outboundmsg1]
exten => s,1,DigitTimeout,5
exten => s,2,ResponseTimeout,30
exten => s,3,Answer
exten => s,4,Wait(1)
exten => s,5,Cepstral(Hi ,, Hope u are getting this
voices, It is text to Voice  conversation , did u hear
it  )
exten => 1,1,Goto(s,5)   ; replay message
exten => 2,1,Goto(msgack,s,1) ; acknowledge message
exten => t,1,Playback(vm-goodbye)
exten => t,2,Hangup

  Guidance requested , to know the
reason , why the  "Ceptral " application is executed ,
before the call is attended when I user ZAP channel .
But  for  SIP channel (only SIP internal call , I made
) it is working fine
Thanks
Joseph John









___
Win tickets to the 2006 FIFA World Cup Germany with Yahoo! Messenger. 
http://advision.webevents.yahoo.com/fifaworldcup_uk/
___
--Bandwidth and Colocation provided by Easynews.com --

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




--
"Su nombre es GNU/Linux, no solamente Linux, mas info en http://www.gnu.org";
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Softphone ready to go installed on USB flash drive

2006-05-01 Thread Ronald Wiplinger

Bruce Reeves wrote:
I do this with the windows version of idefisk from Asteriskguru.com 
. The configuration is stored in the dir with 
the program and dll. I have actually configured it and emailed it to 
users. There is no installer and a simple shortcut or autoplay menu 
should take care of the rest.




It is a nice phone, but it is IAX. I would like to use a SIP phone.
The reason for that is that there is no IAX server for the mass, but 
openSER 



bye

Ronald Wiplinger

On 5/1/06, *Time Bandit* <[EMAIL PROTECTED] 
> wrote:


> How can I install a softphone on my USB flash drive like Xlite
and have
> it ready to go when I plug  it in at any Windows XP computer?
> (Same for a Linux softphone, both on one USB flash drive).
I believe Dan's softphone is suitable for this. See
http://www.laser.com/dante/diax/diax.html

Actually, I should do that with my softphone instead of using the
registry :(

hth
___
--Bandwidth and Colocation provided by Easynews.com
 --

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




--
Bruce
Nortex Networks


___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer


Doug Lytle wrote:

> Let's see that section of your voicemail.conf

; tz=central; Timezone from zonemessages above.  Irrelevant
if envelope=no.
; attach=yes; Attach the voicemail to the notification email
*NOT* the pager email
; saycid=yes; Say the caller id information before the
message. If not described,
; or set to no, it will be in the envelope
; cidinternalcontexts=intern; Internal Context for Name Playback
instead of extension digits when saying caller id.
; sayduration=no; Turn on/off the duration information before
the message. [ON by default]
; saydurationm=2; Specify the minimum duration to say. Default
is 2 minutes
;dialout=from-vm; Context to dial out from [option 4 from the
advanced menu]
; if not listed, dialing out will not be
permitted
sendvoicemail=no; Context to Send voicemail from [option 5 from
the advanced menu]
; if not listed, sending messages from inside
voicemail will not be
; permitted
; searchcontexts=yes; Current default behavior is to search only the
default context
; if one is not specified.  The older behavior
was to search all contexts.
; This option restores the old behavior [DEFAULT=no]
; callback=fromvm   ; Context to call back from
; if not listed, calling the sender back
will not be permitted
; review=yes; Allow sender to review/rerecord their message
before saving it [OFF by default
operator=no ; Allow sender to hit 0 before/after/during
leaving a voicemail to
; reach an operator  [OFF by default]
; envelope=no   ; Turn on/off envelope playback before message
playback. [ON by default]
; This does NOT affect option 3,3 from the
advanced options menu
; delete=yes; After notification, the voicemail is deleted
from the server. [per-mailbox only]
; This is intended for use with users who
wish to receive their voicemail ONLY by email.
; nextaftercmd=yes  ; Skips to the next message after hitting 7 or 9
to delete/save current message.
; [global option only at this time]
; forcename=yes ; Forces a new user to record their name.  A new
user is
; determined by the password being the same as
; the mailbox number.  The default is "no".
; forcegreetings=no ; This is the same as forcename, except for
recording
; greetings.  The default is "no".
; hidefromdir=yes   ; Hide this mailbox from the directory produced
by app_directory
; The default is "no".



Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Can i use same group with 2 or more hfc-cards ?

2006-05-01 Thread office
 
Can i use same group in zapata.conf with 2 or more hfc-cards ?

Is this possible :

instaed of Dial(Zap/g1/10&Zap/g2/10)

Dial(Zap/g1/10) - with g1 fuer both cards.


cu

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Doug Lytle wrote:

  

You'll also need to do a stop/start of Asterisk.



Done that also, no difference

  

Let's see that section of your voicemail.conf

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Softphone ready to go installed on USB flashdrive

2006-05-01 Thread Bruce Reeves
Check out the zip version at under a meg.On 5/1/06, Kerry Garrison <[EMAIL PROTECTED]> wrote:





The current versions of IDEFISK use a Windows installer, 
wether it is required or not now I dont know.
-Kerry
 

  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]] On Behalf Of Bruce 
  ReevesSent: Monday, May 01, 2006 9:13 AMTo: Asterisk 
  Users Mailing List - Non-Commercial DiscussionSubject: Re: 
  [Asterisk-Users] Softphone ready to go installed on USB 
  flashdrive
  I do this with the windows version of idefisk from Asteriskguru.com. The configuration is 
  stored in the dir with the program and dll. I have actually configured it and 
  emailed it to users. There is no installer and a simple shortcut or autoplay 
  menu should take care of the rest. 
  On 5/1/06, Time 
  Bandit <[EMAIL PROTECTED]> 
  wrote:
  > 
How can I install a softphone on my USB flash drive like Xlite and 
have> it ready to go when I plug  it in at any Windows XP 
computer?> (Same for a Linux softphone, both on one USB flash 
drive).I believe Dan's softphone is suitable for this. See http://www.laser.com/dante/diax/diax.html
Actually, 
I should do that with my softphone instead of using the registry 
:(hth___ 
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing 
listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users
-- BruceNortex Networks 

___--Bandwidth and Colocation provided by Easynews.com --
Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   
http://lists.digium.com/mailman/listinfo/asterisk-users-- BruceNortex Networks
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Softphone ready to go installed on USB flashdrive

2006-05-01 Thread John covici
Does idefisk support that iogear usb phone that I think you were
talking about?

on Monday 05/01/2006 Kerry Garrison([EMAIL PROTECTED]) wrote
 > The current versions of IDEFISK use a Windows installer, wether it is
 > required or not now I dont know.
 > -Kerry
 >  
 > 
 > 
 >   _  
 > 
 > From: [EMAIL PROTECTED]
 > [mailto:[EMAIL PROTECTED] On Behalf Of Bruce Reeves
 > Sent: Monday, May 01, 2006 9:13 AM
 > To: Asterisk Users Mailing List - Non-Commercial Discussion
 > Subject: Re: [Asterisk-Users] Softphone ready to go installed on USB
 > flashdrive
 > 
 > 
 > I do this with the windows version of idefisk from Asteriskguru.com. The
 > configuration is stored in the dir with the program and dll. I have actually
 > configured it and emailed it to users. There is no installer and a simple
 > shortcut or autoplay menu should take care of the rest. 
 > 
 > 
 > On 5/1/06, Time Bandit <[EMAIL PROTECTED]> wrote: 
 > 
 > > How can I install a softphone on my USB flash drive like Xlite and have
 > > it ready to go when I plug  it in at any Windows XP computer?
 > > (Same for a Linux softphone, both on one USB flash drive).
 > I believe Dan's softphone is suitable for this. See 
 > http://www.laser.com/dante/diax/diax.html
 > 
 > Actually, I should do that with my softphone instead of using the registry
 > :(
 > 
 > hth
 > ___ 
 > --Bandwidth and Colocation provided by Easynews.com --
 > 
 > Asterisk-Users mailing list
 > To UNSUBSCRIBE or update options visit:
 >http://lists.digium.com/mailman/listinfo/asterisk-users
 > 
 > 
 > 
 > 
 > 
 > -- 
 > Bruce
 > Nortex Networks 
 > 
 > 
 > 
 > 
 > 
 > 
 >  color=#ff size=2>The current versions of IDEFISK use a Windows 
 > installer, 
 > wether it is required or not now I dont know.
 >  color=#ff size=2>-Kerry
 >  class=138453616-01052006> 
 >  style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #ff 2px solid; 
 > MARGIN-RIGHT: 0px">
 >   
 >   
 >   From: [EMAIL PROTECTED] 
 >   [mailto:[EMAIL PROTECTED] On Behalf Of Bruce 
 >   ReevesSent: Monday, May 01, 2006 9:13 AMTo: Asterisk 
 >   Users Mailing List - Non-Commercial DiscussionSubject: Re: 
 >   [Asterisk-Users] Softphone ready to go installed on USB 
 >   flashdrive
 >   I do this with the windows version of idefisk fromhref="http://Asteriskguru.com";>Asteriskguru.com. The configuration is 
 >   stored in the dir with the program and dll. I have actually configured it 
 > and 
 >   emailed it to users. There is no installer and a simple shortcut or 
 > autoplay 
 >   menu should take care of the rest. 
 >   On 5/1/06, Time 
 >   Bandit <   href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
 >   wrote:
 >  style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: 
 > rgb(204,204,204) 1px solid">> 
 > How can I install a softphone on my USB flash drive like Xlite and 
 > have> it ready to go when I plug  it in at any Windows 
 > XP 
 > computer?> (Same for a Linux softphone, both on one USB flash 
 > drive).I believe Dan's softphone is suitable for this. See  
 > href="http://www.laser.com/dante/diax/diax.html";>http://www.laser.com/dante/diax/diax.htmlActually,
 >  
 > I should do that with my softphone instead of using the registry 
 > :(hth___ 
 > --Bandwidth and Colocation provided by  href="http://Easynews.com";>Easynews.com --Asterisk-Users 
 > mailing 
 > listTo UNSUBSCRIBE or update options visit:    
 > href="http://lists.digium.com/mailman/listinfo/asterisk-users";>http://lists.digium.com/mailman/listinfo/asterisk-users  
 >   clear=all>-- BruceNortex Networks 
 > ___
 > --Bandwidth and Colocation provided by Easynews.com --
 > 
 > Asterisk-Users mailing list
 > To UNSUBSCRIBE or update options visit:
 >http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
Your life is like a penny.  You're going to lose it.  The question is:
How do
you spend it?

 John Covici
 [EMAIL PROTECTED]
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer


Doug Lytle wrote:

> You'll also need to do a stop/start of Asterisk.

Done that also, no difference

-- 
Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] 7941G - Any success stories?

2006-05-01 Thread Aaron Daniel
Has anyone successfully gotten the 7941G working on Asterisk?  We're 
looking at getting some of those instead of the 7940's, but there's really 
not much info out there about them.


--
Aaron Daniel
Computer Systems Technician
Sam Houston State University
[EMAIL PROTECTED]
(936) 294-4198
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Doug Lytle wrote:

  

It's enabled/disabled via the voicemail.conf



I have commented out

dialout=from-vm

but the option is still given even though any number dialled results in
unobtainable. So I dont want the option given.


  

You'll also need to do a stop/start of Asterisk.

Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Softphone ready to go installed on USB flashdrive

2006-05-01 Thread Kerry Garrison



The current versions of IDEFISK use a Windows installer, 
wether it is required or not now I dont know.
-Kerry
 

  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Bruce 
  ReevesSent: Monday, May 01, 2006 9:13 AMTo: Asterisk 
  Users Mailing List - Non-Commercial DiscussionSubject: Re: 
  [Asterisk-Users] Softphone ready to go installed on USB 
  flashdrive
  I do this with the windows version of idefisk from Asteriskguru.com. The configuration is 
  stored in the dir with the program and dll. I have actually configured it and 
  emailed it to users. There is no installer and a simple shortcut or autoplay 
  menu should take care of the rest. 
  On 5/1/06, Time 
  Bandit <[EMAIL PROTECTED]> 
  wrote:
  > 
How can I install a softphone on my USB flash drive like Xlite and 
have> it ready to go when I plug  it in at any Windows XP 
computer?> (Same for a Linux softphone, both on one USB flash 
drive).I believe Dan's softphone is suitable for this. See http://www.laser.com/dante/diax/diax.htmlActually, 
I should do that with my softphone instead of using the registry 
:(hth___ 
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing 
listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users-- BruceNortex Networks 
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] CallerID Name problem

2006-05-01 Thread Hall, Eric M.
 
I'm having trouble getting callerid name to show up on my phones (Cisco
7960 and a few softphones)
When I look in the CDR database I see the name but not on any phone when
being called.

I'm running
Asterisk SVN-trunk-r7498 built on 2006-04-30 15:11:39 UTC 


Any help would be great !
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer


Doug Lytle wrote:

> It's enabled/disabled via the voicemail.conf

I have commented out

dialout=from-vm

but the option is still given even though any number dialled results in
unobtainable. So I dont want the option given.


-- 
Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] voicemail dialout

2006-05-01 Thread Doug Lytle

Jon Farmer wrote:

Hi

How do i disable dialling out from voicemail?


  

It's enabled/disabled via the voicemail.conf

Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] auto-dail for ZAP channel,

2006-05-01 Thread Doug Lytle

John Joseph wrote:
Hi All 
   when I try to use auto-dial to connect to

outside phone , my applications get executed before
the caller attend the calls , this happens only when I
call outside no , ie when I use 
Channel: ZAP/1/050745 in my sample.call file , if 
  


My fix for this is to loop an audio file, requiring the answering party 
to press a key before playing a message.  If it loops for a number of 
times, without a response, hangup.


Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] voicemail dialout

2006-05-01 Thread Jon Farmer
Hi

How do i disable dialling out from voicemail?


-- 
Jon Farmer
Telford, Shropshire, UK
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] auto-dail for ZAP channel, the application gets executed before the call attended

2006-05-01 Thread John Joseph

Hi All 
   when I try to use auto-dial to connect to
outside phone , my applications get executed before
the caller attend the calls , this happens only when I
call outside no , ie when I use 
Channel: ZAP/1/050745 in my sample.call file , if 
I use Channel:SIP/326 ,  it works  fine 
  my “sample.call” file contains 
Channel: ZAP/1/050745
Callerid: Asterisk
MaxRetries: 2
RetryTime: 10
WaitTime: 60
Context: outboundmsg1
Extension: s
Priority: 1

and my “extensions.conf” file  contains
[outboundmsg1]
exten => s,1,DigitTimeout,5
exten => s,2,ResponseTimeout,30   
exten => s,3,Answer
exten => s,4,Wait(1)
exten => s,5,Cepstral(Hi ,, Hope u are getting this
voices, It is text to Voice  conversation , did u hear
it  )  
exten => 1,1,Goto(s,5)   ; replay message
exten => 2,1,Goto(msgack,s,1) ; acknowledge message
exten => t,1,Playback(vm-goodbye)
exten => t,2,Hangup

  Guidance requested , to know the
reason , why the  “Ceptral “ application is executed ,
before the call is attended when I user ZAP channel .
But  for  SIP channel (only SIP internal call , I made
) it is working fine 
Thanks 
Joseph John 



 





___ 
Win tickets to the 2006 FIFA World Cup Germany with Yahoo! Messenger. 
http://advision.webevents.yahoo.com/fifaworldcup_uk/
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Softphone ready to go installed on USB flash drive

2006-05-01 Thread Bruce Reeves
I do this with the windows version of idefisk from Asteriskguru.com. The configuration is stored in the dir with the program and dll. I have actually configured it and emailed it to users. There is no installer and a simple shortcut or autoplay menu should take care of the rest.
On 5/1/06, Time Bandit <[EMAIL PROTECTED]> wrote:
> How can I install a softphone on my USB flash drive like Xlite and have> it ready to go when I plug  it in at any Windows XP computer?> (Same for a Linux softphone, both on one USB flash drive).I believe Dan's softphone is suitable for this. See
http://www.laser.com/dante/diax/diax.htmlActually, I should do that with my softphone instead of using the registry :(hth___
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   
http://lists.digium.com/mailman/listinfo/asterisk-users-- BruceNortex Networks
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Early media after a dial command

2006-05-01 Thread Benjamin Lawetz
Actually Harry, there is no setup needed. You can send early audio with the
Playback command by adding the noanswer parameter (see example). But the
other end of must support/offer it.

But back to my problem, I thought maybe if asterisk generated the ring tone
it might accept the early audio afterwards, but nope, doesn't work either.

Anybody have any ideas/explanations?

Thanks


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: April 27, 2006 12:24 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] Early media after a dial command

Hi Benjamin,

How do you setup early media in asterisk ?

Harry
--- Benjamin Lawetz <[EMAIL PROTECTED]> a écrit :

> Hello all,
> 
> I've been playing around with early audio, and I'm able to get some 
> things working
> 
> We have PSTN calls coming in to asterisk in SIP from a Cisco AS5300. 
> If I do the following:
> 
> Exten => i,1,Playback(ss-noservice,noanswer)
> Exten => i,2,Congestion(15)
> Exten => i,3,Hangup()
> 
> The PSTN caller does not get an answered call (doesn't get billed) but 
> hears the ss-noservice message.
> 
> But the early media fails when I try to do the
> following:
> 
> Exten => 100,1,Dial(SIP/100,15)
> Exten => 100,2,Playback(standby,noanswer) Exten => 
> 100,3,Dial(SIP/[EMAIL PROTECTED],20)
> 
> The PSTN caller hears the ringing for the time of the 3 priorities 
> (20s+15s+ time of "standby" sound file)
> 
> My guess is the cisco is receiving a 183 "Ringing"
> and generates (or the
> remote PSTN side generates) a ring tone until the call is answered.
> Is there any way to get to have early media passed once a ringing is 
> generated?
> Would there be a way to have asterisk generate the ring tone as early 
> media to the switch to the "standby" message in early media?
> 
> Thanks for your help
> Benjamin
> 
> 
> 
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com
> --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>   
>
http://lists.digium.com/mailman/listinfo/asterisk-users
> 







___
Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement
vos services préférés : vérifiez vos nouveaux mails, lancez vos recherches
et suivez l'actualité en temps réel. 
Rendez-vous sur http://fr.yahoo.com/set
___
--Bandwidth and Colocation provided by Easynews.com --

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



___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Softphone ready to go installed on USB flash drive

2006-05-01 Thread Time Bandit

How can I install a softphone on my USB flash drive like Xlite and have
it ready to go when I plug  it in at any Windows XP computer?
(Same for a Linux softphone, both on one USB flash drive).

I believe Dan's softphone is suitable for this. See
http://www.laser.com/dante/diax/diax.html

Actually, I should do that with my softphone instead of using the registry :(

hth
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Softphone ready to go installed on USB flash drive

2006-05-01 Thread Ronald Wiplinger
How can I install a softphone on my USB flash drive like Xlite and have 
it ready to go when I plug  it in at any Windows XP computer?

(Same for a Linux softphone, both on one USB flash drive).


bye

Ronald Wiplinger
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Cant get voicemail

2006-05-01 Thread Aaron Daniel

and rebooted the phone, it started working.  Thanks to all.  Does anyone
else think "rebooted my phone" sounds a little funny?

You get used to it after a while :P

--
Aaron Daniel
Computer Systems Technician
Sam Houston State University
[EMAIL PROTECTED]
(936) 294-4198
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Asterisk with SuSe 10

2006-05-01 Thread Yu Safin

On 1/24/06, Lee Archer <[EMAIL PROTECTED]> wrote:

Thanks, I've got it running on my test box but didn't know if there was
any global objection to using it.  I've had a few funnies with it but
that might be down to Supermicro and P4's with the EM64T thing.

Regards

Lee

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ben Klang
Sent: 24 January 2006 15:49
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] Asterisk with SuSe 10

On Tuesday 24 January 2006 09:26, Lee Archer wrote:
> Has anyone had any experience with the Asterisk on a SuSe 10 platform?
> I'm currently using FC3 but because we use SuSe within other parts of
> the business I'm being pushed to changed the OS.
Just about all of my production Asterisk servers are on SuSE 9.3.  My
development and demo boxes are SuSE 10.  Both run great.  I do however
usually tweak the RPM that came with it to add in a few patches.  If you
are comfortable with running Asterisk 1.0.9 then the RPM works very
well.  SuSE always seems to really think things through when they
package applications.

For running something newer than Asterisk 1.0.9 SuSE 10 is also works
fine.
For your own sanity you'll want to not install/uninstall the SuSE
Asterisk RPMs.  One possible gotcha: be careful of possibly conflicting
kernel modules in /lib/modules/`uname -r`/extra as the Zaptel drivers
are not part of any Asterisk package but rather the kernel.  The zaptel
compile from source installs modules to /lib/modules/`uname -r`/misc so
you'll want to delete the files in extra.  You'll also have to remember
that each time you update the kernel RPM.

Hope that helps.  The bottom line from me is Thumbs Up.

/BAK/
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


did you have to install asterisk from source or from rpm?
I have installed asterisk under RH and I am switching over to SuSE OSS
10.0.  I could not find the "rpm" for asterisk.  My searches show that
the rpm is available for the commercial version of SuSE.
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Cant get voicemail

2006-05-01 Thread Jim Lynch
OK, a combination of all the suggestions has pointed me in the right direction.  The phone I'm using is the Budge Tone 100.  For some reason it is not sending the dtmf tones.  I had set the dtmfmode in the extensions menu to RFC2833, but I chanced to recall there was a dtmf mode in the phone config also.  Sure enough, it was not set to RFC2833.  When I changed that and rebooted the phone, it started working.  Thanks to all.  Does anyone else think "rebooted my phone" sounds a little funny?
Thanks,Jim.On 5/1/06, Christian Buchter <[EMAIL PROTECTED]> wrote:





 
Make sure *97 is indeed your voice 
mail number first. If you have remote voice-mail setup for users, you can just 
try it from outside (calling in).
 
If that is indeed correct, then 
move another phone to that extension. At least you can narrow down thether it is 
the phone or the server causing the issue.
 


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]] On Behalf Of Jim 
LynchSent: Monday, May 01, 2006 9:06 AMTo: 
Asterisk-Users@lists.digium.comSubject: [Asterisk-Users] Cant get 
voicemail
I've enabled voice mail for extension 200  in the extensions 
menu, and I've set the password to 1234.  When I dial *97 which is listed 
as "Your messages" in the applications menu, it says "Password"  I enter 
1234 and it says, "login incorrect, Password"  so what am I missing? 
Thanks,Jim._This 
email has been scanned by MessageLabs on behalf of E-INS

_
This email has been scanned by MessageLabs on behalf of E-INS


___--Bandwidth and Colocation provided by Easynews.com
 --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Kerry Garrison
You can already do that. You ca specify different access to different users
with the Administrators module.
 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Rich Adamson
> Sent: Monday, May 01, 2006 6:33 AM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: Re: [Asterisk-Users] FreePBX in production?
> 
> Time Bandit wrote:
> >> > You could, but it'll get overwritten by any FreePBX upgrades. The
> >> *.conf
> >> > and *_additional.conf files are controlled by FreePBX and can be 
> >> > overwritten.
> >>
> >> I thought I should clarify this statement: I meant that 
> FreePBX could 
> >> overwrite both the *.conf and the *_additional.conf files. You are 
> >> strongly advised NOT to edit either of those types of files. All 
> >> editing should be restricted to the *_custom.conf files.
> > Well, I've modified *.conf files and I never had AMP (FreePBX) 
> > overwrite them. An upgrade would most certainly overwrite 
> them but not 
> > normal usage. I may be wrong, but if you upgrade, the *_custom.conf 
> > files will probably get overwritten also, so you better backup them 
> > before.
> 
> Let's see if I can summarize various recent postings relative 
> to the broader topic of whether FreePBX/AAH is production-ready.
> 
> Seems the general consensus is that AAH and/or FreePBX is 
> considered production ready if the functionality embedded in 
> AMP (primarily) happens to fit the specific small business 
> requirements. Anything outside of the basic functionality is 
> limited primarily by the lack of technical documentation, the 
> undocumented logic behind magically creating dialplan 
> entries, and limitations associated with AMP interfaces to 
> various channels such as those typically defined in zapata.conf, etc.
> 
> It would almost appear as though the user interface should be 
> broken into two components: 1) a simplified interface for 
> non-technical users that are responsible for 
> adds/moves/changes, and, 2) a second interface to define 
> business-specific items such as defining certain interfaces 
> (eg, zap channels), contexts, dialplans, etc. Many of those 
> items defined in #2 would probably become drop-down 
> selections for the user interface in #1.
> 
> Thoughts?
> 
> R.
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 


___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Problems if GXP-2000 phones and Asterisk are noton the same network

2006-05-01 Thread Mimmus
 I have no NAT: phones and Asterisk are on different subnets (VLANs)
connected to a layer3 switch and correctly routed
Peraphs there is some issue with VLAN tagging...



> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Waldo Rubinstein
> Sent: Saturday, April 29, 2006 1:56 AM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: Re: [Asterisk-Users] Problems if GXP-2000 phones and 
> Asterisk are noton the same network
> 
> Make sure that sip.conf has externip and localnet are 
> properly configured. I have many GXP-2000 on different nets 
> as my * box with no problem.
> 
> - Waldo
> 
> On Apr 28, 2006, at 11:12 AM, Mimmus wrote:
> 
> > Hi,
> > I have a lot of GXP-2000 phones not registering with 
> Asterisk server.
> > After two days of attempts, it seems that problem is due to 
> the fact 
> > that phones and server are not on the sme network.
> > Do you know if this is known issue?
> >
> > --
> > Domenico Viggiani
> >
> > ___
> > --Bandwidth and Colocation provided by Easynews.com --
> >
> > Asterisk-Users mailing list
> > To UNSUBSCRIBE or update options visit:
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> 
> ___
> --Bandwidth and Colocation provided by Easynews.com --
> 
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] newbie-too much latency

2006-05-01 Thread Ryder Brook
Yes, Sir/Madam, that was it. I, now, have immediate=yes,faxdetect=no in zapata.conf Picks up immediately. Thanks, -SBLacy Moore - Aspendora <[EMAIL PROTECTED]> wrote: It looks like it could be Asterisk generating ringing tones waiting for a fax signal. On 5/1/06, Ryder Brook <[EMAIL PROTECTED]> wrote:  I tried that, usecallerid=no, didn't help.I discovered that IRQ 5 is shared with an nVidia card, and that may be the problem.-br Time Bandit <[EMAIL PROTECTED] > wrote:  > The latency is very high, in that, it picks up after 8 rings. I don't know> what I can tune to reduce to 2 or 3 rings. If it's of any help , I am > posting a section of the log :Do you get CallerID on that line ?If, in zapata.conf, you have it set to get the CallerID(usecallerid=yes) and the line is not providing it, asterisk will wait some time trying to get it. Usually, the CallerID is sent between thefirst and second ring.Try to disable it (usecallerid=no) and see if that helphth___ --Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates starting at 1¢/min.  ___--Bandwidth and Colocation provided by  Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users-- Lacy MooreAspendora, Inc.  ___--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-usersRyder Brook PediatricsP.O.Box 608Morrisville, VT 05661
		Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] GXP-2000 Message Waiting Light

2006-05-01 Thread Peter Bowyer

On 01/05/06, Jeffrey Macko <[EMAIL PROTECTED]> wrote:



Does anyone know the secret to get the GXP-2000 Message waiting lamp to
illuminate?


No secret - just set a 'mailbox' line in the appropriate peer entry in
sip.conf. Later GXP-2000 firmware shows the number of messages waiting
on the LCD display as well as flashing the MWI lamp (can't remember
which firmware version introduced this).

Peter

--
Peter Bowyer
Email: [EMAIL PROTECTED]
___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Cant get voicemail

2006-05-01 Thread Christian Buchter



 
Make sure *97 is indeed your voice 
mail number first. If you have remote voice-mail setup for users, you can just 
try it from outside (calling in).
 
If that is indeed correct, then 
move another phone to that extension. At least you can narrow down thether it is 
the phone or the server causing the issue.
 


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Jim 
LynchSent: Monday, May 01, 2006 9:06 AMTo: 
Asterisk-Users@lists.digium.comSubject: [Asterisk-Users] Cant get 
voicemail
I've enabled voice mail for extension 200  in the extensions 
menu, and I've set the password to 1234.  When I dial *97 which is listed 
as "Your messages" in the applications menu, it says "Password"  I enter 
1234 and it says, "login incorrect, Password"  so what am I missing? 
Thanks,Jim._This 
email has been scanned by MessageLabs on behalf of E-INS

_
This email has been scanned by MessageLabs on behalf of E-INS

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] Cant get voicemail

2006-05-01 Thread Christian Buchter


Make sure your using RFC2833 for DTMF mode. You can go to the server and
check by going to extensions -> view extension and change by modify
extension.

This was for Snom phones anyway, but I believe that is a widely accepted
RFC.

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Doug Lytle
Sent: Monday, May 01, 2006 9:15 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] Cant get voicemail

Jim Lynch wrote:
> I've enabled voice mail for extension 200  in the extensions menu,

Asterisk has no extensions menu. 

I'm guessing that you are using some type of graphical interface.  I
would suggest you post your question to either their forum or mailing
list.

Doug

___
--Bandwidth and Colocation provided by Easynews.com --

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

_
This email has been scanned by MessageLabs on behalf of E-INS


_
This email has been scanned by MessageLabs on behalf of E-INS
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] newbie-too much latency

2006-05-01 Thread Lacy Moore - Aspendora
It looks like it could be Asterisk generating ringing tones waiting for a fax signal.
On 5/1/06, Ryder Brook <[EMAIL PROTECTED]> wrote:

I tried that, usecallerid=no, didn't help.I discovered that IRQ 5 is shared with an nVidia card, and that may be the problem.-br
Time Bandit <[EMAIL PROTECTED]
> wrote: 
> The latency is very high, in that, it picks up after 8 rings. I don't know> what I can tune to reduce to 2 or 3 rings. If it's of any help , I am
> posting a section of the log :Do you get CallerID on that line ?If, in zapata.conf, you have it set to get the CallerID(usecallerid=yes) and the line is not providing it, asterisk will wait
some time trying to get it. Usually, the CallerID is sent between thefirst and second ring.Try to disable it (usecallerid=no) and see if that helphth___
--Bandwidth and Colocation provided by Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users




Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. 
Great rates starting at 1¢/min. 
___--Bandwidth and Colocation provided by 
Easynews.com --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:  
http://lists.digium.com/mailman/listinfo/asterisk-users-- Lacy MooreAspendora, Inc. 
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] newbie-too much latency

2006-05-01 Thread Ryder Brook
I tried that, usecallerid=no, didn't help.  I discovered that IRQ 5 is shared with an nVidia card, and that may be the problem. -brTime Bandit <[EMAIL PROTECTED]> wrote: >  The latency is very high, in that, it picks up after 8 rings. I don't know> what I can tune to reduce to 2 or 3 rings. If it's of any help , I am> posting a section of the log :Do you get CallerID on that line ?If, in zapata.conf, you have it set to get the CallerID(usecallerid=yes) and the line is not providing it, asterisk will waitsome time trying to get it. Usually, the CallerID is sent between thefirst and second ring.Try to disable it (usecallerid=no) and see if that helphth___--Bandwidth and Colocation provided by Easynews.com
 --Asterisk-Users mailing listTo UNSUBSCRIBE or update options visit:   http://lists.digium.com/mailman/listinfo/asterisk-users
		Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates starting at 1¢/min.___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Remco Barende

FreePBX is catching up reasonably quickly.

There are still some basic things missing (for example if you don't use 
voicemail it is not possible to set a destination for the call if not 
answered, you have to create a ring group for each extension to work 
around it, this is a major issue) and some smaller minor issues.


Other than that I think the basic framework is already pretty impressive 
but in my opinion good enough for production use.



On Mon, 1 May 2006, Craig Guy wrote:

Wouldn't use it in production for a customer personally.  Too many 
limitations in terms of having a flexible diaplan.  What would be nice though 
is if they were to produce a 'lite' version that gave a gui interface to 
add/change/move things - sip.conf, voicemail.conf, meetme.conf but staying 
well away from extensions.conf


Craig

- Original Message - From: "Rich Adamson" <[EMAIL PROTECTED]>
To: "Asterisk Users-List" 
Sent: Monday, May 01, 2006 5:19 AM
Subject: [Asterisk-Users] FreePBX in production?



Has anyone attempted to use FreePBX for a business in production mode?

Initial take is there are lots of things scripted but a lot of limitations 
in terms of supporting basic business functions. Inability (or lack of 
flexibility) is handling multiple incoming pstn lines, dialplan 
limitations, poor/no documentation, etc, to mention a few.


Maybe its just me, but it appears its no where near usable even with the 
latest beta1 code.


Is it just me or what?

Rich

___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [Asterisk-Users] FreePBX in production?

2006-05-01 Thread Jim Houser
  Since FreePBX is module based it seems that with all the good people out
on the internet there is someone will write an add-on to extend the
capabilities for those that need it.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Craig Guy
Sent: Monday, May 01, 2006 6:52 AM
To: [EMAIL PROTECTED]; Asterisk Users Mailing List - Non-Commercial
Discussion
Subject: Re: [Asterisk-Users] FreePBX in production?

Wouldn't use it in production for a customer personally.  Too many
limitations in terms of having a flexible diaplan.  What would be nice
though is if they were to produce a 'lite' version that gave a gui interface
to add/change/move things - sip.conf, voicemail.conf, meetme.conf but
staying well away from extensions.conf

Craig

- Original Message -
From: "Rich Adamson" <[EMAIL PROTECTED]>
To: "Asterisk Users-List" 
Sent: Monday, May 01, 2006 5:19 AM
Subject: [Asterisk-Users] FreePBX in production?


> Has anyone attempted to use FreePBX for a business in production mode?
>
> Initial take is there are lots of things scripted but a lot of limitations

> in terms of supporting basic business functions. Inability (or lack of 
> flexibility) is handling multiple incoming pstn lines, dialplan 
> limitations, poor/no documentation, etc, to mention a few.
>
> Maybe its just me, but it appears its no where near usable even with the 
> latest beta1 code.
>
> Is it just me or what?
>
> Rich
>
> ___
> --Bandwidth and Colocation provided by Easynews.com --
>
> Asterisk-Users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users 

___
--Bandwidth and Colocation provided by Easynews.com --

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



This e-mail and any attachments may contain confidential and privileged 
information.  If you are not the intended recipient, please notify the sender, 
or [EMAIL PROTECTED], immediately by return e-mail and destroy any copies. Any 
dissemination or use of this information by a person other than the intended 
recipient is unauthorized and may be illegal.  Unless otherwise stated, 
opinions expressed in this e-mail are those of the author and are not endorsed 
by the author's employer. 


___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] GXP-2000 Message Waiting Light

2006-05-01 Thread Jeffrey Macko












Does anyone know the secret to get the
GXP-2000 Message waiting lamp to illuminate?

 

Or can point me toward some docs that
might explain it?

 

Thanks! 

 

--Jeffrey










___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Sangoma A200 preventing Zap channels

2006-05-01 Thread Sangoma Techdesk




We ran some tests on 
our line here where a scope and voltmeter, we were able to see the waveform 
changes on incoming call and the voltage at 6-7v during the conversation, but no 
drop in voltage (or reverse tip/ring) when the remote side hanged-up. The 
voltage went back to around 48v after 8-10 seconds, which is when the FXO port 
goes on-hook. 
 
We used a regular 
analog phone connected directly to that line and it did not detect the hang-up 
either. It looks like some Bell lines  do not provide disconnect 
supervision. 
 
 
 
David Yat Sin
Sangoma Technologies
(905) 474 1990 x119
(800) 388 2475 x199
MSN: [EMAIL PROTECTED]
Email: [EMAIL PROTECTED]
Wiki: http://sangoma.editme.com
 
___
--Bandwidth and Colocation provided by Easynews.com --

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


  1   2   >