<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/AST162-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#000">AST162-FREEBSD81-I386-126</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/AST162-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>
                    Merge missing bugfix for issue #11583<br/>
<br/>
This is the combination of two commits that made it into 1.4, 1.6.0,<br/>
1.6.1, and trunk (and therefor 1.8) but that was missed for 1.6.2.<br/>
<br/>
........<br/>
&nbsp;&nbsp;r183386 | dvossel | 2009-03-19 14:40:07 -0500 (Thu, 19 Mar 2009) | 6 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Cleaning up a few things in detect disconnect patch<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Initialized ast_call_feature in detect_disconnect to avoid accessing uninitialized memory.&nbsp; Cleaned up /param tags in features.h.&nbsp; No longer send dynamic features in ast_feature_detect. <br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;issue #11583<br/>
........<br/>
........<br/>
&nbsp;&nbsp;r183126 | dvossel | 2009-03-19 11:15:16 -0500 (Thu, 19 Mar 2009) | 17 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Allow disconnect feature before a call is bridged<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;feature.conf has a disconnect option.&nbsp; By default this option is set to '*', but it could be anything.&nbsp; If a user wishes to disconnect a call before the other side answers, only '*' will work, regardless if the disconnect option is set to something else.&nbsp; This is because features are unavailable until bridging takes place.&nbsp; The default disconnect option, '*', was hardcoded in app_dial, which doesn't make any sense from a user perspective since they may expect it to be something different.&nbsp; This patch allows features to be detected from outside of the bridge, but not operated on.&nbsp; In this case, the disconnect feature can be detected before briding and handled outside of features.c.<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;(closes issue #11583)<br/>
&nbsp;&nbsp;Reported by: sobomax<br/>
&nbsp;&nbsp;Patches:<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;patch-apps__app_dial.c uploaded by sobomax (license 359)<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;11583.latest-patch uploaded by murf (license 17)<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;detect_disconnect.diff uploaded by dvossel (license 671)<br/>
&nbsp;&nbsp;Tested by: sobomax, dvossel<br/>
&nbsp;&nbsp;Review: <a href="http://reviewboard.digium.com/r/195/">http://reviewboard.digium.com/r/195/</a><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">
                     (308677)
                </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/twilson" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       twilson</a><br>
                    Use remotesecret to authenticate with a remote party<br/>
<br/>
The remotesecret option was only being used for outbound registration<br/>
and not for placing calls. This patch uses remotesecret on outbound<br/>
calls if it is set, otherwise secret is still used.<br/>
<br/>
Review: <a href="https://reviewboard.asterisk.org/r/1107/">https://reviewboard.asterisk.org/r/1107/</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">
                     (308678)
                </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/AST162-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=AST162-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>