Re: [asterisk-users] Ping

2008-11-21 Thread Atis Lezdins
On Fri, Nov 21, 2008 at 4:59 PM, Sebastian Milioto [EMAIL PROTECTED] wrote:
 Ping

 ___
 -- 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


Pong

GMail's preview looks fun - Ping -- Bandwidth and Colocation Provided
by http://www.api-digital.com;

Regards,
Atis


-- 
Atis Lezdins,
VoIP Project Manager / Developer,
IQ Labs Inc,
[EMAIL PROTECTED]
Skype: atis.lezdins
Cell Phone: +371 28806004
Cell Phone: +1 800 7300689
Work phone: +1 800 7502835

___
-- 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] Ping

2007-10-05 Thread Doug Lytle
Doug Lytle wrote:
 Nothing from me is posting to the list.

   

Sure, that comes though.  I've been trying to post the below message:


Does anybody have some scripts that will pound an Asterisk system?

I wanted to see how many channels I could produce on my test system 
before it would be die.  I thought I would be able to use local channels 
to bridge two conference rooms that would play music.  My Plan was to 
generate as many channels necessary, before the system would crash.
After using the below script; generating just one bridged conference, 
the system will no longer respond to stop now.  It will respond to some 
commands for a short time.  The only way to stop the Asterisk service is 
to do a killall -9 asterisk.

My call file:

Channel: Local/[EMAIL PROTECTED]/n
CallerID: Testing 5574
WaitTime: 5
MaxRetries: 0
Application: meetme
Data: 1002|Mpqdw

Extension 35* snippet:

exten = 35*,1,Answer()
exten = 35*,n,SetMusicOnHold(conference)
exten = 35*,n,Meetme(1001|Mpqdw)
exten = 35*,n,Hangup()

Output from the console:

   -- Attempting call on Local/[EMAIL PROTECTED]/n for application 
meetme(1002|Mpqdw) (Retry 1)
   -- Executing [EMAIL PROTECTED]:1] Answer(Local/[EMAIL PROTECTED],2, ) in 
new stack
[Oct  4 07:50:07] WARNING[10749]: pbx.c:5141 ast_pbx_outgoing_app: 
Local/[EMAIL PROTECTED],1 already has a call record??
   Channel Local/[EMAIL PROTECTED],1 was answered.
   Launching meetme(1002|Mpqdw) on Local/[EMAIL PROTECTED],1
[Oct  4 07:50:07] WARNING[10749]: channel.c:3236 ast_request: No channel 
type registered for 'zap'
   -- Created MeetMe conference 1023 for conference '1002'
   -- Executing [EMAIL PROTECTED]:2] SetMusicOnHold(Local/[EMAIL 
PROTECTED],2, 
conference) in new stack
   -- Executing [EMAIL PROTECTED]:3] MeetMe(Local/[EMAIL PROTECTED],2, 
1001|Mpqdw) 
in new stack
[Oct  4 07:50:07] WARNING[10750]: channel.c:3236 ast_request: No channel 
type registered for 'zap'
   -- Created MeetMe conference 1022 for conference '1001'
   -- Started music on hold, class 'conference', on Local/[EMAIL PROTECTED],2
   -- Started music on hold, class 'default', on Local/[EMAIL PROTECTED],1


Somebody have a better way of testing?

Thanks,

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 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] Ping

2007-10-05 Thread Alex Balashov

I've got some scripts designed to make about 700 calls/minute out of it 
using the Manager API, if you like.

