<?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: SMTP DISABLE in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073421#M726210</link>
    <description>SMTP = simple mail transfer protocol&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;# grep smtp /etc/services &lt;BR /&gt;/etc/services:smtp          25/tcp                 # Simple Mail Transfer Protocol&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Who is listen on port 25?&lt;BR /&gt;&lt;BR /&gt;# ps -ef|grep sendmail&lt;BR /&gt;    root  3377     1  0  Jun 25  ?        62:04 sendmail: accepting connections on port 25&lt;BR /&gt;&lt;BR /&gt;So why not disable sendmail?</description>
    <pubDate>Wed, 10 Oct 2007 09:33:59 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2007-10-10T09:33:59Z</dc:date>
    <item>
      <title>SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073418#M726207</link>
      <description>Hi Guys,&lt;BR /&gt;How i can disable SMTP ?</description>
      <pubDate>Wed, 10 Oct 2007 08:48:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073418#M726207</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2007-10-10T08:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073419#M726208</link>
      <description>/sbin/init.d/sendmail stop&lt;BR /&gt;&lt;BR /&gt;Set &lt;BR /&gt;SENDMAIL_SERVER=0&lt;BR /&gt;in /etc/rc.config.d/mailservs&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 10 Oct 2007 09:01:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073419#M726208</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-10T09:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073420#M726209</link>
      <description>I want disable a service SMTP, not sendmail.&lt;BR /&gt;Help me many point at all</description>
      <pubDate>Wed, 10 Oct 2007 09:17:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073420#M726209</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2007-10-10T09:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073421#M726210</link>
      <description>SMTP = simple mail transfer protocol&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;# grep smtp /etc/services &lt;BR /&gt;/etc/services:smtp          25/tcp                 # Simple Mail Transfer Protocol&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Who is listen on port 25?&lt;BR /&gt;&lt;BR /&gt;# ps -ef|grep sendmail&lt;BR /&gt;    root  3377     1  0  Jun 25  ?        62:04 sendmail: accepting connections on port 25&lt;BR /&gt;&lt;BR /&gt;So why not disable sendmail?</description>
      <pubDate>Wed, 10 Oct 2007 09:33:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073421#M726210</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-10-10T09:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073422#M726211</link>
      <description>Sendmail uses SMTP (should be the only thing).&lt;BR /&gt;&lt;BR /&gt;Shutting down sendmail will disable SMTP.&lt;BR /&gt;&lt;BR /&gt;Unless you are running another mail transport - like Qmail...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 10 Oct 2007 09:42:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073422#M726211</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-10T09:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073423#M726212</link>
      <description>Example:&lt;BR /&gt;&lt;BR /&gt;# netstat -an |grep 25 |grep LISTEN&lt;BR /&gt;tcp        0      0  127.0.0.1.25           *.*                     LISTEN&lt;BR /&gt;&lt;BR /&gt;# /sbin/init.d/sendmail stop&lt;BR /&gt;Shutting down sendmail          [Done]&lt;BR /&gt;Shutting down sm-client         [Done]&lt;BR /&gt;&lt;BR /&gt;# netstat -an |grep 25 |grep LISTEN&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Returns nothing.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 10 Oct 2007 09:50:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073423#M726212</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-10T09:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073424#M726213</link>
      <description>&lt;!--!*#--&gt;and another:&lt;BR /&gt;&lt;BR /&gt;# lsof -i TCP:25&lt;BR /&gt;&lt;BR /&gt;COMMAND   PID USER   FD   TYPE    DEVICE SIZE/OFF NODE NAME&lt;BR /&gt;sendmail 3377 root    5u  IPv4 0x34b2cc0      0t0  TCP *:smtp (LISTEN)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Or do you have SNMP in mind by chance?</description>
      <pubDate>Wed, 10 Oct 2007 09:55:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073424#M726213</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-10-10T09:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073425#M726214</link>
      <description>Ok i already disable sendmail but i want know if exist a procedure to disable SMTP service !!!</description>
      <pubDate>Wed, 10 Oct 2007 10:16:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073425#M726214</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2007-10-10T10:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073426#M726215</link>
      <description>I really don't know how to say this more clearly...&lt;BR /&gt;&lt;BR /&gt;The process listen on port 25 *IS* your mail service - most likely this is sendmail.</description>
      <pubDate>Wed, 10 Oct 2007 10:21:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073426#M726215</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-10-10T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073427#M726216</link>
      <description>If you wish to disable outgoing mail then you will remove permissions or rename the sendmail binary.  ( maybe even mailx as well, although it probably calls sendmail ).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Oct 2007 10:26:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073427#M726216</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-10T10:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073428#M726217</link>
      <description>How are you testing if smtp is open?&lt;BR /&gt;&lt;BR /&gt;try&lt;BR /&gt;&lt;BR /&gt;telnet yourserver 25&lt;BR /&gt;&lt;BR /&gt;If you get:&lt;BR /&gt;&lt;BR /&gt;Trying...&lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;&lt;BR /&gt;then it is disabled...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 10 Oct 2007 10:29:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073428#M726217</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-10T10:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073429#M726218</link>
      <description>Gigiz,&lt;BR /&gt;&lt;BR /&gt;To disable SMTP permanently&lt;BR /&gt;&lt;BR /&gt;vi /etc/services&lt;BR /&gt;&lt;BR /&gt;##commentted out&lt;BR /&gt;#smtp          25/tcp                 # Simple Mail Transfer Protocol&lt;BR /&gt;&lt;BR /&gt;#inetd -c&lt;BR /&gt;&lt;BR /&gt;WK&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Oct 2007 23:59:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073429#M726218</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2007-10-10T23:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073430#M726219</link>
      <description>No WK,&lt;BR /&gt;you are mistaking if you comment the /etc/service however SMTP work.</description>
      <pubDate>Thu, 11 Oct 2007 03:31:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073430#M726219</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2007-10-11T03:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073431#M726220</link>
      <description>Gigiz,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# lsof -i TCP:25&lt;BR /&gt;COMMAND   PID USER   FD   TYPE     DEVICE SIZE/OFF NODE NAME&lt;BR /&gt;sendmail 1142 root    5u  IPv4 0x4d13b4c0      0t0  TCP *:25 (LISTEN)&lt;BR /&gt;&lt;BR /&gt;# cd /sbin/init.d&lt;BR /&gt;# ./sendmail stop&lt;BR /&gt;Shutting down sendmail  .....           [  OK  ]&lt;BR /&gt;Shutting down sm-client                 [  OK  ]&lt;BR /&gt;&lt;BR /&gt;# lsof -i TCP:25&lt;BR /&gt;# telnet nickel2 25&lt;BR /&gt;Trying...&lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;WK</description>
      <pubDate>Thu, 11 Oct 2007 03:50:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073431#M726220</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2007-10-11T03:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073432#M726221</link>
      <description>Gigiz,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# lsof -i TCP:25&lt;BR /&gt;COMMAND   PID USER   FD   TYPE     DEVICE SIZE/OFF NODE NAME&lt;BR /&gt;sendmail 1142 root    5u  IPv4 0x4d13b4c0      0t0  TCP *:25 (LISTEN)&lt;BR /&gt;&lt;BR /&gt;# cd /sbin/init.d&lt;BR /&gt;# ./sendmail stop&lt;BR /&gt;Shutting down sendmail  .....           [  OK  ]&lt;BR /&gt;Shutting down sm-client                 [  OK  ]&lt;BR /&gt;&lt;BR /&gt;# lsof -i TCP:25&lt;BR /&gt;# telnet pluto 25&lt;BR /&gt;Trying...&lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;WK</description>
      <pubDate>Thu, 11 Oct 2007 03:51:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073432#M726221</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2007-10-11T03:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073433#M726222</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i have found this in my result of shc&lt;BR /&gt;&lt;BR /&gt;Stop the sendmail daemon: &lt;BR /&gt;/sbin/init.d/sendmail stop&lt;BR /&gt;Deactivate server mode: &lt;BR /&gt;/usr/sbin/ch_rc -a -p SENDMAIL_SERVER=0&lt;BR /&gt;Disallow all SMTP status queries, add &lt;BR /&gt;O PrivacyOptions=goaway&lt;BR /&gt;to the /etc/mail/sendmail.cf file &lt;BR /&gt;add cronjob to process mail: &lt;BR /&gt;0,15,30,45 * * * * /usr/sbin/sendmail -q&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;L-DERLYN</description>
      <pubDate>Thu, 11 Oct 2007 09:45:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073433#M726222</guid>
      <dc:creator>Ludovic Derlyn</dc:creator>
      <dc:date>2007-10-11T09:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP DISABLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073434#M726223</link>
      <description>ok</description>
      <pubDate>Mon, 03 Mar 2008 09:28:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/smtp-disable/m-p/5073434#M726223</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2008-03-03T09:28:56Z</dc:date>
    </item>
  </channel>
</rss>

