<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <font size="-1"><font face="Arial">hi,<br>
        <br>
        i converted the bash script to python as below:<br>
        <br>
        ret = subprocess.Popen('sudo fs_cli -x \"show channels\" | grep
        -c \"'+UUID+'\"', shell=True, stdout=subprocess.PIPE,
        stderr=subprocess.PIPE)<br>
        sout, serr = ret.communicate()<br>
        print sout<br>
        <br>
        the reason i use -c instead of -q is because fs_cli always
        returns a 0 exit code so it doesnt work through python when
        combined with grep so i tried to exit loop when the counter is 0
        meaning the call is completed, but the above returns some weird
        numbers in sout, when the call is running it shows 5 and when
        done shows 3 but same if i run directly through console it shows
        accurately.<br>
        <br>
        any idea how to fix this?<br>
        <br>
        <br>
      </font></font>
    <div class="moz-signature">
      <style>
body {
  font-family: Verdana, sans-serif;
  font-size: 0.8em;
  color:#484848;
}
h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin:0in; margin-bottom:.0001pt; }
p.footr { font-family: "Trebuchet MS", Verdana, sans-serif; margin:0in; margin-bottom:.0001pt; }
h1 { font-size: 1.2em; }
h2, h3 { font-size: 1.1em; }
a, a:link, a:visited { color: #2A5685;}
a:hover, a:active { color: #c61a1a; }
a.wiki-anchor { display: none; }
hr {
  width: 100%;
  height: 1px;
  background: #ccc;
  border: 0;
}
</style>Regards,<br>
      Bipin<br>
      <br>
      <br>
      <hr>
    </div>
    <div class="moz-cite-prefix">-------- Original Message --------<br>
      Subject: Re: [Freeswitch-users] return to shell only when call
      from originate is complete?<br>
      From: William Simon <a class="moz-txt-link-rfc2396E" href="mailto:wsimon@stratusvideo.com"><wsimon@stratusvideo.com></a><br>
      To: FreeSWITCH Users Help
      <a class="moz-txt-link-rfc2396E" href="mailto:freeswitch-users@lists.freeswitch.org"><freeswitch-users@lists.freeswitch.org></a><br>
      Date: 5/20/2017, 1:29:05 AM<br>
    </div>
    <blockquote type="cite"
      cite="mid:4112C9C4-5BAA-408F-9731-8B11F3CCDAD8@stratusvideo.com">
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <div style="word-wrap: break-word; -webkit-nbsp-mode: space;
        -webkit-line-break: after-white-space;" class="">
        <div class="">If you are using fs_cli then a simple shell script
          can monitor the call and return when the call completes:</div>
        <div class=""><br class="">
        </div>
        <div class="">#!/bin/bash<br class="">
          <br class="">
          RESULT=$( fs_cli -x "originate leg1 leg2" )<br class="">
          <br class="">
          if [[ $RESULT =~ "OK" ]]; then<br class="">
                  UUID=$( echo "$RESULT" | cut -f 2 -d ' ' )<br class="">
                  while fs_cli -x "show channels" | grep -q $UUID ;<br
            class="">
                  do<br class="">
                          sleep 5;<br class="">
                  done<br class="">
                  echo "Call completed."<br class="">
          fi<br class="">
          <br class="">
        </div>
        <div class=""><br class="">
        </div>
        <div class=""><br class="">
        </div>
        <br class="">
        <div class="">
          <blockquote type="cite" class="">
            <div class="">On May 19, 2017, at 12:31 PM, Bipin Patel <<a
                href="mailto:bipin@xbipin.com" class=""
                moz-do-not-send="true">bipin@xbipin.com</a>> wrote:</div>
            <br class="Apple-interchange-newline">
            <div class=""><font style="color: rgb(72, 72, 72);
                font-family: Verdana, sans-serif; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" size="-1"><font class=""
                  face="Arial">hi,<br class="">
                  <br class="">
                  any other way this can be done<span
                    class="Apple-converted-space"> </span><br class="">
                  <br class="">
                  <br class="">
                </font></font><span style="color: rgb(72, 72, 72);
                font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class=""></span>
              <div class="moz-signature" style="color: rgb(72, 72, 72);
                font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);">
                Regards,<br class="">
                Bipin<br class="">
                <br class="">
                <br class="">
                <hr style="width: 1065px; height: 1px; background-color:
                  rgb(204, 204, 204); border: 0px; background-position:
                  initial initial; background-repeat: initial initial;"
                  class="">
              </div>
              <div class="moz-cite-prefix" style="color: rgb(72, 72,
                72); font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);">
                -------- Original Message --------<br class="">
                Subject: Re: [Freeswitch-users] return to shell only
                when call from originate is complete?<br class="">
                From: Michael Jerris<span class="Apple-converted-space"> </span><a
                  class="moz-txt-link-rfc2396E"
                  href="mailto:mike@jerris.com" style="color: rgb(42,
                  86, 133);" moz-do-not-send="true"><mike@jerris.com></a><br
                  class="">
                To: Bipin Patel<span class="Apple-converted-space"> </span><a
                  class="moz-txt-link-rfc2396E"
                  href="mailto:bipin@xbipin.com" style="color: rgb(42,
                  86, 133);" moz-do-not-send="true"><bipin@xbipin.com></a><br
                  class="">
                Date: 5/19/2017, 7:48:22 PM<br class="">
              </div>
              <blockquote type="cite"
                cite="mid:4E8BF635-E985-4056-B301-A1EEFF702B09@jerris.com"
                style="font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
                No, thats not what originate does.
                <div class=""><br class="">
                  <div class="">
                    <blockquote type="cite" class="">
                      <div class="">On May 19, 2017, at 11:43 AM, Bipin
                        Patel <<a href="mailto:bipin@xbipin.com"
                          class="" moz-do-not-send="true" style="color:
                          rgb(42, 86, 133);">bipin@xbipin.com</a>>
                        wrote:</div>
                      <br class="Apple-interchange-newline">
                      <div class=""><font class="" style="color: rgb(72,
                          72, 72); font-family: Verdana, sans-serif;
                          font-style: normal; font-variant-caps: normal;
                          font-weight: normal; letter-spacing: normal;
                          text-align: start; text-indent: 0px;
                          text-transform: none; white-space: normal;
                          word-spacing: 0px; -webkit-text-stroke-width:
                          0px; background-color: rgb(255, 255, 255);"
                          size="-1"><font class="" face="Arial">hi,<br
                              class="">
                            <br class="">
                            does it happen right after answer?<br
                              class="">
                            is there any way to lock it so it returns
                            only after failure or after hangup? yes im
                            using ignore_early_media<br class="">
                            <br class="">
                            <br class="">
                          </font></font><span class="" style="color:
                          rgb(72, 72, 72); font-family: Verdana,
                          sans-serif; font-size: 9.600000381469727px;
                          font-style: normal; font-variant-caps: normal;
                          font-weight: normal; letter-spacing: normal;
                          text-align: start; text-indent: 0px;
                          text-transform: none; white-space: normal;
                          word-spacing: 0px; -webkit-text-stroke-width:
                          0px; background-color: rgb(255, 255, 255);
                          float: none; display: inline !important;"></span>
                        <div class="moz-signature" style="color: rgb(72,
                          72, 72); font-family: Verdana, sans-serif;
                          font-size: 9.600000381469727px; font-style:
                          normal; font-variant-caps: normal;
                          font-weight: normal; letter-spacing: normal;
                          text-align: start; text-indent: 0px;
                          text-transform: none; white-space: normal;
                          word-spacing: 0px; -webkit-text-stroke-width:
                          0px; background-color: rgb(255, 255, 255);">
                          Regards,<br class="">
                          Bipin<br class="">
                          <br class="">
                          <br class="">
                          <hr class="" style="width: 1045px; height:
                            1px; background-color: rgb(204, 204, 204);
                            border: 0px; background-position: initial
                            initial; background-repeat: initial
                            initial;">
                        </div>
                        <div class="moz-cite-prefix" style="color:
                          rgb(72, 72, 72); font-family: Verdana,
                          sans-serif; font-size: 9.600000381469727px;
                          font-style: normal; font-variant-caps: normal;
                          font-weight: normal; letter-spacing: normal;
                          text-align: start; text-indent: 0px;
                          text-transform: none; white-space: normal;
                          word-spacing: 0px; -webkit-text-stroke-width:
                          0px; background-color: rgb(255, 255, 255);">
                          -------- Original Message --------<br class="">
                          Subject: Re: [Freeswitch-users] return to
                          shell only when call from originate is
                          complete?<br class="">
                          From: Michael Jerris<span
                            class="Apple-converted-space"> </span><a
                            class="moz-txt-link-rfc2396E"
                            href="mailto:mike@jerris.com"
                            moz-do-not-send="true" style="color: rgb(42,
                            86, 133);"><mike@jerris.com></a><br
                            class="">
                          To: FreeSWITCH Users Help<span
                            class="Apple-converted-space"> </span><a
                            class="moz-txt-link-rfc2396E"
                            href="mailto:freeswitch-users@lists.freeswitch.org"
                            moz-do-not-send="true" style="color: rgb(42,
                            86, 133);"><freeswitch-users@lists.freeswitch.org></a><br
                            class="">
                          Date: 5/19/2017, 7:34:35 PM<br class="">
                        </div>
                        <blockquote type="cite"
                          cite="mid:C62F030C-A27D-44C5-B52F-C438059AEACF@jerris.com"
                          class="" style="font-family: Verdana,
                          sans-serif; font-size: 9.600000381469727px;
                          font-style: normal; font-variant-caps: normal;
                          font-weight: normal; letter-spacing: normal;
                          text-align: start; text-indent: 0px;
                          text-transform: none; white-space: normal;
                          word-spacing: 0px; -webkit-text-stroke-width:
                          0px; background-color: rgb(255, 255, 255);">
                          originate returns when we get call progress,
                          or in the case of ignore_early_media, on
                          answer or failure.
                          <div class=""><br class="">
                            <div class="">
                              <blockquote type="cite" class="">
                                <div class="">On May 19, 2017, at 10:36
                                  AM, Bipin Patel <<a
                                    href="mailto:bipin@xbipin.com"
                                    class="" moz-do-not-send="true"
                                    style="color: rgb(42, 86, 133);">bipin@xbipin.com</a>>
                                  wrote:</div>
                                <br class="Apple-interchange-newline">
                                <div class=""><font class=""
                                    style="color: rgb(72, 72, 72);
                                    font-family: Verdana, sans-serif;
                                    font-style: normal;
                                    font-variant-caps: normal;
                                    font-weight: normal; letter-spacing:
                                    normal; text-align: start;
                                    text-indent: 0px; text-transform:
                                    none; white-space: normal;
                                    word-spacing: 0px;
                                    -webkit-text-stroke-width: 0px;
                                    background-color: rgb(255, 255,
                                    255);" size="-1"><font class=""
                                      face="Arial">hi,<br class="">
                                      <br class="">
                                      i was wondering if its possible to
                                      to release handle from an
                                      originate command only once the
                                      call is completed, i mean i send a
                                      originate command from shell using
                                      fs_cli but only return back to
                                      prompt once the call is completed
                                      rather than as soon as a bridge is
                                      created or a UUID generated<br
                                        class="">
                                      <br class="">
                                    </font></font></div>
                              </blockquote>
                            </div>
                            <br class="">
                          </div>
                        </blockquote>
                      </div>
                    </blockquote>
                  </div>
                  <br class="">
                </div>
              </blockquote>
              <br style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <br style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <br style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <span style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class="">“The information transmitted is intended
                only for the person or entity to which it is addressed
                and may contain proprietary, business-confidential
                and/or privileged material. If you are not the intended
                recipient of this message you are hereby notified that
                any use, review, retransmission, dissemination,
                distribution, reproduction or any action taken in
                reliance upon this message is prohibited. If you
                received this in error, please contact the sender and
                delete the material from any computer.”
