<div>Regarding my previous post:</div>
<div>&nbsp;</div>
<div>&gt;&quot;Is there an easy&nbsp;way to modify the filename of an incoming call's</div>
<div>&gt;recording, or are we stuck to agent-xxxx-&lt;unix timestamp&gt; format given to us by Asterisk?&nbsp;</div>
<div>&gt;</div>
<div>&gt;&nbsp;There seems to be&nbsp;neither an&nbsp;equivalent ChangeMonitor() application for incoming, nor you can tweak&nbsp;the recording's filename&nbsp;in agents.conf.&quot;</div>
<div>&nbsp;</div>
<div>It seems that the only way to change the filenaming incoming queue call recordings is by modifying this line here in chan_agent.c :</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; snprintf(filename, sizeof(filename), &quot;agent-%s-%s&quot;,p-&gt;agent, ast-&gt;uniqueid);</div>
<div>&nbsp;</div>
<div>But before I do that, is there a better way to do this, one that doesn't require modifying the source code?</div>