[asterisk-users] DIDs in Singapore

2011-10-07 Thread Jeff LaCoursiere
Can anyone suggest an ITSP with Singapore DIDs and local Singapore
termination?

Cheers,

j


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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


[asterisk-users] DIDs PBX Multi-channel balanced audio output?

2009-11-23 Thread Michael Graves
There came up an interesting question on last weeks VoIP Users Conf
call. http://vuc.me. An internet broadcaster wanted to be able to take
a number of phone calls and bring them into a traditional audio mixer
where each call was a separate balanced audio source to the mixer.

Let's say that he might need 8 simultaneous calls. Is there a way to
set this up using a single Asterisk server and the monitor process to
send the various call streams to a multi-channel audio interface card?
He wants to mix them external to the server in the audio console so
there's no MeetMe involved.

It's perhaps more obvious to suggest using small format hardware
(ALIX?) and a USB audio interface to effect a single line interface.
But then extending to more tha n afew lines might get unwieldy.

Any ideas?

Michael

--
Michael Graves
mgravesatmstvp.com
http://www.mgraves.org
o713-861-4005
c713-201-1262
sip:mgra...@mstvp.onsip.com
skype mjgraves
Twitter mjgraves




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

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


Re: [asterisk-users] DIDs PBX Multi-channel balanced audio output?

2009-11-23 Thread Philipp von Klitzing
Hi!

 Is there a way to set this up using a single Asterisk server and the
 monitor process to send the various call streams to a multi-channel
 audio interface card? He wants 
 
 Any ideas?

Jackaudio? That would require 1.6.
http://www.voip-info.org/wiki/view/Asterisk+cmd+jack

Philipp


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

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


[asterisk-users] DIDs

2009-11-21 Thread Thomas Perron
I have two DID numbers.  I want to configurate my IVR to initiate a context
1 if I dial DID 1.
If DID2 is dialed then start with context 2.
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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

Re: [asterisk-users] DIDs

2009-11-21 Thread Alex Balashov
Thomas,

Thomas Perron wrote:

 I have two DID numbers.  I want to configurate my IVR to initiate a 
 context 1 if I dial DID 1.
 If DID2 is dialed then start with context 2.

Assuming that the DID originator sends you the number in the Request 
URI, you can just treat them like extensions in Asterisk.  Example: 
if you have DID 6789540670 and 6789540671:

exten = 6789540670,1,Goto(context_1,${EXTEN},1)
exten = 6789540671,1,Goto(context_2,${EXTEN},1)

[context_1]

; IVR

exten = 6789540670,1,Answer
exten = 6789540670,n,Playback(hello-world)
exten = 6789540670,n,Hangup

[context_2]

exten = 6789540671,1,Dial(SIP/abalashov,30,r)
exten = 6789540671,n,Congestion

-- Alex

-- 
Alex Balashov - Principal
Evariste Systems
Web : http://www.evaristesys.com/
Tel : (+1) (678) 954-0670
Direct  : (+1) (678) 954-0671

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

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


Re: [asterisk-users] DIDs

2009-11-21 Thread Thomas Perron
Hi Alex,
Thank you
Tom



On Sat, Nov 21, 2009 at 10:24 AM, Alex Balashov
abalas...@evaristesys.comwrote:

 Thomas,

 Thomas Perron wrote:

  I have two DID numbers.  I want to configurate my IVR to initiate a
  context 1 if I dial DID 1.
  If DID2 is dialed then start with context 2.

 Assuming that the DID originator sends you the number in the Request
 URI, you can just treat them like extensions in Asterisk.  Example:
 if you have DID 6789540670 and 6789540671:

exten = 6789540670,1,Goto(context_1,${EXTEN},1)
exten = 6789540671,1,Goto(context_2,${EXTEN},1)

[context_1]

; IVR

exten = 6789540670,1,Answer
exten = 6789540670,n,Playback(hello-world)
exten = 6789540670,n,Hangup

[context_2]

exten = 6789540671,1,Dial(SIP/abalashov,30,r)
exten = 6789540671,n,Congestion

 -- Alex

 --
 Alex Balashov - Principal
 Evariste Systems
 Web : http://www.evaristesys.com/
 Tel : (+1) (678) 954-0670
 Direct  : (+1) (678) 954-0671

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

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

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

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

Re: [asterisk-users] DIDs

2009-11-21 Thread Steve Edwards
 Thomas Perron wrote:

 I have two DID numbers.  I want to configurate my IVR to initiate a 
 context 1 if I dial DID 1. If DID2 is dialed then start with context 2.

If the DIDs are from different providers, you can specify different 
contexts in [iax|sip].conf.

On Sat, 21 Nov 2009, Alex Balashov wrote:

 Assuming that the DID originator sends you the number in the Request 
 URI, you can just treat them like extensions in Asterisk.  Example: if 
 you have DID 6789540670 and 6789540671:

