[asterisk-bugs] [Asterisk 0016759]: Attended transfers get incorrect voicemail.

Asterisk Bug Tracker noreply at bugs.digium.com
Thu Feb 4 15:01:04 CST 2010


A NOTE has been added to this issue. 
====================================================================== 
https://issues.asterisk.org/view.php?id=16759 
====================================================================== 
Reported By:                Herb
Assigned To:                
====================================================================== 
Project:                    Asterisk
Issue ID:                   16759
Category:                   Resources/res_features
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     feedback
Asterisk Version:           1.6.1.14 
JIRA:                        
Regression:                 No 
Reviewboard Link:            
SVN Branch (only for SVN checkouts, not tarball releases): N/A 
SVN Revision (number only!):  
Request Review:              
====================================================================== 
Date Submitted:             2010-02-02 22:00 CST
Last Modified:              2010-02-04 15:01 CST
====================================================================== 
Summary:                    Attended transfers get incorrect voicemail.
Description: 
Callers who get automated transferred but fail to get answered end up
getting the voicemail of the transferer and not the callee.

Person A calls Person B
Person B xfers Person A to Person C
Person C does not answer.
Person A gets voicemail of Person B.

This is version 1.6.1.13.  Fresh install/compile.  Using my current config
files.

Blind transfers work correct.  If you blind transfer the person will get
the correct voicemail.
======================================================================
Relationships       ID      Summary
----------------------------------------------------------------------
related to          0015347 Unanswered attended transfers get the v...
====================================================================== 

---------------------------------------------------------------------- 
 (0117755) lmadsen (administrator) - 2010-02-04 15:01
 https://issues.asterisk.org/view.php?id=16759#c117755 
---------------------------------------------------------------------- 
Something like this should work (note that 'sub' is not required -- I just
add it for personal use. Also, I changed 's' to 'start' as that is my
personal preference)

exten => XXXX143,1,GoSub(sub-vm,start,1(vm,143))

[sub-vm]
include => default
exten => start,1,Dial(SIP/${ARG1},15,tTkK)
exten => start,n,Goto(start-${DIALSTATUS},1)
exten => start-NOANSWER,1,VoiceMail(${ARG1},su)
exten => start-NOANSWER,n,Goto(default,s,1)
exten => start-BUSY,1,VoiceMail(${ARG1},sb)
exten => start-BUSY,n,Goto(default,s,1)
exten => _start-.,1,Goto(start-NOANSWER,1) 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2010-02-04 15:01 lmadsen        Note Added: 0117755                          
======================================================================




More information about the asterisk-bugs mailing list