<div>
<style type="text/css">
td a, td a:link, td a:visited, td a:hover, td a:active {background:transparent;font-family: Arial, sans-serif;text-decoration:underline;}
td a:link {color:#369;}
td a:visited {color:#444;}
td a:hover, td a:active {color:#036;}
td a:hover {text-decoration:none;}
</style>
<font size="2" color="black" face="Arial, Helvetica, sans-serif" style="font-family: Arial, sans-serif;font-size: 13px;color:#000">

    <table align="center" border="0" cellpadding="5" cellspacing="0" width="98%">
        <tr>
            <td style="vertical-align:top">
            <table width="100%" border="0" cellpadding="0" cellspacing="0" style="background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;">
            <tr>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;padding:5px 10px">
                    <a href="http://bamboo.asterisk.org/browse/AST18-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#000">AST18-FREEBSD81-I386-332</a>
                    <span style="font-family: Arial, sans-serif; font-size: 14px;"> has been queued, but there's no agent capable of building it.</span>
                </td>
            </tr>
            </table>
            <br>

  <table width="100%" border="0" cellpadding="0" cellspacing="0" style="background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;">
        <tr>
            <td width="60%" style="font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px">
                <a href="http://bamboo.asterisk.org/browse/AST18-FREEBSD81-I386/log" style="text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036" >Code Changes</a>
            </td>
            <td width="40%" style="font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px">
            </td>
        </tr>
   </table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/twilson" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       twilson</a><br>
                    Add a separate buffer for SRTCP packets<br/>
<br/>
The function ast_srtp_protect used a common buffer for both SRTP and SRTCP<br/>
packets. Since this function can be called from multiple threads for the same<br/>
SRTP session (scheduler for SRTCP and channel for SRTP) it was possible for the<br/>
packets to become corrupted as the buffer was used by both threads<br/>
simultaneously.<br/>
<br/>
This patch adds a separate buffer for SRTCP packets to avoid the problem.<br/>
<br/>
(closes issue ASTERISK-18889, Reported/patch by Daniel Collins)<br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (347995)
                </td></tr>
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/schmidts" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       schmidts</a><br>
                    Fix possible misshandling of an incoming SIP response as a peer poke response.<br/>
Also make sure peer has even qualify enabled when handle a peer poke response.<br/>
<br/>
(closes issue ASTERISK-18940)<br/>
Reported by: Vitaliy<br/>
Tested by: Vitaliy and UnixDev<br/>
<br/>
Review: <a href="https://reviewboard.asterisk.org/r/1620">https://reviewboard.asterisk.org/r/1620</a><br/>
Reviewed by: David Vossel<br/>
<br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (348048)
                </td></tr>
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/rmudgett" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       rmudgett</a><br>
                    Fix FollowMe CallerID on outgoing calls.<br/>
<br/>
The addition of the Connected Line support changed how CallerID is passed<br/>
to outgoing calls.&nbsp; The FollowMe application was not updated to pass<br/>
CallerID to the outgoing calls.<br/>
<br/>
* Fix FollowMe CallerID on outgoing calls.<br/>
<br/>
* Restructured findmeexec() to fix several memory leaks and eliminate some<br/>
duplicated code.<br/>
<br/>
* Made check the return value of create_followme_number().&nbsp; Putting a NULL<br/>
into the numbers list is bad if create_followme_number() fails.<br/>
<br/>
* Fixed a couple uses of ast_strdupa() inside loops.<br/>
<br/>
* The changes to bridge_builtin_features.c fix a similar CallerID issue<br/>
with the bridging API attended and blind transfers.&nbsp; (Not used at this<br/>
time.)<br/>
<br/>
(closes issue ASTERISK-17557)<br/>
Reported by: hamlet505a<br/>
Tested by: rmudgett<br/>
<br/>
Review: <a href="https://reviewboard.asterisk.org/r/1612/">https://reviewboard.asterisk.org/r/1612/</a><br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (348101)
                </td></tr>
    <tr><td colspan="3">
        <br/><a href="http://bamboo.asterisk.org/browse/AST18-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">3 more changes...</a>
    </td></tr>
</table><br>

<table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr><td colspan="2" align="center" style="font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px">
        Email generated by <a href="http://bamboo.asterisk.org" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">Atlassian Bamboo</a> - if you wish to stop receiving these emails edit your  <a href="http://bamboo.asterisk.org/profile/userNotifications.action" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">user profile</a> or <a href="http://bamboo.asterisk.org/viewAdministrators.action" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">notify your administrator</a>
    </td>
    </tr>
</table>

            </td>
            <td width="150" style="vertical-align:top">
    <table width="150" border="0" cellpadding="0" cellspacing="0" style="background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;">
        <tr>
            <td style="font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px">
                Actions
            </td>
        </tr>
    </table>
    <table width="150" border="0" cellpadding="0" cellspacing="0" style="background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;">
        <tr>
            <td style="font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7">
    <a href="http://bamboo.asterisk.org/browse/AST18-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Online</a>
    <br>
    <a href="http://bamboo.asterisk.org/build/admin/stopPlan.action?planKey=AST18-FREEBSD81-I386" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Stop Build</a>
    <br>
            </td>
        </tr>
    </table>
            </td>
        <tr>
    </table>
</font>
</div>