<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: sendmail in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465978#M15745</link>
    <description>Because the syntax you gave will create that result.&lt;BR /&gt;You can read the detail at the below url, but to sum it up I would be willing to bet you have PHNE_15835 loaded on the one box.  This server gives you MIME capability.&lt;BR /&gt;We use it send reports as true attachments (as opposed to within the body of the message) and incorporated the syntax with our production jobstreams.  You may want to review the details:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=05fc44ed089266ab79/screen=ckiDisplayDocument?docId=200000048789276" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=05fc44ed089266ab79/screen=ckiDisplayDocument?docId=200000048789276&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;JUST AS AN FYI....to folks who do like this option.  Make sure you don't by mistake download and configure PHNE_20505, because it will conflict with the MIME patch and you have to go back and remove it and reinstall the MIME (PHNE_15835) patch.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
    <pubDate>Mon, 20 Nov 2000 18:13:29 GMT</pubDate>
    <dc:creator>Rita C Workman</dc:creator>
    <dc:date>2000-11-20T18:13:29Z</dc:date>
    <item>
      <title>sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465972#M15739</link>
      <description>I configured one of my server to sendmail to the exchange server and it works great.&lt;BR /&gt;&lt;BR /&gt;I configured the same configuration on another server and it receives it as an attachment.  Why is this?&lt;BR /&gt;&lt;BR /&gt;mailx -s "Subject" xxx@xxx.com &amp;lt; file&lt;BR /&gt;&lt;BR /&gt;thx&lt;BR /&gt;steve</description>
      <pubDate>Mon, 20 Nov 2000 17:00:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465972#M15739</guid>
      <dc:creator>Steve_3</dc:creator>
      <dc:date>2000-11-20T17:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465973#M15740</link>
      <description>Can you detail what you configured in your /etc/mail/sendmail.cf file ?</description>
      <pubDate>Mon, 20 Nov 2000 17:10:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465973#M15740</guid>
      <dc:creator>Dave Kelly_1</dc:creator>
      <dc:date>2000-11-20T17:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465974#M15741</link>
      <description>Check for the version of sendmail that your are running. Vi the sendmail.cf file and search for the version number (DZ). Try and upgrade to 8.9.3.&lt;BR /&gt;Also try mailx -m username@hp.com &amp;lt; filename</description>
      <pubDate>Mon, 20 Nov 2000 17:12:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465974#M15741</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-11-20T17:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465975#M15742</link>
      <description>What version of sendmail are you using ?&lt;BR /&gt;&lt;BR /&gt;Run the command&lt;BR /&gt;&lt;BR /&gt;sendmail -d0.1 &lt;BR /&gt;to find out.&lt;BR /&gt;&lt;BR /&gt;You can trap the messages you are sending by editing your sendmail.cf file so that the DeliveryMode line becomes&lt;BR /&gt;&lt;BR /&gt;O DeliveryMode=queue&lt;BR /&gt;&lt;BR /&gt;Stop/restart sendmail and run your mailx command again.&lt;BR /&gt;&lt;BR /&gt;This will stop messages from being processed immediately, you can then move them from /usr/spool/mqueue to another directory.&lt;BR /&gt;Each message is made up of 2 parts, a qf and df file. The qf file is the header, the df file is the body. Make sure you have both files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you do this on both the working and problem machine, you will be able to determine the differences between the 2 messages.</description>
      <pubDate>Mon, 20 Nov 2000 17:14:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465975#M15742</guid>
      <dc:creator>Dave Kelly_1</dc:creator>
      <dc:date>2000-11-20T17:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465976#M15743</link>
      <description>Steve:&lt;BR /&gt;&lt;BR /&gt;To answer your question, if you look at the headers of the two messages you receive, the one that comes as an attachment will have a content type something like:&lt;BR /&gt;&lt;BR /&gt;Content-Type: text/plain; charset=X-roman8&lt;BR /&gt;&lt;BR /&gt;the one that appears "normally" will have a content type of:&lt;BR /&gt;Content-Type: text/plain; charset=us-ascii&lt;BR /&gt;&lt;BR /&gt;when exchange gets a message with a charset of us-ascii it is able to display it normally... otherwise, it appears as an attachment!&lt;BR /&gt;&lt;BR /&gt;to fix it, on the machine that generates attachments, issue the following command:&lt;BR /&gt;&lt;BR /&gt;# echo "charset=us-ascii" &amp;gt;&amp;gt; /usr/share/lib/mailx.rc&lt;BR /&gt;for system-wide&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;# echo "charset=us-ascii" &amp;gt;&amp;gt; $HOME/.mailrc&lt;BR /&gt;for a single user&lt;BR /&gt;&lt;BR /&gt;to a man on mailx and search for mailrc (and also charset) for more information&lt;BR /&gt;&lt;BR /&gt;Good luck</description>
      <pubDate>Mon, 20 Nov 2000 17:30:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465976#M15743</guid>
      <dc:creator>Kofi ARTHIABAH</dc:creator>
      <dc:date>2000-11-20T17:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465977#M15744</link>
      <description>Steve, I think Kotfi has the answer.  Also, make sure your binary and your sendmail.cf match.  Run&lt;BR /&gt;&lt;BR /&gt;#sendmail -bs&lt;BR /&gt;&lt;BR /&gt;You should see something like this:Sendmail 8.9.3 (PHNE_18979)/8.9.3; Mon, 20 Nov 200&lt;BR /&gt;0 12:52:05 -0500 (EST)        &lt;BR /&gt;&lt;BR /&gt;(control C to escape)&lt;BR /&gt;&lt;BR /&gt;The 8.9.3 after the / is the version .cf file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Berlene &lt;BR /&gt;</description>
      <pubDate>Mon, 20 Nov 2000 17:52:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465977#M15744</guid>
      <dc:creator>Berlene Herren</dc:creator>
      <dc:date>2000-11-20T17:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465978#M15745</link>
      <description>Because the syntax you gave will create that result.&lt;BR /&gt;You can read the detail at the below url, but to sum it up I would be willing to bet you have PHNE_15835 loaded on the one box.  This server gives you MIME capability.&lt;BR /&gt;We use it send reports as true attachments (as opposed to within the body of the message) and incorporated the syntax with our production jobstreams.  You may want to review the details:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=05fc44ed089266ab79/screen=ckiDisplayDocument?docId=200000048789276" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=05fc44ed089266ab79/screen=ckiDisplayDocument?docId=200000048789276&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;JUST AS AN FYI....to folks who do like this option.  Make sure you don't by mistake download and configure PHNE_20505, because it will conflict with the MIME patch and you have to go back and remove it and reinstall the MIME (PHNE_15835) patch.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 20 Nov 2000 18:13:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465978#M15745</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2000-11-20T18:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465979#M15746</link>
      <description>Thanks.&lt;BR /&gt;&lt;BR /&gt;-m did eliminated the problem.</description>
      <pubDate>Mon, 20 Nov 2000 18:21:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/2465979#M15746</guid>
      <dc:creator>Steve_3</dc:creator>
      <dc:date>2000-11-20T18:21:13Z</dc:date>
    </item>
  </channel>
</rss>

