[Asterisk-Users] Asterisk2Billing

2006-04-24 Thread Scheda
I'm sure this has been asked a million times. Therefore, I must ask again. Generally speaking, what do you guys think of it. It looks pretty good, but for my uses, I'm not sure that a calling card method is the *best* way to go. But, either way, what is the general concensus?

___
--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] Calls to outside lines

2005-03-31 Thread Scheda
I'm trying to make an outgoing call to my cell phone in two different
occasions. One is when a certain CID calls my number, and that will
automatically set a new CID and send it to my cell phone. I can
accomplish this with one phone number, but any time I try to add more
than one, it gives me errors. Also, what I want to do is have someone
be able to hit, let's say 7 and then it will set a new CID and call
out to my cell phone. Here is the code I have for both right now.

exten => 7,1,Answer()
exten => 7,2,SetCallerID(${spoof})
exten => 7,2,Dial,IAX2/scheda:[EMAIL PROTECTED]/${scheda}



  exten => s,1,Answer()
  exten => s,2,GotoIf($[${CALLERIDNUM} = ${gumby}]?99,1:2)


Now then, if I add more than one in the GotoIf app, I get errors. I'm
not sure exactly what to do there. I've played around with both of
them a few different ways.
___
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] .call Files and Unkown Keywords

2005-03-29 Thread Scheda
Hey, another question. I am having problems with my call files.
Whenever I drop one into the outgoing folder, I get an "unknown
keyword" error for each line in the file. This is what I have my file
as right now.

Channel: IAX2/scheda:[EMAIL PROTECTED]
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: outgoing
Extension: 18636045489
Priority: 2


On the channel, that may need to be changed. I'm not sure. I got this
format from voip-info.org so I would assume it's correct. I have
exchanged the : for = and the such, but still get the same errors. I'm
not sure exactly what I need to be doing.

Oh, by the way, this is going to a cell phone, an example phone number
is in the extention syntax.
___
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] VoiceMail Outgoing Calls and Disconnects

2005-03-23 Thread Scheda
Hey, I currently have the voicemail set up so I can dial out from a
voicemail box. I seem to not be able to place them. I have put the
number in with and without a 1, and then hit pound and it says "Please
wait while I connect your call" and then disconnects. Any ideas as to
why?
___
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] Help Debugging my code?

2005-03-22 Thread Scheda
Hey, I'm currently using the GotoIf application to set it so if
certain caller ID's call my number, it will transfer it to my cell
phone, here is the code I have so far. I get an error message that
states "call rejected by 198.22.67.70: No such context/extention."
when I call the number from my house number.  Anyway, here is the code
I have.

[inbound]   
exten => 8667393960,1,Answer()

exten => 8667393960,2,GotoIf($[${CALLERIDNUM} =
${house}]?specialized,8667393960,1:2)
exten => 8667393960,3,GotoIf($[${CALLERIDNUM} =
${kendra}]?specialized,8667393960,1:2)
exten => 8667393960,4,GotoIf($[${CALLERIDNUM} =
${rob}]?specialized,8667393960,1:2)
exten => 8667393960,5,GotoIf($[${CALLERIDNUM} =
${jen}]?specialized,8667393960,1:2)
exten => 8667393960,6,GotoIf($[${CALLERIDNUM} =
${mom}]?specialized,8667393960,1:2)
exten => 8667393960,7,GotoIf($[${CALLERIDNUM} =
${dad}]?specialized,8667393960,1:2)

exten => 8667393960,8,Wait(3)
exten => 8667393960,9,Background(/root/asterisk-1.0.6/sounds/ast-intro)
exten => 8667393960,10,Wait(12)
exten => 8667393960,11,Hangup()

[specialized]
[specialized]
exten => 8667393960,1,SetCallerID(${cid})
exten => 8667393960,2,Wait(1)
exten => 8667393960,3,SetMusicOnHold(danecook)
exten => 8667393960,4,Dial(${TRUNK}/${scheda},35,t)
exten => 8667393960,5,Hangup()

I have all the global variables set up correctly, so I'm not sure what
it is exactly
___
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] DISA Hangs up after DTMF is sent

2005-03-21 Thread Scheda
Hey, this is happening to anyone who I try this with. We get into the
DISA, then hear the dial tone. Dial 1 then start dialing the number,
and it hangs up. I thought adding a wait time after the DISA may help,
I was wrong. Here is what I have thus far in the DISA extentions.

[DISA]
exten => 7,1,DISA(no-password||"Scheda" <565> 455-1337)
exten => 7,2,Wait(45)
exten => 7,3,Goto(8667393960,3)

