[asterisk-bugs] [JIRA] (ASTERISK-26008) app_followme does not delere recorded name prompt

Tzafrir Cohen (JIRA) noreply at issues.asterisk.org
Tue May 10 07:28:56 CDT 2016


Tzafrir Cohen created ASTERISK-26008:
----------------------------------------

             Summary: app_followme does not delere recorded name prompt
                 Key: ASTERISK-26008
                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-26008
             Project: Asterisk
          Issue Type: Bug
      Security Level: None
          Components: Applications/app_followme
    Affects Versions: 13.8.2, 13.7.2
            Reporter: Tzafrir Cohen
            Severity: Minor


FollowMe has an option (a) to record name of the caller. It is recorded into a temporary file, that is played to the callee and should be deleted in the end of the run of the application.

Tested in branch 13, but as app_followme has not changed for a while, it should apply to master as well.

Test:
{noformat}
rm -f /var/spool/asterisk/followme.*
asterisk -rx 'channel originate Local/followme-origin at test application FollowMe test,a'
sleep 30
ls /var/spool/asterisk/followme.*
# output: /var/spool/asterisk/followme.1462882781.58.sln
{noformat}

The problem is that the unlink is done to the file name without the .sln extension. A patch will follow soon.

Configuration below:

/etc/asterisk/followme.conf:
{noformat}
[general]

[test]
context = test
musicclass = default
number = 1234
{noformat}

/etc/asterisk/extensions.conf:
{noformat}
[general]
[globals]
[test]
exten => 1234,1,Answer
 same => n,Echo
 same => n,Hangup

exten => followme-origin,1,Answer
 same => n,Wait(5)
 same => n,SendDTMF(#)
 same => n,Wait(5)
 same => n,SendDTMF(1)
 same => n,Hangup
{noformat}



--
This message was sent by Atlassian JIRA
(v6.2#6252)



More information about the asterisk-bugs mailing list