Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[asterisk-users] 11.21,2 : how to transfer to Jolly Roger ?


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> Asterisk Users
View previous topic :: View next topic  
Author Message
seandarcy2 at gmail.com
Guest





PostPosted: Thu Feb 25, 2016 5:14 pm    Post subject: [asterisk-users] 11.21,2 : how to transfer to Jolly Roger ? Reply with quote

I'd like to transfer all my pesky telemarketing calls to Jolly Roger .

http://www.nytimes.com/2016/02/25/fashion/a-robot-that-has-fun-at-telemarketers-expense.html

In the middle of a call I'd hit some DTMF sequence, which would dial
Jolly Roger and transfer the call after Jolly Roger answers.

But blindtransfer requires an extension after you hear "transfer". And I
don't want the caller to hear "transfer", or hear the dialing sequence.

Any suggestions ?

sean


--
_____________________________________________________________________
-- 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
Back to top
johnkiniston at gmail.com
Guest





PostPosted: Thu Feb 25, 2016 5:24 pm    Post subject: [asterisk-users] 11.21,2 : how to transfer to Jolly Roger ? Reply with quote

You can do this with setting up an application map using DYNAMIC_FEATURES and enabling it on your incoming call paths.

https://wiki.asterisk.org/wiki/display/AST/Custom+Dynamic+Features


If you don't want to even answer the calls you could try doing this with 'ex-girlfriend logic', I personally have my extension set up so that callers from outside my state go directly to Voicemail.

exten => 7132/_480NXXXXXX,1,Goto(RING)
exten => 7132/_520NXXXXXX,1,Goto(RING)
exten => 7132/_602NXXXXXX,1,Goto(RING)
exten => 7132/_623NXXXXXX,1,Goto(RING)
exten => 7132/_928NXXXXXX,1,Goto(RING)
exten => 7132,1,Voicemail(7132@{CUSTGROUP},u)
exten => 7132,n,Hangup()
exten => 7132,n(RING),Gosub(sub-stdexten2,7132,1({CUSTGROUP},{CUSTGROUP}-operator,7133,,SIP/7132${CUSTGROUP}))


You can see I'm using a pattern-match to send calls from my in-state area codes to the 'RING' label, other calls are answered by voicemail.





On Thu, Feb 25, 2016 at 3:13 PM, sean darcy <seandarcy2@gmail.com (seandarcy2@gmail.com)> wrote:
Quote:
I'd like to transfer all my pesky telemarketing calls to Jolly Roger .

http://www.nytimes.com/2016/02/25/fashion/a-robot-that-has-fun-at-telemarketers-expense.html

In the middle of a call I'd hit some DTMF sequence, which would dial Jolly Roger and transfer the call after Jolly Roger answers.

But blindtransfer requires an extension after you hear "transfer". And I don't want the caller to hear "transfer", or hear the dialing sequence.

Any suggestions ?

sean


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



--
A human being should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.
---Heinlein
Back to top
seandarcy2 at gmail.com
Guest





PostPosted: Sat Feb 27, 2016 2:29 pm    Post subject: [asterisk-users] 11.21,2 : how to transfer to Jolly Roger ? Reply with quote

On 02/25/2016 05:23 PM, John Kiniston wrote:
Quote:
You can do this with setting up an application map using
DYNAMIC_FEATURES and enabling it on your incoming call paths.

https://wiki.asterisk.org/wiki/display/AST/Custom+Dynamic+Features

If you don't want to even answer the calls you could try doing this with
'ex-girlfriend logic', I personally have my extension set up so that
callers from outside my state go directly to Voicemail.

exten => 7132/_480NXXXXXX,1,Goto(RING)
exten => 7132/_520NXXXXXX,1,Goto(RING)
exten => 7132/_602NXXXXXX,1,Goto(RING)
exten => 7132/_623NXXXXXX,1,Goto(RING)
exten => 7132/_928NXXXXXX,1,Goto(RING)
exten => 7132,1,Voicemail(7132@{CUSTGROUP},u)
exten => 7132,n,Hangup()
exten =>
7132,n(RING),Gosub(sub-stdexten2,7132,1({CUSTGROUP},{CUSTGROUP}-operator,7133,,SIP/7132${CUSTGROUP}))

You can see I'm using a pattern-match to send calls from my in-state
area codes to the 'RING' label, other calls are answered by voicemail.


On Thu, Feb 25, 2016 at 3:13 PM, sean darcy <seandarcy2@gmail.com
<mailto:seandarcy2@gmail.com>> wrote:

I'd like to transfer all my pesky telemarketing calls to Jolly Roger .

http://www.nytimes.com/2016/02/25/fashion/a-robot-that-has-fun-at-telemarketers-expense.html

In the middle of a call I'd hit some DTMF sequence, which would dial
Jolly Roger and transfer the call after Jolly Roger answers.

But blindtransfer requires an extension after you hear "transfer".
And I don't want the caller to hear "transfer", or hear the dialing
sequence.

Any suggestions ?

sean


Brillliant. Here's what worked.

In features.conf:

[applicationmap]
.......
jollyroger = *8,peer,Dial,"MOTIF/xxxx/+12146664321@voice.google.com"

In extensions.conf:

Set(_DYNAMIC_FEATURES=jollyroger)

Now eagerly awaiting a spam call !!




--
_____________________________________________________________________
-- 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
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> Asterisk Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services