I don't see why it hangs up. Any suggestions?
___
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] gsm cannot be found in any file form... but it's there

2005-03-17 Thread Scheda
Hey, I recorded this intro, and changed it to a gsm file in the shell,
and I'm getting an error saying that it isn't in the directory at all
when it's sitting right there. I don't know why that is.

If you want to hear it, it's http://scheda.underfireradio.com/astintro.mp3

I don't know what the matter is, I've tried renaming it, copy and
pasting it in there, deleting it and placing it back... I'm kinda out
of ideas.
___
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] X-Lite and Asterisk

2005-03-17 Thread Scheda
So I'm trying to set up X-Lite for use with Asterisk, and I  can't get
it to work. I used a PDF I found on Voip-Info to set it up, and it's
still not working, I'm using Nufone as the provider... I'll include my
sip.cocnf and extentions.conf here.

extentions.conf

[CODE][outgoing]
exten => _1NXXNXX,1,Dial,IAX2/[EMAIL PROTECTED]/${EXTEN}



[inbound]
exten => Asteriskboxnumberhere,1,Answer
exten => Asteriskboxnumberhere,2,Background(agent-alreadyon)
exten => Asteriskboxnumberhere,3,Hangup()

[scheda]
exten => [_123456789],1,NoOp("call for "${EXTEN})
exten => [_123456789],2,Dial(SIP/${EXTEN},60,tr)
exten => [_123456789],3,Congestion[/CODE]


sip.conf

[scheda]

[CODE]type=friend
secret=mypasshere
auth=md5
nat=no
host=dynamic
reinvite=no
canreinvite=no
qualify=1000
dtmfmode=inband
callerid="Scheda" <2000>
disallow=all
allow=gsm
allow=ulaw
allow=alaw[/CODE]

Yes, my iax.conf is set up correctly, I can call into the box and get
the Playback() message of my choosing.
___
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] Asterisk@Home Install Problem

2005-03-16 Thread Scheda
Haha, yeah, plenty of hair left. I'm a "youngin". Only 19. But that's
beside the point. If I had another box I could dedicate to asterisk, I
would do that without hesitation. Right now I just installed the new
Win32 version onto my dual booting XP/Debian laptop to play around and
get that set up as a temp * server. So I'll set this all up then I'll
fix whatever is up with the other one. I have another spare cd drive
laying around, so I'll try that. Thus far I didn't pay a penny for the
box I'm using. I'm using spare parts and stuff people gave me. It's a
1.3 ghz, 20 Gb hdd, 512 mb ram, so I KNOW I have enough spare room in
there...

Oh, and about the space issue, just to make sure I had enough room, I
installed a full install of Slackware last night. 3 Gb after all the
packages, so I know I have the room.
___
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] Asterisk@Home Install Problem

2005-03-15 Thread Scheda
Yeah, It's a 20 gigabyte maxtor drive, so plenty of space.


On Tue, 15 Mar 2005 17:10:49 -0800, snacktime <[EMAIL PROTECTED]> wrote:
> On Tue, 15 Mar 2005 16:17:09 -0800 (PST), beonice <[EMAIL PROTECTED]> wrote:
> >
> > --- Scheda <[EMAIL PROTECTED]> wrote:
> > > Whenever I try to install [EMAIL PROTECTED], I get this
> > > error at about 43%
> > >
> > >  There was an error installing
> > > rpmdb-redhat-3.4-0.20050105. This
> > > can indicate media failure, lack of disk space,
> > > and/or hardware
> > > problems. This is a fatal error and your install
> > > will be aborted.
> > > Please verify your media and try your install again.
> > >
> > > I've gotten this on 3 different cd's I've burned. To
> > > make sure it
> > > wasn't a hardware problem of some sort, I installed
> > > Debain last night.
> > > Went without a hitch, but [EMAIL PROTECTED] doesn't like it...
> > > Any ideas as to
> > > why?
> 
> Most linux installations have at least one other console that lets you
> view the raw errors.  Try holding down the alt key and then pressing
> numbers 1-9 to see if any are available.  If so, it should let you see
> exactly why it is failing.
> 
> Chris
> ___
> 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


[Asterisk-Users] Asterisk@Home Install Problem

2005-03-15 Thread Scheda
Whenever I try to install [EMAIL PROTECTED], I get this error at about 43%

 There was an error installing rpmdb-redhat-3.4-0.20050105. This
can indicate media failure, lack of disk space, and/or hardware
problems. This is a fatal error and your install will be aborted.
Please verify your media and try your install again.

