<div dir="ltr"><div>Hello everyone, I&#39;d changed the server and mutt started working, but I&#39;ll test your advices and wil let you lnow ass soon as I can.</div><div> </div><div>Thank you!</div><div> </div><div>Elder</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jun 24, 2013 at 7:38 AM, Larry Moore <span dir="ltr">&lt;<a href="mailto:lmoore@omninet.net.au" target="_blank">lmoore@omninet.net.au</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 22/06/2013 2:17 PM, Steve Edwards wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
On Sat, 22 Jun 2013, Larry Moore wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
echo &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;Sender: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot;<br>
&quot;${REMOTESTATIONID}&quot; &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;Pages: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot; &quot;${FAXPAGES}&quot;<br>
&gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;Signal Rate: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot;<br>
&quot;${FAXBITRATE} bit/s&quot; &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;CallerID Number: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot;<br>
&quot;${CIDNUMBER}&quot; &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;CallerID Name: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot;<br>
&quot;${CIDNAME}&quot; &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;Call Duration: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot;<br>
&quot;${DURATION}&quot; &gt;&gt; &quot;$MSGFILE&quot;<br>
printf &quot;%18s&quot; &quot;Status: &quot; &gt;&gt; &quot;$MSGFILE&quot;; printf &quot;%-20s\n&quot; &quot;${FAXERROR}&quot;<br>
&gt;&gt; &quot;$MSGFILE&quot;<br>
</blockquote>
<br>
How about:<br>
<br>
#!/bin/bash<br>
     FORMAT=&#39;%18s %-20s\n&#39;<br>
     (<br>
     printf &quot;${FORMAT}&quot; &#39;Sender:&#39;        &quot;${REMOTESTATIONID}&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;Pages:&#39;        &quot;${FAXPAGES}&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;Signal Rate:&#39;    &quot;${FAXBITRATE} bits/s&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;CallerID Number:&#39;    &quot;${CIDNUMBER}&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;CallerID Name:&#39;    &quot;${CIDNAME}&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;Call Duration:&#39;    &quot;${DURATION}&quot;<br>
     printf &quot;${FORMAT}&quot; &#39;Status:&#39;        &quot;${FAXERROR}&quot;<br>
     ) &gt;&gt;${MSGFILE}<br>
<br>
</blockquote>
<br></div></div>
Thank Steve,<br>
<br>
That makes the section more readable and it works with /bin/ksh too.<br>
<br>
Cheers,<br>
<br>
Larry.<div class="HOEnZb"><div class="h5"><br>
<br>
--<br>
______________________________<u></u>______________________________<u></u>_________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
              <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
  <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/<u></u>mailman/listinfo/asterisk-<u></u>users</a><br>
</div></div></blockquote></div><br></div>