exten = 6789540670,1,Goto(context_1,${EXTEN},1)
exten = 6789540671,1,Goto(context_2,${EXTEN},1)

I prefer to save EXTEN (after any pattern matching nonsense) in a more 
meaningful variable like DNIS and then use the s extension from then 
on. I find it cleaner and more maintainable. For example (typing off the 
top of my head):

[incoming-from-xyz]
exten = _678954067x,1,  set(DNIS=${EXTEN})
exten = 6789540670,2,   goto(home,s,1)
exten = 6789540671,2,   goto(work,s,1)

[home]
exten = s,1,dial(sip/home-phone)

[work]
exten = s,1,dial(sip/work-phone)

If I get another work number, I just add another line to 
incoming-from-xyz. If I change a number, I just change that single line.

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

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

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


Re: [asterisk-users] DIDs

2009-11-21 Thread Thomas Perron
thanks


On Sat, Nov 21, 2009 at 12:26 PM, Steve Edwards
asterisk@sedwards.comwrote:

  Thomas Perron wrote:
 
  I have two DID numbers.  I want to configurate my IVR to initiate a
  context 1 if I dial DID 1. If DID2 is dialed then start with context 2.

 If the DIDs are from different providers, you can specify different
 contexts in [iax|sip].conf.

 On Sat, 21 Nov 2009, Alex Balashov wrote:

  Assuming that the DID originator sends you the number in the Request
  URI, you can just treat them like extensions in Asterisk.  Example: if
  you have DID 6789540670 and 6789540671:
 
 exten = 6789540670,1,Goto(context_1,${EXTEN},1)
 exten = 6789540671,1,Goto(context_2,${EXTEN},1)

 I prefer to save EXTEN (after any pattern matching nonsense) in a more
 meaningful variable like DNIS and then use the s extension from then
 on. I find it cleaner and more maintainable. For example (typing off the
 top of my head):

 [incoming-from-xyz]
exten = _678954067x,1,  set(DNIS=${EXTEN})
exten = 6789540670,2,   goto(home,s,1)
exten = 6789540671,2,   goto(work,s,1)

 [home]
exten = s,1,dial(sip/home-phone)

 [work]
exten = s,1,dial(sip/work-phone)

 If I get another work number, I just add another line to
 incoming-from-xyz. If I change a number, I just change that single line.

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

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

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

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

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

Re: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-07 Thread Gideon Hack

Hi Kashif,

DID World Wide (www.didww.com) would be happy to provide DIDs at $5.00/month 
for Paris (prefix 1) and $8.00/month for Gottenburg (prefix 31). Setup is $5.00 
per DID. Calling is unlimited inbound. Note that this is low-volume pricing, 
and discounts would apply on purchases above 10 DIDs.

Regards,
Gideon



Date: Fri, 4 Jul 2008 10:25:11 +0500
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

Hello All,

We need the DIDs of Paris and Gottenburg, Sweden. Can anyone provide ? Please 
reply with rates.

Regards,

-- 
Kashif Naeem
Business Development Manager
Hadi Telecom

www.haditelecom.com

Cell: +92 (0)345 4226006
Office: +92 (0)42 5692766
 
Email: [EMAIL PROTECTED]
MSN: [EMAIL PROTECTED]

Gmail: [EMAIL PROTECTED]
Skype: kashif.naeem

302 Y Commercial Area, 2nd Floor DHA Lahore, Pakistan.

_
Try Chicktionary, a game that tests how many words you can form from the 
letters given. Find this and more puzzles at Live Search Games!
http://g.msn.ca/ca55/207___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-05 Thread randulo
On Fri, Jul 4, 2008 at 8:14 PM, Alex Balashov [EMAIL PROTECTED] wrote:
 What is the referent of the DIDs as opposed to merely DIDs?

I think it's a question of the use of the article by a non-native
English speaker. For example in French, the word des means both
some and of the.

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

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-04 Thread randulo
On Fri, Jul 4, 2008 at 7:25 AM, Kashif Naeem [EMAIL PROTECTED] wrote:
 We need the DIDs of Paris and Gottenburg, Sweden. Can anyone provide ?

IdeaSIP.com can provide this. I don't know their rates, see the site
for that. Their call quality is excellent.

/r

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

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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


Re: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-04 Thread Alex Balashov
Kashif Naeem wrote:

 We need the DIDs of Paris and Gottenburg, Sweden. Can anyone provide ? 
 Please reply with rates.

Do these cities have official, representative telephone numbers?

What is the referent of the DIDs as opposed to merely DIDs?

-- 
Alex Balashov
Evariste Systems
Web: http://www.evaristesys.com/
Tel: (+1) (678) 954-0670
Direct : (+1) (678) 954-0671
Mobile : (+1) (706) 338-8599

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

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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


[asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-03 Thread Kashif Naeem
Hello All,

We need the DIDs of Paris and Gottenburg, Sweden. Can anyone provide ?
Please reply with rates.

Regards,


-- 
Kashif Naeem
Business Development Manager
Hadi Telecom
www.haditelecom.com

Cell: +92 (0)345 4226006
Office: +92 (0)42 5692766

Email: [EMAIL PROTECTED]
MSN: [EMAIL PROTECTED]
Gmail: [EMAIL PROTECTED]
Skype: kashif.naeem

302 Y Commercial Area, 2nd Floor DHA Lahore, Pakistan.
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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

Re: [asterisk-users] DIDs required of Paris and Gottenburg Sweden

2008-07-03 Thread Moe Navid

Hi Kashif,

I use didx.net you can get did numbers in many countries

On Jul 3, 2008, at 10:25 PM, Kashif Naeem wrote:


Hello All,

We need the DIDs of Paris and Gottenburg, Sweden. Can anyone  
provide ? Please reply with rates.


Regards,


--
Kashif Naeem
Business Development Manager
Hadi Telecom
www.haditelecom.com

Cell: +92 (0)345 4226006
Office: +92 (0)42 5692766

Email: [EMAIL PROTECTED]
MSN: [EMAIL PROTECTED]
Gmail: [EMAIL PROTECTED]
Skype: kashif.naeem

302 Y Commercial Area, 2nd Floor DHA Lahore, Pakistan.  
___

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

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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


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

AstriCon 2008 - September 22 - 25 Phoenix, Arizona
Register Now: http://www.astricon.net

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

[Asterisk-Users] DIDs MO DE NY + 8xx#

2005-08-31 Thread Joshua Abbott
Anyone know of a company that offers Missouri, Delaware, New York DIDs 
plus 866 877 800 899 DIDs?

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

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


[Asterisk-Users] DIDs in Thailand

2005-07-21 Thread Chris Coulthurst
Anyone know where to find a Thai DID to ring in SIP to asterisk? 
(probably Bangkok)


Chris Coulthurst
[EMAIL PROTECTED]
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] DIDs in 510, 408, 916 415 area code

2005-04-06 Thread M. Ehsanul Karim
I am looking for DIDs in this area codes for wholesale 


510
408
916
415


Please quote me on pricing for blocks of 10,20,50,100

Thanks.

Ehsanul Karim
[EMAIL PROTECTED]
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] DIDs in 510, 408, 916 415 area code

2005-04-06 Thread Vern Norman
Is this a * specific question, or has the intent of this list changed? 
just curious  :)

Try calling the Telco providers in those areas... I doubt that you will find 
them here. most of them don't really like *

- Original Message - 
From: M. Ehsanul Karim [EMAIL PROTECTED]
To: asterisk-users@lists.digium.com
Sent: Wednesday, April 06, 2005 7:12 PM
Subject: [Asterisk-Users] DIDs in 510, 408, 916 415 area code


I am looking for DIDs in this area codes for wholesale
510
408
916
415
Please quote me on pricing for blocks of 10,20,50,100
Thanks.
Ehsanul Karim
[EMAIL PROTECTED]
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] DIDs in 510, 408, 916 415 area code

2005-04-06 Thread Digital Support Technologies
We can do DID's in those area's cost will be around 10.00 a number 

-Original Message- 
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vern Norman 
Sent: Wednesday, April 06, 2005 7:37 PM 
To: M. Ehsanul Karim; Asterisk Users Mailing List - Non-Commercial
Discussion 
Subject: Re: [Asterisk-Users] DIDs in 510, 408, 916 415 area code 

Is this a * specific question, or has the intent of this list changed? 
just curious  :) 


Try calling the Telco providers in those areas... I doubt that you will find

them here. most of them don't really like * 

- Original Message - 
From: M. Ehsanul Karim [EMAIL PROTECTED] 
To: asterisk-users@lists.digium.com 
Sent: Wednesday, April 06, 2005 7:12 PM 
Subject: [Asterisk-Users] DIDs in 510, 408, 916 415 area code 


I am looking for DIDs in this area codes for wholesale 
 
 
 510 
 408 
 916 
 415 
 
 
 Please quote me on pricing for blocks of 10,20,50,100 
 
 Thanks. 
 
 Ehsanul Karim 
 [EMAIL PROTECTED] 
 ___ 
 Asterisk-Users mailing list 
 Asterisk-Users@lists.digium.com 
 http://lists.digium.com/mailman/listinfo/asterisk-users 
 To UNSUBSCRIBE or update options visit: 
   http://lists.digium.com/mailman/listinfo/asterisk-users 

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



  _  