_________________________________________________________________________</span><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <span style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class="">Professional FreeSWITCH Consulting
                Services:<span class="Apple-converted-space"> </span></span><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="mailto:consulting@freeswitch.org" style="color:
                rgb(42, 86, 133); font-family: Verdana, sans-serif;
                font-size: 9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">consulting@freeswitch.org</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="http://www.freeswitchsolutions.com/"
                style="color: rgb(42, 86, 133); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://www.freeswitchsolutions.com</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <br style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <span style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class="">Official FreeSWITCH Sites</span><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="http://www.freeswitch.org/" style="color: rgb(42,
                86, 133); font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://www.freeswitch.org</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="http://confluence.freeswitch.org/" style="color:
                rgb(42, 86, 133); font-family: Verdana, sans-serif;
                font-size: 9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://confluence.freeswitch.org</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="http://www.cluecon.com/" style="color: rgb(42,
                86, 133); font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://www.cluecon.com</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <br style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <span style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class="">FreeSWITCH-users mailing list</span><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="mailto:FreeSWITCH-users@lists.freeswitch.org"
                style="color: rgb(42, 86, 133); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">FreeSWITCH-users@lists.freeswitch.org</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a
                href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users"
                style="color: rgb(42, 86, 133); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <span style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255); display: inline !important; float:
                none;" class="">UNSUBSCRIBE:</span><a
                href="http://lists.freeswitch.org/mailman/options/freeswitch-users"
                style="color: rgb(42, 86, 133); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br
                style="color: rgb(72, 72, 72); font-family: Verdana,
                sans-serif; font-size: 9.600000381469727px; font-style:
                normal; font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="">
              <a href="http://www.freeswitch.org/" style="color: rgb(42,
                86, 133); font-family: Verdana, sans-serif; font-size:
                9.600000381469727px; font-style: normal;
                font-variant-caps: normal; font-weight: normal;
                letter-spacing: normal; orphans: auto; text-align:
                start; text-indent: 0px; text-transform: none;
                white-space: normal; widows: auto; word-spacing: 0px;
                -webkit-text-size-adjust: auto;
                -webkit-text-stroke-width: 0px; background-color:
                rgb(255, 255, 255);" class="" moz-do-not-send="true">http://www.freeswitch.org</a></div>
          </blockquote>
        </div>
        <br class="">
      </div>
      <br>
      <br>
      “The information transmitted is intended only for the person or
      entity to which it is addressed and may contain proprietary,
      business-confidential and/or privileged material. If you are not
      the intended recipient of this message you are hereby notified
      that any use, review, retransmission, dissemination, distribution,
      reproduction or any action taken in reliance upon this message is
      prohibited. If you received this in error, please contact the
      sender and delete the material from any computer.”
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
<a class="moz-txt-link-abbreviated" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://www.freeswitchsolutions.com">http://www.freeswitchsolutions.com</a>

Official FreeSWITCH Sites
<a class="moz-txt-link-freetext" href="http://www.freeswitch.org">http://www.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://confluence.freeswitch.org">http://confluence.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://www.cluecon.com">http://www.cluecon.com</a>

FreeSWITCH-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a class="moz-txt-link-freetext" href="http://www.freeswitch.org">http://www.freeswitch.org</a></pre>
    </blockquote>
    <br>
  </body>
</html>