On Fri, 5 Oct 2007, Doug Lytle wrote:

 Doug Lytle wrote:
 Nothing from me is posting to the list.



 Sure, that comes though.  I've been trying to post the below message:


 Does anybody have some scripts that will pound an Asterisk system?

 I wanted to see how many channels I could produce on my test system
 before it would be die.  I thought I would be able to use local channels
 to bridge two conference rooms that would play music.  My Plan was to
 generate as many channels necessary, before the system would crash.
 After using the below script; generating just one bridged conference,
 the system will no longer respond to stop now.  It will respond to some
 commands for a short time.  The only way to stop the Asterisk service is
 to do a killall -9 asterisk.

 My call file:

 Channel: Local/[EMAIL PROTECTED]/n
 CallerID: Testing 5574
 WaitTime: 5
 MaxRetries: 0
 Application: meetme
 Data: 1002|Mpqdw

 Extension 35* snippet:

 exten = 35*,1,Answer()
 exten = 35*,n,SetMusicOnHold(conference)
 exten = 35*,n,Meetme(1001|Mpqdw)
 exten = 35*,n,Hangup()

 Output from the console:

   -- Attempting call on Local/[EMAIL PROTECTED]/n for application
 meetme(1002|Mpqdw) (Retry 1)
   -- Executing [EMAIL PROTECTED]:1] Answer(Local/[EMAIL PROTECTED],2, ) 
 in new stack
 [Oct  4 07:50:07] WARNING[10749]: pbx.c:5141 ast_pbx_outgoing_app:
 Local/[EMAIL PROTECTED],1 already has a call record??
   Channel Local/[EMAIL PROTECTED],1 was answered.
   Launching meetme(1002|Mpqdw) on Local/[EMAIL PROTECTED],1
 [Oct  4 07:50:07] WARNING[10749]: channel.c:3236 ast_request: No channel
 type registered for 'zap'
   -- Created MeetMe conference 1023 for conference '1002'
   -- Executing [EMAIL PROTECTED]:2] SetMusicOnHold(Local/[EMAIL 
 PROTECTED],2,
 conference) in new stack
   -- Executing [EMAIL PROTECTED]:3] MeetMe(Local/[EMAIL PROTECTED],2, 
 1001|Mpqdw)
 in new stack
 [Oct  4 07:50:07] WARNING[10750]: channel.c:3236 ast_request: No channel
 type registered for 'zap'
   -- Created MeetMe conference 1022 for conference '1001'
   -- Started music on hold, class 'conference', on Local/[EMAIL PROTECTED],2
   -- Started music on hold, class 'default', on Local/[EMAIL PROTECTED],1


 Somebody have a better way of testing?

 Thanks,

 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 http://www.api-digital.com--

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


--
Alex Balashov
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] Ping

2007-10-05 Thread Doug Lytle
Alex Balashov wrote:
 I've got some scripts designed to make about 700 calls/minute out of it 
 using the Manager API, if you like.
   

Yes, please!

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 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] Ping

2007-10-05 Thread Doug Lytle
Tzafrir Cohen wrote:
 On Fri, Oct 05, 2007 at 07:41:38AM -0400, Doug Lytle wrote:
   
 Use a second Asterisk system on a stronger machine (or several Asterisk
 systems on several machines). You know how to program Asterisk, right?

   
I have some experience in that area, yes.  At this moment I only have 
one machine for testing (Working on it though)


 If you used call files, remember to delete everything from the outgoing
 directory before retarting... . Also note that if Asterisk was running

   
Now that one did catch me.  I generated 500 call files, rebooted and 
started it back up only to have the machine hard lock again.  I found 
using the call file I listed previously, I can generate 280 entries into 
the two conference rooms and not have the machine die.  Asterisk's 
console doesn't work, but the Polycom I use to dial in with still 
functioned.

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 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] Ping

2007-10-05 Thread Tzafrir Cohen
On Fri, Oct 05, 2007 at 07:41:38AM -0400, Doug Lytle wrote:
 Doug Lytle wrote:
  Nothing from me is posting to the list.
 

 
 Sure, that comes though.  I've been trying to post the below message:
 
 
 Does anybody have some scripts that will pound an Asterisk system?

Use a second Asterisk system on a stronger machine (or several Asterisk
systems on several machines). You know how to program Asterisk, right?

There are many ways to do that, and it really depends on what you want
to check.

 
 I wanted to see how many channels I could produce on my test system 
 before it would be die.  I thought I would be able to use local channels 
 to bridge two conference rooms that would play music.  My Plan was to 
 generate as many channels necessary, before the system would crash.
 After using the below script; generating just one bridged conference, 
 the system will no longer respond to stop now.  It will respond to some 
 commands for a short time.  The only way to stop the Asterisk service is 
 to do a killall -9 asterisk.

If you used call files, remember to delete everything from the outgoing
directory before retarting... . Also note that if Asterisk was running
with -p, you may not not be able to run that command from anywhere - the
manager is handy. Or just unplugging the network cable.

-- 
   Tzafrir Cohen   
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]   
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

___
--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] ping

2007-10-03 Thread C F
Pong

On 10/2/07, Steve Totaro [EMAIL PROTECTED] wrote:
 must be blacklisted, i have posted like 4 messages and none are showing up.

 ___
 --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] ping

