<?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 configuration issue with non-standard SMTP port in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206513#M32687</link>
    <description>Please see:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://wiki.xdroop.com/space/sendmail/smart+host+ports" target="_blank"&gt;http://wiki.xdroop.com/space/sendmail/smart+host+ports&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Normally, your firewall won't block outgoing packets.</description>
    <pubDate>Wed, 28 May 2008 19:44:20 GMT</pubDate>
    <dc:creator>Ivan Ferreira</dc:creator>
    <dc:date>2008-05-28T19:44:20Z</dc:date>
    <item>
      <title>sendmail configuration issue with non-standard SMTP port</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206510#M32684</link>
      <description>I need to get sendmail configured to send emails from a Linux server through a mail server running on Port 8080.   &lt;BR /&gt;&lt;BR /&gt;What changes would I need to make to sendmail.cf or other files to make this work?</description>
      <pubDate>Wed, 28 May 2008 15:03:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206510#M32684</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2008-05-28T15:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail configuration issue with non-standard SMTP port</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206511#M32685</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Inbound or outbound?&lt;BR /&gt;&lt;BR /&gt;IF its outbound, you might just want to have iptables firewall do a bit of port forwarding.&lt;BR /&gt;&lt;BR /&gt;Otherwise you need to change sendmail.mc and muse m4 to compile a new sendmail.cf&lt;BR /&gt;&lt;BR /&gt;sendmail.cf is not human readable IMO, sendmail.mc is.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.sendmail.org" target="_blank"&gt;http://www.sendmail.org&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 28 May 2008 17:30:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206511#M32685</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-05-28T17:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail configuration issue with non-standard SMTP port</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206512#M32686</link>
      <description>I need this for outbound email.   What specific rule would I add to the firewall?</description>
      <pubDate>Wed, 28 May 2008 17:32:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206512#M32686</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2008-05-28T17:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail configuration issue with non-standard SMTP port</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206513#M32687</link>
      <description>Please see:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://wiki.xdroop.com/space/sendmail/smart+host+ports" target="_blank"&gt;http://wiki.xdroop.com/space/sendmail/smart+host+ports&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Normally, your firewall won't block outgoing packets.</description>
      <pubDate>Wed, 28 May 2008 19:44:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206513#M32687</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-05-28T19:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail configuration issue with non-standard SMTP port</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206514#M32688</link>
      <description>I guess SEP had something like this in mind:&lt;BR /&gt;&lt;BR /&gt;iptables -t nat -A OUTPUT -p tcp -d mail.server.ip.addr --dport 25 --to-destination mail.server.ip.addr:8080 -j DNAT&lt;BR /&gt;&lt;BR /&gt;This redirects any outgoing TCP connection to the mail server's port 25 to the port 8080 instead. Connection tracking is automatically invoked to ensure any returning packets are modified too, so the applications at either end can work just as usual.&lt;BR /&gt;&lt;BR /&gt;In the viewpoint of any program on this host, including Sendmail, that particular mail server is now effectively running on port 25, not 8080.&lt;BR /&gt;&lt;BR /&gt;Of course, this is just one of the many ways to skin this particular cat...&lt;BR /&gt;&lt;BR /&gt;Note that this is a "nat" rule, not the usual "filter" rule, so a simple "iptables -L" won't display it. You'll need to use "iptables -t nat -L" to see it.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Thu, 29 May 2008 16:04:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sendmail-configuration-issue-with-non-standard-smtp-port/m-p/4206514#M32688</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-05-29T16:04:45Z</dc:date>
    </item>
  </channel>
</rss>

