<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-MACOS106TRUNK-164/" style="font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829">AST-MACOS106TRUNK-164</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/twilson">twilson</a>, <a href="http://bamboo.asterisk.org/browse/author/qwell">qwell</a>, <a href="http://bamboo.asterisk.org/browse/user/russell">Russell Bryant</a>, <a href="http://bamboo.asterisk.org/browse/author/rmudgett">rmudgett</a>, <a href="http://bamboo.asterisk.org/browse/author/bbryant">bbryant</a>, <a href="http://bamboo.asterisk.org/browse/author/dvossel">dvossel</a>, <a href="http://bamboo.asterisk.org/browse/user/pitel">Bc. Jan Kalab</a>, <a href="http://bamboo.asterisk.org/browse/user/tilghman">Tilghman Lesher</a>.
                <br/>No failed tests found, a possible compilation error.
            </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-MACOS106TRUNK-164/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-MACOS106TRUNK-164/commit" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View all 37 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>
                        Merged revisions 285564 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
<br/>
................<br/>
  r285564 | dvossel | 2010-09-08 16:48:37 -0500 (Wed, 08 Sep 2010) | 60 lines<br/>
  <br/>
  Merged revisions 285563 via svnmerge from <br/>
  <a href="https://origsvn.digium.com/svn/asterisk/branches/1.6.2">https://origsvn.digium.com/svn/asterisk/branches/1.6.2</a><br/>
  <br/>
  ........<br/>
    r285563 | dvossel | 2010-09-08 16:47:29 -0500 (Wed, 08 Sep 2010) | 54 lines<br/>
    <br/>
    Fixes interoperability problems with session timer behavior in Asterisk.<br/>
    <br/>
    CHANGES:<br/>
    1. Never put "timer" in "Require" header.  This is not to our benefit<br/>
    and RFC 4028 section 7.1 even warns against it.  It is possible for one<br/>
    endpoint to perform session-timer refreshes while the other endpoint does<br/>
    not support them.  If in this case the end point performing the refreshing<br/>
    puts "timer" in the Require field during a refresh, the dialog will<br/>
    likely get terminated by the other end.<br/>
    <br/>
    2. Change the behavior of 'session-timer=accept' in sip.conf (which is<br/>
    the default behavior of Asterisk with no session timer configuration<br/>
    specified) to only run session-timers as result of an incoming INVITE<br/>
    request if the INVITE contains an "Session-Expires" header... Asterisk is<br/>
    currently treating having the "timer" option in the "Supported" header as<br/>
    a request for session timers by the UAC.  I do not agree with this.  Session<br/>
    timers should only be negotiated in "accept" mode when the incoming INVITE<br/>
    supplies a "Session-Expires" header, otherwise RFC 4028 says we should<br/>
    treat a request containing no "Session-Expires" header as a session with<br/>
    no expiration.<br/>
    <br/>
    Below I have outlined some situations and what Asterisk's behavior is.<br/>
    The table reflects the behavior changes implemented by this patch.<br/>
    <br/>
    SITUATIONS:<br/>
    -Asterisk as UAS<br/>
    1. Incoming INVITE: NO  "Session-Expires"<br/>
    2. Incoming INVITE: HAS "Session-Expires"<br/>
    <br/>
    -Asterisk as UAC<br/>
    3. Outgoing INVITE: NO  "Session-Expires". 200 Ok Response HAS "Session-Expires" header<br/>
    4. Outgoing INVITE: NO  "Session-Expires". 200 Ok Response NO  "Session-Expires" header<br/>
    5. Outgoing INVITE: HAS "Session-Expires".<br/>
    <br/>
    Active   - Asterisk will have an active refresh timer regardless if the other endpoint does.<br/>
    Inactive - Asterisk does not have an active refresh timer regardless if the other endpoint does.<br/>
    XXXXXXX  - Not possible for mode.<br/>
    ______________________________________<br/>
    |SITUATIONS | 'session-timer' MODES  |<br/>
    |___________|________________________|<br/>
    |           | originate  |  accept   |<br/>
    |-----------|------------|-----------|<br/>
    |1.         |   Active   | Inactive  |<br/>
    |2.         |   Active   |  Active   |<br/>
    |3.         | XXXXXXXX   | Active    |<br/>
    |4.         | XXXXXXXX   | Inactive  |<br/>
    |5.         |   Active   | XXXXXXXX  |<br/>
    --------------------------------------<br/>
    <br/>
    <br/>
    (closes issue #17005)<br/>
    Reported by: alexrecarey<br/>
  ........<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">
                         (285565)
                    </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>
                        Merged revisions 284666 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
<br/>
................<br/>
  r284666 | tilghman | 2010-09-02 11:11:15 -0500 (Thu, 02 Sep 2010) | 9 lines<br/>
  <br/>
  Merged revisions 284665 via svnmerge from <br/>
  <a href="https://origsvn.digium.com/svn/asterisk/branches/1.6.2">https://origsvn.digium.com/svn/asterisk/branches/1.6.2</a><br/>
  <br/>
  ........<br/>
    r284665 | tilghman | 2010-09-02 11:07:19 -0500 (Thu, 02 Sep 2010) | 2 lines<br/>
    <br/>
    Fixing build.<br/>
  ........<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">
                         (284667)
                    </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>
                        Merged revisions 285371 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
<br/>
........<br/>
  r285371 | rmudgett | 2010-09-07 16:08:35 -0500 (Tue, 07 Sep 2010) | 1 line<br/>
  <br/>
  Fix cut-n-paste error.<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">
                         (285372)
                    </td></tr>
            <tr><td colspan="3">
                <br/><a href="http://bamboo.asterisk.org/browse/AST-MACOS106TRUNK-164/commit" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">34 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;padding:5px 10px">
                        <a href="http://bamboo.asterisk.org/browse/AST-MACOS106TRUNK-164/log" style="text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036" >Error Summary</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-MACOS106TRUNK-164/log" style="font-family: Arial, sans-serif; font-size: 13px;color:#036">See full build log</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" style="background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px">
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    Could not find ant Junit test results in the /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK directory.<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    svn: This client is too old to work with working copy '.'; please get a newer Subversion client<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    cc1: warnings being treated as errors<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    In file included from /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/select.h:29,<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                                     from /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/poll-compat.h:83,<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                                     from /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/compat.h:74,<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                                     from /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk.h:28,<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                                     from ael_lex.c:20:<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/utils.h: In function ‚Äò_ast_strndup‚Äô:<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/utils.h:559: warning: implicit declaration of function ‚Äòstrndup‚Äô<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    /srv/bamboo/xml-data/build-dir/AST-MACOS106TRUNK/include/asterisk/utils.h:559: warning: incompatible implicit declaration of built-in function ‚Äòstrndup‚Äô<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    make[1]: *** [aelparse.o] Error 1<br/>
                </td>
                </tr>
               <tr>
                <td width="100%" style="font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top">
                    make: *** [utils] Error 2<br/>
                </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-MACOS106TRUNK-164/" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Online</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/browse/AST-MACOS106TRUNK-164/comment" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Add Comments</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/browse/AST-MACOS106TRUNK-164/artifact" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Artifacts</a>
                    <br>
                    <a href="http://bamboo.asterisk.org/download/AST-MACOS106TRUNK/build_logs/AST-MACOS106TRUNK-164.log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Download Logs</a>
                    <br>
                </td>
            </tr>
        </table>
    </td>
<tr>
</table>
</font>
</div>