2007-10-03 Thread Stephen Bosch
Steve Totaro wrote:
 must be blacklisted, i have posted like 4 messages and none are showing up.

That's what I thought, too, but there's some weirdness going on with 
Digium's list server spam filtering.

Anyway, you'll probably see this one :)

-Stephen-


___
--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] ping

2007-10-03 Thread Mojo with Horan Company, LLC
Someone who's having trouble posting to the list should try placing 
[asterisk-users]  or Re:in the subject line of a new email they 
send (near the END of the subject so it doesn't obscure the actual 
subject or have superfluous Re:'s near the beginning)  to see if the 
spam filter is more likely to score the messages as ham

example subject:

SIP Re-registration does not occur after expiry, Asterisk 1.2 
[asterisk-users]

someone can smack me if this breaks some etiquette I'm not detecting, 
but it might be a back door :)

 
Stephen Bosch wrote:
 Steve Totaro wrote:
   
 must be blacklisted, i have posted like 4 messages and none are showing up.
 

 That's what I thought, too, but there's some weirdness going on with 
 Digium's list server spam filtering.

 Anyway, you'll probably see this one :)

 -Stephen-


 ___
 --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] Ping

2007-09-05 Thread Doug Lytle
Mike Hammett wrote:
  
Pong



-- 
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 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] Ping

2007-09-05 Thread Mike Hammett
I've been trying to send messages to the list for the past 24 hours, but they 
just aren't going through.


-
Mike Hammett
Intelligent Computing Solutions
http://www.ics-il.com


  - Original Message - 
  From: Mike Hammett 
  To: asterisk-users@lists.digium.com 
  Sent: Wednesday, September 05, 2007 7:23 AM
  Subject: [asterisk-users] Ping





  -
  Mike Hammett
  Intelligent Computing Solutions
  http://www.ics-il.com




--


  ___
  --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] Ping

2007-09-05 Thread Sander Smeenk
Quoting Doug Lytle ([EMAIL PROTECTED]):

 Pong

The list seems to act weird. I mailed to the list earlier, the message
was accepted, but does not appear on the archives nor did i get a bounce
or my own listmail back.

Though i do see other people posting :/

-- 
| Only those who will risk going too far, can possibly find out how far you can 
go.
| 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D

___
--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] Ping

2007-09-05 Thread Mike Hammett
Agreed.  This conversation is working just fine, but the important messages 
I'm trying to get to go through aren't.

I've never had consistent success from posting to asterisk-users. 
Asterisk-biz seems to work all of the time.


-
Mike Hammett
Intelligent Computing Solutions
http://www.ics-il.com


- Original Message - 
From: Sander Smeenk [EMAIL PROTECTED]
To: asterisk-users@lists.digium.com
Sent: Wednesday, September 05, 2007 7:45 AM
Subject: Re: [asterisk-users] Ping


 Quoting Doug Lytle ([EMAIL PROTECTED]):

 Pong

 The list seems to act weird. I mailed to the list earlier, the message
 was accepted, but does not appear on the archives nor did i get a bounce
 or my own listmail back.

 Though i do see other people posting :/

 -- 
 | Only those who will risk going too far, can possibly find out how far 
 you can go.
 | 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D

 ___
 --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] Ping

2007-09-05 Thread Dave Fullerton
Sander Smeenk wrote:
 Quoting Doug Lytle ([EMAIL PROTECTED]):
 
 Pong
 
 The list seems to act weird. I mailed to the list earlier, the message
 was accepted, but does not appear on the archives nor did i get a bounce
 or my own listmail back.
 
 Though i do see other people posting :/
 

Same thing happened to me a while back. I sent a new message asking a 
question ..twice.. and neither made it through. However replies to other 
peoples messages went through just fine.

-Dave

___
--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] Ping

2007-09-05 Thread Jonathan Creasy
ACK

Mike Hammett wrote:
  
  
  
 -
 Mike Hammett
 Intelligent Computing Solutions
 http://www.ics-il.com
  
  
 

 ___
 --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] Ping

2007-09-05 Thread Bill Andersen
Dave Fullerton wrote:
 Same thing happened to me a while back. I sent a new message asking a 
 question ..twice.. and neither made it through. However replies to other 
 peoples messages went through just fine.

