<?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 SMTP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522660#M220160</link>
    <description>After setting SENDMAIL_SERVER=0 in /etc/rc.config.d/mailservs and stopping sendmail, you can still send but NO longer receive mail.&lt;BR /&gt;&lt;BR /&gt;Add this to root's cron:&lt;BR /&gt;&lt;BR /&gt;# Make sure any queued mail is delivered, as sendmail isn't a daemon anymore&lt;BR /&gt;0,30 * * * * /usr/sbin/sendmail -q&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 12 Apr 2005 08:08:12 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2005-04-12T08:08:12Z</dc:date>
    <item>
      <title>Disable SMTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522656#M220156</link>
      <description>1) How to disable smtp services ?&lt;BR /&gt;2) After disable smtp, Can I still send or   received the mail</description>
      <pubDate>Tue, 12 Apr 2005 02:12:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522656#M220156</guid>
      <dc:creator>Macho_2</dc:creator>
      <dc:date>2005-04-12T02:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Disable SMTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522657#M220157</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;edit /etc/inetd.conf and hash the line which starts the smtp service.&lt;BR /&gt;&lt;BR /&gt;or stop the smtp service.&lt;BR /&gt;hpux, by default installs sendmail as the smtp service.  you can stop sendmail by&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/sendmail stop&lt;BR /&gt;&lt;BR /&gt;you won't be able to send or receive mails after you stop the smtp services. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Naveej</description>
      <pubDate>Tue, 12 Apr 2005 02:15:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522657#M220157</guid>
      <dc:creator>Naveej.K.A</dc:creator>
      <dc:date>2005-04-12T02:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Disable SMTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522658#M220158</link>
      <description>1) Type the command /sbin/init.d/sendmail stop - to stop sendmail manually or set SENDMAIL_SERVER=0 in /etc/rc.config.d/mailservs file to disable sendmail automatic start after reboot.&lt;BR /&gt;2) Your machine won't be able to operate as mail server after disabling SMTP, but you can get mail from other servers using POP3 or IMAP.</description>
      <pubDate>Tue, 12 Apr 2005 02:34:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522658#M220158</guid>
      <dc:creator>Artyom Voronchihin</dc:creator>
      <dc:date>2005-04-12T02:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Disable SMTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522659#M220159</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;1)&lt;BR /&gt;to stop sendmail:&lt;BR /&gt;&lt;BR /&gt;# /sbin/init.d/sendmail stop&lt;BR /&gt;or&lt;BR /&gt;# /usr/sbin/killsm&lt;BR /&gt;# ps -ef|grep -i sendmail&lt;BR /&gt; check if the daemon is kill&lt;BR /&gt;&lt;BR /&gt;to disable smtp services:&lt;BR /&gt;&lt;BR /&gt;# vi /etc/rc.config.d/mailservs&lt;BR /&gt;SENDMAIL_SERVER=0&lt;BR /&gt; then run the above steps to stop sendmail&lt;BR /&gt;&lt;BR /&gt;2) after disabling smtp, u may still send mails provided the configuration in sendmail.cf are correct. to test:&lt;BR /&gt;&lt;BR /&gt;# sendmail -v &lt;MAIL address=""&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope it helps.&lt;BR /&gt;&lt;BR /&gt;regards.&lt;BR /&gt;&lt;/MAIL&gt;</description>
      <pubDate>Tue, 12 Apr 2005 02:53:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522659#M220159</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-04-12T02:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Disable SMTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522660#M220160</link>
      <description>After setting SENDMAIL_SERVER=0 in /etc/rc.config.d/mailservs and stopping sendmail, you can still send but NO longer receive mail.&lt;BR /&gt;&lt;BR /&gt;Add this to root's cron:&lt;BR /&gt;&lt;BR /&gt;# Make sure any queued mail is delivered, as sendmail isn't a daemon anymore&lt;BR /&gt;0,30 * * * * /usr/sbin/sendmail -q&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 08:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-smtp/m-p/3522660#M220160</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-04-12T08:08:12Z</dc:date>
    </item>
  </channel>
</rss>

