<?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: Disable sendmail except MTA in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181763#M163010</link>
    <description>Hi Ray,&lt;BR /&gt;&lt;BR /&gt;Yes that's somewhat true. The local mail processors (mailx, elm, etc.) typically only fork a sendmail process to deliver the mail.&lt;BR /&gt;They do not use sendmail to receive mail as it's already in the user's mail file.&lt;BR /&gt;There's *no* way I know of to disable that as it's coded into those binaries. But again sendmail is only used for delivery.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
    <pubDate>Wed, 04 Feb 2004 10:19:09 GMT</pubDate>
    <dc:creator>Jeff Schussele</dc:creator>
    <dc:date>2004-02-04T10:19:09Z</dc:date>
    <item>
      <title>Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181757#M163004</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I'd like to setup a box so that all parts of sendmail are disabled, with the exception of the MTA so I can send mail out of the server.&lt;BR /&gt;&lt;BR /&gt;Essentially I only want to be able to send email from the server and do not want to receive or relay any mail.&lt;BR /&gt;&lt;BR /&gt;Does anyone have a doc that outlines the best way to do this?&lt;BR /&gt;&lt;BR /&gt;TIA,&lt;BR /&gt;&lt;BR /&gt;Sean</description>
      <pubDate>Tue, 03 Feb 2004 13:33:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181757#M163004</guid>
      <dc:creator>Sean OB_1</dc:creator>
      <dc:date>2004-02-03T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181758#M163005</link>
      <description>disable sendmail. it will still send mail out to the smtp gateway.&lt;BR /&gt;&lt;BR /&gt;/etc/rc.config.d/mailserv&lt;BR /&gt;&lt;BR /&gt;export SENDMAIL_SERVER=0&lt;BR /&gt;&lt;BR /&gt;done.&lt;BR /&gt;&lt;BR /&gt;oh, kill the current sendmail running&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Feb 2004 13:37:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181758#M163005</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2004-02-03T13:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181759#M163006</link>
      <description>Sean,&lt;BR /&gt;&lt;BR /&gt;You don't need to have sendmail running to send outgoing mail.  Just disable the startup!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 03 Feb 2004 13:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181759#M163006</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-02-03T13:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181760#M163007</link>
      <description>Hi Sean,&lt;BR /&gt;&lt;BR /&gt;You don't need to run 'sendmail' as a daemon to send mail out. Stop sendmail by running '/sbin/init.d/sendmail stop'. Edit /etc/rc.config.d/mailsrvs and make SEND_MAIL_SERVER=0.&lt;BR /&gt;&lt;BR /&gt;Add MX records or a relay host to your sendmail.cf file (DS macro) if you have a relay to send the mail out. Sendmail will be invoked but only as a client while sending the mail out.&lt;BR /&gt;&lt;BR /&gt;However, since sendmail is not running daemon mode, any failed messages will not be delivered and will be sitting in the mail queue. So, I suggest you enable your cron to run 'sendmail -q' once every 5 mins. It will take care of pending mail if any.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Tue, 03 Feb 2004 13:38:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181760#M163007</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-03T13:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181761#M163008</link>
      <description>Hi Sean,&lt;BR /&gt;&lt;BR /&gt;This is very easy.&lt;BR /&gt;Just&lt;BR /&gt;&lt;BR /&gt;1) /sbin/init.d/sendmail stop&lt;BR /&gt;2) Edit /etc/rc.config.d/mailservs &amp;amp; set SENDMAIL_SERVER=0&lt;BR /&gt;&lt;BR /&gt;Then it will never start sendmail as a daemon.&lt;BR /&gt;But remember that the delivery will be a "one-time" shot. So you may wish to set up a cron to periodically run &lt;BR /&gt;sendmail -q&lt;BR /&gt;to try another one-time delivery attempt.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Tue, 03 Feb 2004 13:40:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181761#M163008</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-02-03T13:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181762#M163009</link>
      <description>Just one last note:  I agree with everything above except that Sendmail will continue to recieve mail that is set from a local user to a local user on the machine.</description>
      <pubDate>Wed, 04 Feb 2004 10:05:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181762#M163009</guid>
      <dc:creator>Ray Carlson</dc:creator>
      <dc:date>2004-02-04T10:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Disable sendmail except MTA</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181763#M163010</link>
      <description>Hi Ray,&lt;BR /&gt;&lt;BR /&gt;Yes that's somewhat true. The local mail processors (mailx, elm, etc.) typically only fork a sendmail process to deliver the mail.&lt;BR /&gt;They do not use sendmail to receive mail as it's already in the user's mail file.&lt;BR /&gt;There's *no* way I know of to disable that as it's coded into those binaries. But again sendmail is only used for delivery.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 04 Feb 2004 10:19:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-sendmail-except-mta/m-p/3181763#M163010</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-02-04T10:19:09Z</dc:date>
    </item>
  </channel>
</rss>