This may not be the problem, but I've seen this on my NEW post a few times
and it was always my fault.  My default email is NOT the email I have
subscribed to this list.  Only subscribers can post.  Others don't seem
to bounce (why bounce to a spammer) and they are just dropped.  However,
when I reply to a post, it uses the correct address automatically because
the original email originated from the list (with my subscribed address).

Make sure your NEW posts are sent from the subscribed address...

Bill


___
--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] Ping

2007-09-05 Thread Mike Hammett
*nods*  I verified more than once and even copied + pasted to make sure. 
Obviously my ping message went through, but my others have not.


-
Mike Hammett
Intelligent Computing Solutions
http://www.ics-il.com


- Original Message - 
From: Bill Andersen [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Sent: Wednesday, September 05, 2007 9:04 AM
Subject: Re: [asterisk-users] Ping


 Dave Fullerton wrote:
 Same thing happened to me a while back. I sent a new message asking a
 question ..twice.. and neither made it through. However replies to other
 peoples messages went through just fine.

 This may not be the problem, but I've seen this on my NEW post a few times
 and it was always my fault.  My default email is NOT the email I have
 subscribed to this list.  Only subscribers can post.  Others don't seem
 to bounce (why bounce to a spammer) and they are just dropped.  However,
 when I reply to a post, it uses the correct address automatically because
 the original email originated from the list (with my subscribed address).

 Make sure your NEW posts are sent from the subscribed address...

 Bill


 ___
 --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] Ping

2007-09-05 Thread Jared Smith
On Wed, 2007-09-05 at 09:11 -0500, Mike Hammett wrote:
 *nods*  I verified more than once and even copied + pasted to make sure. 
 Obviously my ping message went through, but my others have not.

I'm working with Digium's IT department to try to track down the
problem.


-- 
Jared Smith
Community Relations Manager
Digium, Inc.


___
--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] Ping

2007-09-05 Thread Mike Hammett
and I appreciate it much.


-
Mike Hammett
Intelligent Computing Solutions
http://www.ics-il.com


- Original Message - 
From: Jared Smith [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Sent: Wednesday, September 05, 2007 9:25 AM
Subject: Re: [asterisk-users] Ping


 On Wed, 2007-09-05 at 09:11 -0500, Mike Hammett wrote:
 *nods*  I verified more than once and even copied + pasted to make sure.
 Obviously my ping message went through, but my others have not.

 I'm working with Digium's IT department to try to track down the
 problem.


 -- 
 Jared Smith
 Community Relations Manager
 Digium, Inc.


 ___
 --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] Ping

2007-09-05 Thread Sander Smeenk
Quoting Jared Smith ([EMAIL PROTECTED]):

  *nods*  I verified more than once and even copied + pasted to make sure. 
  Obviously my ping message went through, but my others have not.
 I'm working with Digium's IT department to try to track down the
 problem.

As it may help you follow the message i 'lost' through your systems:

It had Message-ID header [EMAIL PROTECTED] Your
server lists.digium.com.s8a1.psmtp.com [64.18.7.10] accepted it with a
TLS connection but did not reply with a queue message-id.

HTH,
Sander.
-- 
| If you look like your passport picture, you probably need the trip.
| 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D

___

Sign up now for AstriCon 2007!  September 25-28th.  http://www.astricon.net/ 

--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] Ping

2006-12-06 Thread Arjan Kroon
ping

 

Arjan Kroon



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marnus van
Niekerk
Sent: woensdag 6 december 2006 14:15
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] Ping

 

Sorry to do this but I sent a couple of posts and I do not see them or
any replies to them.
Could someone reply to this please.

Tx
Marnus



-- 
 
Opportunity is missed by most people because it is
dressed in overalls and looks like work.
 
Thomas Alva Edison - Inventor of 1093 patents,
including the light bulb, phonogram and motion pictures.
___
--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] Ping a phone

2006-09-16 Thread Dean Collins
How large is the popup?

I cant imagine when my outlook 2003 email popup appears (5 seconds I
guess) that I don't see it, though I think the movement of it appearing
on my display then receeding away has a lot to do with it.

 

Cheers,

Dean

 


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] On Behalf Of Julian Lyndon-Smith
 Sent: Saturday, 16 September 2006 7:44 AM
 To: asterisk-users@lists.digium.com
 Subject: [asterisk-users] Ping a phone
 
 Currently, I send a popup to an agent asking them to accept the call
