<div>
<style type="text/css">
.successful a, .successful a:visited, .successful a:link, .successful a:hover,.successful  a:active {color:#393}
.failed a, .failed a:visited, .failed a:link, .failed a:hover,.failed  a:active {color:#d62829}
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:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;">
        <tr>
        <td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
            <img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
        </td>
        <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px">
            <a href="http://bamboo.asterisk.org/browse/AST-162-115/" style="font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829">AST-162-115</a>
            <span class="failed" style="font-family: Arial, sans-serif; font-size: 14px;">failed.</span>
            <span class="failed" style="font-family: Arial, sans-serif; font-size: 13px;">
            <br/>Code has been updated by <a href="http://bamboo.asterisk.org/browse/author/qwell">qwell</a>, <a href="http://bamboo.asterisk.org/browse/author/twilson">twilson</a>, <a href="http://bamboo.asterisk.org/browse/author/oej">oej</a>, <a href="http://bamboo.asterisk.org/browse/author/rmudgett">rmudgett</a>, <a href="http://bamboo.asterisk.org/browse/user/pabelanger">Paul Belanger</a>, <a href="http://bamboo.asterisk.org/browse/author/dvossel">dvossel</a>, <a href="http://bamboo.asterisk.org/browse/user/tilghman">Tilghman Lesher</a>.
                <br/><strong>24/59</strong> tests failed.
            </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/AST-162-115/commit" 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">
                <a href="http://bamboo.asterisk.org/browse/AST-162-115/commit" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View all 11 code changes</a><img src="http://bamboo.asterisk.org/images/icons/more.gif" width="15" height="15" style="vertical-align:middle;padding:2px">
            </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/dvossel" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                           dvossel</a><br>
                        Blocked revisions 286070 via svnmerge<br/>
<br/>
........<br/>
&nbsp;&nbsp;r286070 | dvossel | 2010-09-10 15:03:50 -0500 (Fri, 10 Sep 2010) | 32 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Fixes sip extension state update DEADLOCK<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;PROBLEM:<br/>
&nbsp;&nbsp;In chan_sip, and all the other channel drivers, it is common for<br/>
&nbsp;&nbsp;us to hold the tech_pvt lock while we ask the Asterisk core about<br/>
&nbsp;&nbsp;an extension and context.&nbsp; Every time we do this the locking<br/>
&nbsp;&nbsp;order becomes, (1. tech_pvt lock ---&gt; 2. global context lock). In<br/>
&nbsp;&nbsp;chan_sip when a dialog subscribes to a hint, that locking order<br/>
&nbsp;&nbsp;is reversed in the extensionstate callback which will occur outside<br/>
&nbsp;&nbsp;of the channel_driver's monitor loop.&nbsp; So, on an extension state<br/>
&nbsp;&nbsp;update we have (1. global context lock ----&gt; 2. tech_pvt lock).<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Typically when we have to do a reversed locking order like this<br/>
&nbsp;&nbsp;we'd just do some sort of deadlock avoidance to fix the problem...<br/>
&nbsp;&nbsp;That will not work here.&nbsp; There are more locks involved here than<br/>
&nbsp;&nbsp;just the context and tech_pvt.&nbsp; Those are the two that are colliding,<br/>
&nbsp;&nbsp;but it is impossible to give up the context lock because the global<br/>
&nbsp;&nbsp;hints list lock MUST be held as well and we can not give that lock<br/>
&nbsp;&nbsp;up during the extensionstate callback traversal... The locking order<br/>
&nbsp;&nbsp;for the context and hints are (1. global context lock ----&gt; 2.<br/>
&nbsp;&nbsp;hints list lock).&nbsp; Deadlock avoidance is not an option here.<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;SOLUTION:<br/>
&nbsp;&nbsp;The solution this patch implements is to queue the extension state updates<br/>
&nbsp;&nbsp;into a list and send the NOTIFY messages out during the do_monitor pvt<br/>
&nbsp;&nbsp;traversal.&nbsp; This clears out the problem of having to hold the context<br/>
&nbsp;&nbsp;lock before the tech_pvt lock entirely.<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;(closes issue #17888)<br/>
&nbsp;&nbsp;Reported by: zerohalo<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">
                         (286071)
                    </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>
                        Merged revisions 286059 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/1.4">https://origsvn.digium.com/svn/asterisk/branches/1.4</a><br/>
<br/>
........<br/>
&nbsp;&nbsp;r286059 | twilson | 2010-09-10 14:25:08 -0500 (Fri, 10 Sep 2010) | 16 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Inherit CHANNEL() writes to both sides of a Local channel<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Having Local (/n) channels as queue members and setting the language in the<br/>
&nbsp;&nbsp;extension with Set(CHANNEL(language)=fr) sets the language on the Local/...,2<br/>
&nbsp;&nbsp;channel. Hold time report playbacks happen on the Local/...,1 channel and<br/>
&nbsp;&nbsp;therefor do not play in the specified language.<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;This patch modifies func_channel_write to call the setoption callback and pass<br/>
&nbsp;&nbsp;the CHANNEL() write info to the callback. chan_local uses this information to<br/>
&nbsp;&nbsp;look up the other side of the channel and apply the same changes to it.<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;(closes issue #17673)<br/>
&nbsp;&nbsp;Reported by: Guggemand<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Review: <a href="https://reviewboard.asterisk.org/r/903/">https://reviewboard.asterisk.org/r/903/</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">
                         (286115)
                    </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/user/tilghman" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                           Tilghman Lesher</a><br>
                        Refactor conversion to ast_poll() to fix callparking regression.<br/>

                    </td>
                    <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                         (286527)
                    </td></tr>
            <tr><td colspan="3">
                <br/><a href="http://bamboo.asterisk.org/browse/AST-162-115/commit" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">8 more changes...</a>
            </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;vertical-align:top;padding:5px 10px">
                        <a href="http://bamboo.asterisk.org/browse/AST-162-115/test" style="text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036" >Tests</a>
                    </td>
                    <td width="40%" style="font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px">
                        <a href="http://bamboo.asterisk.org/browse/AST-162-115/test" style="font-family: Arial, sans-serif; font-size: 13px;color:#036">See full test details</a><img src="http://bamboo.asterisk.org/images/icons/more.gif" width="15" height="15" style="vertical-align:middle;padding:2px">
                    </td>
                </tr>
            </table>
            <table width="100%" border="0" cellpadding="0" cellspacing="0">


                    <tr>
                        <td colspan="2" width="100%" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px">
                            Failed Tests (24)
                        </td>
                    </tr>
<tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147199" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Blind-transfer-parkingtimeout</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147197" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Chanspy/chanspy barge</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147214" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Directed pickup</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147211" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/channel-status</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147204" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/connect</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147201" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/control-stream-file</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147198" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/database</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147209" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/execute</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147208" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/get-data</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147202" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/hangup</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147205" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/record-file</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147212" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-alpha</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147196" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-date</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147194" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-datetime</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147195" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-digits</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147215" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-number</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147207" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-phonetic</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147203" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/say-time</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147213" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Fastagi/stream-file</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147200" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Feature attended transfer</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147216" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Feature blonde transfer</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147206" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Iax2/basic-call</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147210" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">One-step-parking</a>
<span style="color:#999">(New)</span>
</td>
</tr><tr>
<td width="20" style="vertical-align:top;padding:5px 0 5px 10px">
<img src="http://bamboo.asterisk.org/images/jt/icn_plan_failed.gif" width="15" height="15">
</td>
<td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:5px 10px">
AsteriskTestSuite :
<a href="http://bamboo.asterisk.org/browse/AST-162-115/test/case/1147217" style="font-family: Arial, sans-serif; font-size: 13px;color:#000">Callparking</a>
<span style="color:#999">(Existing)</span>
</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;padding-bottom:10px">
                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>
            <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">
                <a href="http://www.atlassian.com/software/ideconnector/" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">Want this information in your IDE?</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/AST-162-115/" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Online</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/browse/AST-162-115/comment" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Add Comments</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/browse/AST-162-115/artifact" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Artifacts</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/download/AST-162/build_logs/AST-162-115.log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Download Logs</a>
                    <br>
                </td>
            </tr>
        </table>
    </td>
<tr>
</table>
</font>
</div>