<?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 problems with sendmail in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862058#M88918</link>
    <description>I have RedHat7.3 and my problem is that even when I define a host in the access databse, this host cannot connect to tcp 25 to my smtp server.&lt;BR /&gt;Any help would be greatly appreciated.</description>
    <pubDate>Wed, 11 Dec 2002 13:03:39 GMT</pubDate>
    <dc:creator>Lora Ganeva</dc:creator>
    <dc:date>2002-12-11T13:03:39Z</dc:date>
    <item>
      <title>problems with sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862058#M88918</link>
      <description>I have RedHat7.3 and my problem is that even when I define a host in the access databse, this host cannot connect to tcp 25 to my smtp server.&lt;BR /&gt;Any help would be greatly appreciated.</description>
      <pubDate>Wed, 11 Dec 2002 13:03:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862058#M88918</guid>
      <dc:creator>Lora Ganeva</dc:creator>
      <dc:date>2002-12-11T13:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: problems with sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862059#M88919</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;The sendmail don't use the access database directly.&lt;BR /&gt;I think it was a performance decision.&lt;BR /&gt;&lt;BR /&gt;It uses the compiled access database files:&lt;BR /&gt;&lt;BR /&gt;(usually &lt;BR /&gt;dbm format.Defined in the sendmail.cf)&lt;BR /&gt;&lt;BR /&gt;This is the following:&lt;BR /&gt;access.pag&lt;BR /&gt;access.dir&lt;BR /&gt;&lt;BR /&gt;You should compile the access&lt;BR /&gt;database with the following &lt;BR /&gt;commands:&lt;BR /&gt;1. Edit your access file!&lt;BR /&gt;2. # cd /etc/mail&lt;BR /&gt;3. # mkdir orig&lt;BR /&gt;4. # cp access* ./orig&lt;BR /&gt;5. # cat ./access | /usr/sbin/makemap dbm access&lt;BR /&gt;&lt;BR /&gt;It will create the new access.pag and access.dir files.Check the permission of this files:&lt;BR /&gt;&lt;BR /&gt;6. # ls -al access*&lt;BR /&gt;7. stop your sendmail or &lt;BR /&gt;   send them a SIGHUP process &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards:&lt;BR /&gt;Paul</description>
      <pubDate>Wed, 11 Dec 2002 17:08:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862059#M88919</guid>
      <dc:creator>Pal Szabo_1</dc:creator>
      <dc:date>2002-12-11T17:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: problems with sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862060#M88920</link>
      <description>Actually, it sounds more like Sendmail isn't listening on the network interface that you are trying to connect too.&lt;BR /&gt;&lt;BR /&gt;If you issue 'netstat -ntlp | grep sendmail', and see what IP addresses it's listening on, you should see one looking like '0.0.0.0:25'.  If this only says '127.0.0.1:27', then it's configured to only listen on the loopback device.&lt;BR /&gt;&lt;BR /&gt;To change this, check the sendmail.cf for a 'O DaemonPortOptions' line.  If this has somethin glike 'Addr=127.0.0.1, name=MTA', then that's the cause.  Get rid of the addr part.&lt;BR /&gt;&lt;BR /&gt;If you have a working sendmail.mc file in /etc/mail/, you need to dnl the line "DAEMON_OPTIONS(`port=smtp,Addr=127.0.0.1, Name=MTA')", and re-generate your cf file using 'm4 sendmail.mc &amp;gt; /etc/sendmail.cf'.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Thu, 12 Dec 2002 00:17:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862060#M88920</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-12-12T00:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: problems with sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862061#M88921</link>
      <description>You are right-that's the reason but even when i changed the line with daemon options and even when I completely removed it It continued listening only on 127.0.0.1..How could I change this?</description>
      <pubDate>Thu, 12 Dec 2002 07:46:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862061#M88921</guid>
      <dc:creator>Lora Ganeva</dc:creator>
      <dc:date>2002-12-12T07:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: problems with sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862062#M88922</link>
      <description>The configuration file is only read upon the start-up of a sendmail process.  Meaning you'll need to re-start the listening daemon for it to take effect.&lt;BR /&gt;&lt;BR /&gt;service sendmail restart&lt;BR /&gt;&lt;BR /&gt;should suffice.</description>
      <pubDate>Thu, 12 Dec 2002 22:52:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-sendmail/m-p/2862062#M88922</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-12-12T22:52:43Z</dc:date>
    </item>
  </channel>
</rss>