or
 not. However, they are complaining that they do not *see* the popup
 (it's onscreen for 7 seconds) and I was wanting (have been asked to
 provide) a facility where I can ping an agents phone before sending
 the popup.
 
 This would make them aware that there is a call about to come in.
 
 The best I could come up with so far is a Dial(SIP/Exten,1,g). This
 seems to work, but I was wondering if there was another more elegant
 mechanism. We currently use Cisco 7960 phones.
 
 Julian.
 ___
 --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] Ping a phone

2006-09-16 Thread Julian Lyndon-Smith

Um, it's a 1024x768 bright yellow box ;)

I know, unbelievable.

Julian.

Dean Collins wrote:

How large is the popup?

I cant imagine when my outlook 2003 email popup appears (5 seconds I
guess) that I don't see it, though I think the movement of it appearing
on my display then receeding away has a lot to do with it.

 


Cheers,

Dean

 




-Original Message-
From: [EMAIL PROTECTED] [mailto:asterisk-users-
[EMAIL PROTECTED] On Behalf Of Julian Lyndon-Smith
Sent: Saturday, 16 September 2006 7:44 AM
To: asterisk-users@lists.digium.com
Subject: [asterisk-users] Ping a phone

Currently, I send a popup to an agent asking them to accept the call

or

not. However, they are complaining that they do not *see* the popup
(it's onscreen for 7 seconds) and I was wanting (have been asked to
provide) a facility where I can ping an agents phone before sending
the popup.

This would make them aware that there is a call about to come in.

The best I could come up with so far is a Dial(SIP/Exten,1,g). This
seems to work, but I was wondering if there was another more elegant
mechanism. We currently use Cisco 7960 phones.

Julian.
___
--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] Ping a phone

2006-09-16 Thread Steve Totaro

Julian Lyndon-Smith wrote:
Currently, I send a popup to an agent asking them to accept the call 
or not. However, they are complaining that they do not *see* the popup 
(it's onscreen for 7 seconds) and I was wanting (have been asked to 
provide) a facility where I can ping an agents phone before sending 
the popup.


This would make them aware that there is a call about to come in.

The best I could come up with so far is a Dial(SIP/Exten,1,g). This 
seems to work, but I was wondering if there was another more elegant 
mechanism. We currently use Cisco 7960 phones.


Julian.

You allow your agents to decline calls?!?
I think your solution is the simplest way of doing it.

Thanks,
Steve
___
--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] Ping AGI Demo

2003-11-07 Thread Tom Shoval
Meant selecting from a list for dns entries, probably, as you only want to
check about your servers if you get a call in the middle of the night...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric Wieling
Sent: Friday, November 07, 2003 4:36 AM
To: [EMAIL PROTECTED]
Subject: RE: [Asterisk-Users] Ping AGI Demo

Read back the hostname for the IP address you specified?  It would be
tough to specify a hostname using DTMF.  It could be done using a
something similar to the way cell phones send text meessages, I don't
hate my users enough to want to put them thru that.

On Thu, 2003-11-06 at 01:31, Shoval Tom wrote:
 Great. And if you don't mind us guys who'll use it to prove asterisk's
 working to management, it's even better.
 
 Any chance on adding a dns capable script?
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Eric Wieling
 Sent: Thursday, November 06, 2003 7:49 AM
 To: [EMAIL PROTECTED]
 Subject: [Asterisk-Users] Ping AGI Demo
 
 I have a ALPHA version of my new ping AGI demo available.
 
 Access via:
   IAXTel 1-700-923-3645
 or
   Dial(IAX2/[EMAIL PROTECTED])
 
 When asked for an extension, enter 2101. This will bring you to the
 System Services menu.  The Cepstral version of the ping is option 28,
 the Festival version of the ping is option 32.
 
 Please report problems and/or issues directly to me.  I'm trying to get
 ping.agi stable enough to release the source code for it under GPL.
 
 Thanks in advance,
 
 Eric aka ManxPower
-- 
Sample configs, scripts, more : http://www.fnords.org/~eric/asterisk/

BTEL Consulting 504-899-1387 or 850-484-4545 or 877-677-9643

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Ping AGI Demo

2003-11-06 Thread Shoval Tom
Great. And if you don't mind us guys who'll use it to prove asterisk's
working to management, it's even better.

Any chance on adding a dns capable script?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric Wieling
Sent: Thursday, November 06, 2003 7:49 AM
To: [EMAIL PROTECTED]
Subject: [Asterisk-Users] Ping AGI Demo