I've gotten this on 3 different cd's I've burned. To make sure it
wasn't a hardware problem of some sort, I installed Debain last night.
Went without a hitch, but [EMAIL PROTECTED] doesn't like it... Any ideas as to
why?
___
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] Asterisk@Home

2005-03-13 Thread Scheda
I'm actually talking to someone I have high respect for on this topic
right now, he has me convinced. I'm going to try it out.
___
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] Text Messaging or AIM

2005-03-13 Thread Scheda
Email to SMS, it goes both ways. I frequently email people from my
phone, and they can email me right back. With T-Mobile, the email
address is the phone number 1(areacode)[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] Asterisk@Home

2005-03-13 Thread Scheda
Have any of you tried this?

http://asteriskathome.sourceforge.net/

I'm thinking of using this version. I'm debating between it and
Knoppix with Asterisk thrown in there as well. I'm a linux newbie for
the most part, but can get around and get done what I need done with
help here and there, but I don't know if [EMAIL PROTECTED] is all what I need.

Here is what I need * to do for me pretty much.

-Voicemail
-Conferencing
-IM callbacks (Instant message from my cell and it calls me back)
-Extentions
-A few other things which I can handle

I've used * a tad bit in the past, no real heavy work with it though.
I would think that the GUI in [EMAIL PROTECTED] would make Asterisk less
functional. Seeing as how I'm not using this for some large business
or anything, just as something so listeners of a radio show I do can
interact, I don't think [EMAIL PROTECTED] would be WAY too restrictive on what I
need accomplished.

If you have used this before, can you post a review on what you think
of it or just tell me if this will suit my needs or not?
___
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] Text Messaging or AIM

2005-03-13 Thread Scheda
On Sun, 13 Mar 2005 16:18:06 -0500, Jess Coburn <[EMAIL PROTECTED]> wrote:
> So you basically want an SMS or IM callback app right?
> 
> One way to do this would be send an email to an address like
> ([EMAIL PROTECTED]) and have a cronjob query/pop this email
> address for your specific message and then when it finds it have it
> create a .call file to call you and connect you to whatever context
> you setup, etc.  Shouldn't be very hard at all.  This would allow for
> emails and I'm pretty sure every cell can send an email.
> 
> As for IM/AIM I'd just find a Perl AIM package (quick google returned:
> http://search.cpan.org/~aryeh/Net-AIM-1.22/AIM.pm) and again it same
> thing, if it gets a IM with the correct details in it, simply create a
> .call file to call your cell. Again this too should be pretty easy to
> setup.
> 
> Here's the link to creating .call files:
> http://www.voip-info.org/wiki-Asterisk+auto-dial+out
> 
> 
> Jess
> 

>From what I've seen so far, I may just go with the CenterICQ idea, it
seems to be the easiest way of working this. Since I'm not a linux
expert, the easiest route is best. I suppose I can set CenterICQ up to
create the .call in one folder then use the mv function to move it to
the call folder. That way it's not read as it's being written.
___
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] Text Messaging or AIM

2005-03-13 Thread Scheda
On Sun, 13 Mar 2005 13:25:10 -0600, Anton Krall
<[EMAIL PROTECTED]> wrote:
> There is a program for linux called centericq, this program is for
> connecting a linux box to aim, icq, msn, etc something like trillian.
> Anyway, this centericq lets you define external commands that can run when
> you send it a message containing certain words. Also, you can define a
> "system" call in asterisk.
> 
> The way I see this is simple:
> 
> Install centericq on your linux box and get a nick for it so it will connect
> to all messengers as would a person. Then define on its external command
> file a keyword to create a .call file for asterisk. Then it is simple, just
> send a message via any messenger to your linux box and it will create the
> call file and asterisk will process it, thus, calling you. :)
> 
> How does that sound?



I'm really liking this idea. It sounds like exactly what I need. This
sounds like a "bot" in irc or the like... Basically I could set a
command such as /call to call me it seems. That would be exactly what
I need. Thank you a ton.
___
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] Text Messaging or AIM

2005-03-13 Thread Scheda
I found what that was, http://ruk.ca/article/1832 is the link. Not
exactly what I want, but I also found this.

http://www.voip-info.org/wiki-Asterisk+cmd+Sms

That seems to be what I want. I can send an SMS message, and then
configure it to call me once it recieves it.