avast! Antivirus http://www.avast.com : Outbound message clean. 


Virus Database (VPS): 0514-0, 04/05/2005
Tested on: 4/6/2005 8:33:58 PM
avast! - copyright (c) 1988-2005 ALWIL Software.



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


[Asterisk-Users] DIDs anywhere but here?

2005-01-17 Thread Jay Milk
Are there affordable DIDs (preferably IAX) available anywhere outside
the US?  I want to use it to meet ICANN requirements for providing a
valid phone number, yet pre-empting some of the telemarketing calls my
domain registrations generate.  (Yes, I asked a similar question about
900# availability before).  I'd prefer to have a number somewhere
outside the NANP, preferably an asian country.  This number will
(obviously) be low-volume (minutes/month at the most), and shouldn't
cost more than a couple of bucks.  Maybe a list member knows and/or is
using one?

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


Re: [Asterisk-Users] DIDs anywhere but here?

2005-01-17 Thread Peter Corlett
Jay Milk [EMAIL PROTECTED] wrote:

 [...] I'd prefer to have a number somewhere outside the NANP,
 preferably an asian country. This number will (obviously) be
 low-volume (minutes/month at the most), and shouldn't cost more than
 a couple of bucks. Maybe a list member knows and/or is using one?

How about sipgate.co.uk, who dish out numbers for free? For non-UK
residents, you can choose your number from:

+49 1801 777555
+44 845 004   (Local)
+44 870 478   (National)
+44 7094 820xxx

That's probably in order of likelihood of being reachable from outside
the UK. +44 8xx is generally diallable from the civilised bits of the
world. +44 70xx may have issues.

-- 
PGP key ID E85DC776 - finger [EMAIL PROTECTED] for full key
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] DIDs anywhere but here?

2005-01-17 Thread Randy
Its not Asia, but for a DID in the UK, it looks like:

http://www.voip-info.org/wiki-VoIPUser

is a possibility.  They seem to have a maintenance window at this
exact moment, but its worth a try later on.  I have no experience with
them, just did a search on voip-info.org and they popped up.  This is a
great idea, by the way.

Randy

On Mon, Jan 17, 2005 at 10:45:57AM -0600, Jay Milk wrote:
 Are there affordable DIDs (preferably IAX) available anywhere outside
 the US?  I want to use it to meet ICANN requirements for providing a
 valid phone number, yet pre-empting some of the telemarketing calls my
 domain registrations generate.  (Yes, I asked a similar question about
 900# availability before).  I'd prefer to have a number somewhere
 outside the NANP, preferably an asian country.  This number will
 (obviously) be low-volume (minutes/month at the most), and shouldn't
 cost more than a couple of bucks.  Maybe a list member knows and/or is
 using one?
 
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] DIDs anywhere but here?

2005-01-17 Thread Chris Hills
Jay Milk wrote:
Are there affordable DIDs (preferably IAX) available anywhere outside
the US?  I want to use it to meet ICANN requirements for providing a
valid phone number, yet pre-empting some of the telemarketing calls my
domain registrations generate.  (Yes, I asked a similar question about
900# availability before).  I'd prefer to have a number somewhere
outside the NANP, preferably an asian country.  This number will
(obviously) be low-volume (minutes/month at the most), and shouldn't
cost more than a couple of bucks.  Maybe a list member knows and/or is
using one?
Jay
I have a free UK DID with Sipgate (http://www.sipgate.co.uk), provided 
as SIP. I am not sure if they provide an IAX service.

Regards
--
Chris Hills
IT Services
North East Worcestershire College
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] DIDs anywhere but here?

2005-01-17 Thread Mike Sander
We have DID's in 5 Australian cities for $5 per month.

Mike Sander
Operations Manager

Suite 4 / 38-48 Waterloo St
Surry Hills N.S.W 2010
Phone:(02) 8307 8877
Fax:(02)93182254
Mobile:0401 010 289
Email: [EMAIL PROTECTED]
Website: www.corporatebankinginternational.com
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jay Milk
Sent: Tuesday, 18 January 2005 3:46 AM
To: asterisk-users@lists.digium.com
Subject: [Asterisk-Users] DIDs anywhere but here?

Are there affordable DIDs (preferably IAX) available anywhere outside
the US?  I want to use it to meet ICANN requirements for providing a
valid phone number, yet pre-empting some of the telemarketing calls my
domain registrations generate.  (Yes, I asked a similar question about
900# availability before).  I'd prefer to have a number somewhere
outside the NANP, preferably an asian country.  This number will
(obviously) be low-volume (minutes/month at the most), and shouldn't
cost more than a couple of bucks.  Maybe a list member knows and/or is
using one?

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

-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.7.0 - Release Date: 17/01/2005
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.7.0 - Release Date: 17/01/2005
 

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