I have a ALPHA version of my new ping AGI demo available.

Access via:
  IAXTel 1-700-923-3645
or
  Dial(IAX2/[EMAIL PROTECTED])

When asked for an extension, enter 2101. This will bring you to the
System Services menu.  The Cepstral version of the ping is option 28,
the Festival version of the ping is option 32.

Please report problems and/or issues directly to me.  I'm trying to get
ping.agi stable enough to release the source code for it under GPL.

Thanks in advance,

Eric aka ManxPower

-- 
Sample configs, scripts, more : http://www.fnords.org/~eric/asterisk/

BTEL Consulting 504-899-1387 or 850-484-4545 or 877-677-9643

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Ping AGI Demo

2003-11-06 Thread Eric Wieling
Read back the hostname for the IP address you specified?  It would be
tough to specify a hostname using DTMF.  It could be done using a
something similar to the way cell phones send text meessages, I don't
hate my users enough to want to put them thru that.

On Thu, 2003-11-06 at 01:31, Shoval Tom wrote:
 Great. And if you don't mind us guys who'll use it to prove asterisk's
 working to management, it's even better.
 
 Any chance on adding a dns capable script?
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Eric Wieling
 Sent: Thursday, November 06, 2003 7:49 AM
 To: [EMAIL PROTECTED]
 Subject: [Asterisk-Users] Ping AGI Demo
 
 I have a ALPHA version of my new ping AGI demo available.
 
 Access via:
   IAXTel 1-700-923-3645
 or
   Dial(IAX2/[EMAIL PROTECTED])
 
 When asked for an extension, enter 2101. This will bring you to the
 System Services menu.  The Cepstral version of the ping is option 28,
 the Festival version of the ping is option 32.
 
 Please report problems and/or issues directly to me.  I'm trying to get
 ping.agi stable enough to release the source code for it under GPL.
 
 Thanks in advance,
 
 Eric aka ManxPower
-- 
Sample configs, scripts, more : http://www.fnords.org/~eric/asterisk/

BTEL Consulting 504-899-1387 or 850-484-4545 or 877-677-9643

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Ping AGI Demo

2003-11-05 Thread Robert Mann
Again great job.  It might be useful to have the IP address read back even on a
failed ping request.  At least then you would know that you typed the right IP
address.  Very well done.  I like it and look forward to its release.

Robert


- Original Message - 
From: Eric Wieling [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, November 05, 2003 8:49 PM
Subject: [Asterisk-Users] Ping AGI Demo


I have a ALPHA version of my new ping AGI demo available.

Access via:
  IAXTel 1-700-923-3645
or
  Dial(IAX2/[EMAIL PROTECTED])

When asked for an extension, enter 2101. This will bring you to the
System Services menu.  The Cepstral version of the ping is option 28,
the Festival version of the ping is option 32.

Please report problems and/or issues directly to me.  I'm trying to get
ping.agi stable enough to release the source code for it under GPL.

Thanks in advance,

Eric aka ManxPower

-- 
Sample configs, scripts, more : http://www.fnords.org/~eric/asterisk/

BTEL Consulting 504-899-1387 or 850-484-4545 or 877-677-9643

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users



___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Ping AGI Demo

2003-11-05 Thread Eric Wieling
Done.

On Wed, 2003-11-05 at 22:57, Robert Mann wrote:
 Again great job.  It might be useful to have the IP address read back even on a
 failed ping request.  At least then you would know that you typed the right IP
 address.  Very well done.  I like it and look forward to its release.
 
 Robert
 
 
 - Original Message - 
 From: Eric Wieling [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, November 05, 2003 8:49 PM
 Subject: [Asterisk-Users] Ping AGI Demo
 
 
 I have a ALPHA version of my new ping AGI demo available.
 
 Access via:
   IAXTel 1-700-923-3645
 or
   Dial(IAX2/[EMAIL PROTECTED])
 
 When asked for an extension, enter 2101. This will bring you to the
 System Services menu.  The Cepstral version of the ping is option 28,
 the Festival version of the ping is option 32.
 
 Please report problems and/or issues directly to me.  I'm trying to get
 ping.agi stable enough to release the source code for it under GPL.
 
 Thanks in advance,
 
 Eric aka ManxPower
-- 
Sample configs, scripts, more : http://www.fnords.org/~eric/asterisk/

BTEL Consulting 504-899-1387 or 850-484-4545 or 877-677-9643

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users