On Sun, 13 Mar 2005 12:17:59 -0600, Me <[EMAIL PROTECTED]> wrote:
> I think I saw something a while back that would allow Asterisk to check AIM
> to see if a user of an extension was in front of their desk or not then send
> to VMail or whatever.
> 
> This may be a start for you but I can't recall the name of it or where the
> info is.
> 
> --
> Wholesale Private Label Internet Access!
> http://www.YourOwnISP.com
> 
> - Original Message -
> From: "Scheda" <[EMAIL PROTECTED]>
> To: "Asterisk Users Mailing List - Non-Commercial Discussion"
> 
> Sent: Sunday, March 13, 2005 11:47 AM
> Subject: [Asterisk-Users] Text Messaging or AIM
> 
> > Does anyone know of a program/extention to asterisk that would allow
> > me to either text message my asterisk box or IM it from AIM on my cell
> > phone to allow it to call me? I've been looking with google yet can't
> > find anything. I don't code, so I'm SOL there, so I'm looking for
> > something premade. I plan on taking a class on perl during the fall
> > semester at my local community college, so if there isn't something
> > like this out there already, maybe I can get one out there.
> > ___
> > 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


[Asterisk-Users] Text Messaging or AIM

2005-03-13 Thread Scheda
Does anyone know of a program/extention to asterisk that would allow
me to either text message my asterisk box or IM it from AIM on my cell
phone to allow it to call me? I've been looking with google yet can't
find anything. I don't code, so I'm SOL there, so I'm looking for
something premade. I plan on taking a class on perl during the fall
semester at my local community college, so if there isn't something
like this out there already, maybe I can get one out there.
___
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] No more loading asterisk...

2005-01-15 Thread Scheda
Hey, whenever I try to load, I get these errors

Jan 15 16:37:24 ERROR[7573]: chan_iax2.c:7486 load_module: Unable to
bind to 0.0.0.0 port 4569: Address already in use
Jan 15 16:37:24 WARNING[7573]: loader.c:345 ast_load_resource:
chan_iax2.so: load_module failed, returning -1
  == Manager unregistered action IAXpeers
  == Unregistered channel type 'IAX2'
Jan 15 16:37:24 WARNING[7573]: loader.c:440 load_modules: Loading
module chan_iax2.so failed!


A friend reccomended I used Apt-Get to install it, so I tryed to do
that to overwrite it, and even after a full recompile I get these
errors... I don't quite know what to do.
___
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] Not In Local Context

2005-01-13 Thread Scheda
At one time, I could dial out, and all of the sudden, I'm getting this...

No such extension '**' in context 'local'

Where the stars are is the phone number I'm trying to call. I've
looked through iax.conf and extentions.conf at anything labeled with
the word local, and I have no idea what the problem is...
___
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] Dial Out Errors

2005-01-11 Thread Scheda
Well, I can't find a softphone thus far for linux that works with IAX.
I only have one computer running so far. But in a few weeks I will be
able to get another box to set asterisk up on and then I can use
windows as well. If anyone knows of a linux applicable IAX softphone,
I'd be more than willing to give it a shot, but I haven't found one so
far.


On Wed, 12 Jan 2005 14:57:02 +1300, Matt Riddell
<[EMAIL PROTECTED]> wrote:
> Scheda wrote:
> > Hey, I'm having some errors whenever I dial out and I can't dial in at
> > all. I'm using NuFone as my provider just so you know.
> >
> > Jan 11 17:39:46 WARNING[1771]: chan_oss.c:413 soundcard_setinput:
> > Unable to re-open DSP device: No such device
> > Jan 11 17:39:46 WARNING[1771]: chan_oss.c:572 oss_write: Unable to set
> > device to input mode
> > Jan 11 17:39:46 WARNING[1771]: app_dial.c:359 wait_for_answer: Unable
> > to forward frame
> > Jan 11 17:39:46 WARNING[1771]: app_dial.c:359 wait_for_answer: Unable
> > to forward frame
> 
> Why don't you use a softphone instead of the console+oss?
> 
> The error is saying that it can't find your soundcard.
> 
> --
> Cheers,
> 
> Matt Riddell
> ___
> 
> http://www.sineapps.com/news.php (Daily Asterisk News - html)
> http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
>
___
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] Dial Out Errors

2005-01-11 Thread Scheda
Hey, I'm having some errors whenever I dial out and I can't dial in at
all. I'm using NuFone as my provider just so you know.

Jan 11 17:39:46 WARNING[1771]: chan_oss.c:413 soundcard_setinput:
Unable to re-open DSP device: No such device
Jan 11 17:39:46 WARNING[1771]: chan_oss.c:572 oss_write: Unable to set
device to input mode
Jan 11 17:39:46 WARNING[1771]: app_dial.c:359 wait_for_answer: Unable
to forward frame
Jan 11 17:39:46 WARNING[1771]: app_dial.c:359 wait_for_answer: Unable
to forward frame
___
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