<?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 PHP: mail() in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989847#M4961</link>
    <description>Does the following setting in /etc/php.ini specify the SMTP server for the local host?  I am getting the following error when using PHP mime mail module.  I'm not sure why it says Win32 only.&lt;BR /&gt;&lt;BR /&gt;##### /etc/php.ini&lt;BR /&gt;[mail function]&lt;BR /&gt;; For Win32 only.&lt;BR /&gt;SMTP = localhost&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#### Error:&lt;BR /&gt;Your message could not be sent.&lt;BR /&gt;A transcript of the attempts to send the message follows.&lt;BR /&gt;The number of attempts made: 1&lt;BR /&gt;Addressed To: chris.mitchell@rtp.ppdi.com&lt;BR /&gt;&lt;BR /&gt;Wednesday, 04 June 2003, 15:23:19&lt;BR /&gt;(2) Failed to send to identified host,&lt;BR /&gt;[inbound.registeredsite.com], 553 5.1.8 &lt;INTERNET&gt;... Domain of sender address&lt;BR /&gt;internet@hostname.rtp.ppdi.com does not exist [SMTP server error]&lt;BR /&gt;--- Message non-deliverable.&lt;BR /&gt;&lt;/INTERNET&gt;</description>
    <pubDate>Thu, 05 Jun 2003 12:55:37 GMT</pubDate>
    <dc:creator>Chris Mitchell</dc:creator>
    <dc:date>2003-06-05T12:55:37Z</dc:date>
    <item>
      <title>PHP: mail()</title>
      <link>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989847#M4961</link>
      <description>Does the following setting in /etc/php.ini specify the SMTP server for the local host?  I am getting the following error when using PHP mime mail module.  I'm not sure why it says Win32 only.&lt;BR /&gt;&lt;BR /&gt;##### /etc/php.ini&lt;BR /&gt;[mail function]&lt;BR /&gt;; For Win32 only.&lt;BR /&gt;SMTP = localhost&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#### Error:&lt;BR /&gt;Your message could not be sent.&lt;BR /&gt;A transcript of the attempts to send the message follows.&lt;BR /&gt;The number of attempts made: 1&lt;BR /&gt;Addressed To: chris.mitchell@rtp.ppdi.com&lt;BR /&gt;&lt;BR /&gt;Wednesday, 04 June 2003, 15:23:19&lt;BR /&gt;(2) Failed to send to identified host,&lt;BR /&gt;[inbound.registeredsite.com], 553 5.1.8 &lt;INTERNET&gt;... Domain of sender address&lt;BR /&gt;internet@hostname.rtp.ppdi.com does not exist [SMTP server error]&lt;BR /&gt;--- Message non-deliverable.&lt;BR /&gt;&lt;/INTERNET&gt;</description>
      <pubDate>Thu, 05 Jun 2003 12:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989847#M4961</guid>
      <dc:creator>Chris Mitchell</dc:creator>
      <dc:date>2003-06-05T12:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: PHP: mail()</title>
      <link>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989848#M4962</link>
      <description>You shouldn't need to touch this file for sending mail with php. Mail is fully functionnal, except that your smtp server under linux should be configured properly to transmit your mails outside. Read these threads, they are related to your problem :&lt;BR /&gt;&lt;A href="http://europe-support2.external.hp.com/emse/bin/doc.pl/sid=9098113f0ebcb9022f?todo=search&amp;amp;searchcategory=ALL&amp;amp;rn=&amp;amp;presort=&amp;amp;searchtext=sendmail+relaying+linux&amp;amp;x=38&amp;amp;y=11&amp;amp;searchcriteria=allwords&amp;amp;searchtype=SEARCH_FORUMS" target="_blank"&gt;http://europe-support2.external.hp.com/emse/bin/doc.pl/sid=9098113f0ebcb9022f?todo=search&amp;amp;searchcategory=ALL&amp;amp;rn=&amp;amp;presort=&amp;amp;searchtext=sendmail+relaying+linux&amp;amp;x=38&amp;amp;y=11&amp;amp;searchcriteria=allwords&amp;amp;searchtype=SEARCH_FORUMS&lt;/A&gt;&lt;BR /&gt;(any of each has the solution to re-hash sendmail and relay).&lt;BR /&gt;hth.&lt;BR /&gt;J</description>
      <pubDate>Thu, 05 Jun 2003 13:38:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989848#M4962</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-06-05T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: PHP: mail()</title>
      <link>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989849#M4963</link>
      <description>Two ways to get mail off your Linux box.&lt;BR /&gt;&lt;BR /&gt;1) Direct Internet Connection, resolve the target addresses yourself.&lt;BR /&gt;&lt;BR /&gt;/etc/resolv.conf must connect to valid outside dns servers or inside ones that resolve any outside address&lt;BR /&gt;&lt;BR /&gt;2) Relay&lt;BR /&gt;&lt;BR /&gt;in sendmail.cf&lt;BR /&gt;&lt;BR /&gt;DS&lt;BR /&gt;[IP_address_of_relay_server}&lt;BR /&gt;&lt;BR /&gt;service sendmail restart&lt;BR /&gt;&lt;BR /&gt;The server defined must explicitly permit relay from your host/ip or the mail will be rejected.&lt;BR /&gt;&lt;BR /&gt;Diagnostic:&lt;BR /&gt;&lt;BR /&gt;sendmail -v -d8 -d38 somebody@mail.net&lt;BR /&gt;&lt;BR /&gt;type a line of text &lt;ENTER&gt;&lt;BR /&gt;type a dot&lt;BR /&gt;. &lt;ENTER&gt;&lt;BR /&gt;&lt;BR /&gt;This will help you figure out where the mail is getting stopped.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/ENTER&gt;&lt;/ENTER&gt;</description>
      <pubDate>Thu, 05 Jun 2003 13:54:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/php-mail/m-p/2989849#M4963</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-06-05T13:54:35Z</dc:date>
    </item>
  </channel>
</rss>

