<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1014721" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1014721</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085650</link>
    <description> &lt;p&gt;How about using an SMTP server?&lt;br /&gt;
What is the difference and how would I use that instead??&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jul 2001 17:25:02 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1085650 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085131</link>
    <description> &lt;p&gt;&lt;strong&gt;chmod -777 &lt;/strong&gt; will give everyone all priviledges.&lt;/p&gt;
&lt;p&gt;I tried running it on my system. It didn&#039;t work. I will play around with it some today as time permits.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Jul 2001 16:04:58 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1085131 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085125</link>
    <description> &lt;p&gt;It was installed when I installed RedHat 6.2&lt;br /&gt;
Should I try to chmod it?&lt;br /&gt;
What should I chmod it to?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Jul 2001 15:30:00 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1085125 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085096</link>
    <description> &lt;p&gt;It should be set to executable. Maybe it isn&#039;t correctly installed.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Jul 2001 08:29:45 +0000</pubDate>
 <dc:creator>Gyrbo</dc:creator>
 <guid isPermaLink="false">comment 1085096 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085072</link>
    <description> &lt;p&gt;Nope... doesn&#039;t fix it&lt;br /&gt;
Should the permissions for /usr/sbin/sendmail be changed??&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Jul 2001 03:10:06 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1085072 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085071</link>
    <description> &lt;p&gt;Try using something like this:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;$mailprog = &#039;/usr/sbin/sendmail&#039;;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;instead of&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;open (MAIL,&quot;/usr/sbin/sendmail&quot;);&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Jul 2001 01:57:48 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1085071 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085034</link>
    <description> &lt;p&gt;here we go:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;#!/usr/bin/perl&lt;br /&gt;print &amp;quot;Content-type:text/html\n\n&amp;quot;;&lt;br /&gt;$mail = 1;&lt;br /&gt;if ($mail) {&lt;br /&gt;open (MAIL,&amp;quot;/usr/sbin/sendmail&amp;quot;);&lt;br /&gt;print MAIL &amp;quot;To: parrabal\@home.com&amp;quot;;&lt;br /&gt;print MAIL &amp;quot;From: parrabal\@home.com&amp;quot;;&lt;br /&gt;print MAIL &amp;quot;Subject: Hello&amp;quot;;&lt;br /&gt;print MAIL &amp;quot;hello&amp;quot;;&lt;br /&gt;close(MAIL);&lt;br /&gt;print &amp;quot;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;yes&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/html&amp;gt;&amp;quot;;&lt;br /&gt;print &amp;quot;Hello&amp;quot;;&lt;br /&gt;} else {&lt;br /&gt;print &amp;quot;Nope&amp;quot;;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
i&#039;ve also tried&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;#!/usr/bin/perl&lt;br /&gt;print &amp;quot;Content-type:text/html\n\n&amp;quot;;&lt;br /&gt;$mail = 1;&lt;br /&gt;if ($mail) {&lt;br /&gt;open (MAIL,&amp;quot;|/usr/bin/sendmail&amp;quot;);&lt;br /&gt;print MAIL &amp;quot;To: parrabal\@home.com&amp;quot;;&lt;br /&gt;print MAIL &amp;quot;From: parrabal\@home.com&amp;quot;;&lt;br /&gt;print MAIL &amp;quot;Subject: Hello&amp;quot;;&lt;br /&gt;print MAIL &amp;quot; hey hey hello&amp;quot;;&lt;br /&gt;close(MAIL);&lt;br /&gt;print &amp;quot;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;yes&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/html&amp;gt;&amp;quot;;&lt;br /&gt;print &amp;quot;Hello&amp;quot;;&lt;br /&gt;} else {&lt;br /&gt;print &amp;quot;Nope&amp;quot;;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
but neither works&lt;/p&gt;
 </description>
     <pubDate>Tue, 10 Jul 2001 02:58:56 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1085034 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1085033</link>
    <description> &lt;p&gt;Sorry, Nike_guy, I haven&#039;t been able to help you more. A new week old baby in the house makes it hard to type sometimes. &lt;/p&gt;
&lt;p&gt;Is this a script that you wrote or one that you got off of the web?&lt;br /&gt;
If you want, you could email me the script or if it is not too long, post it here (using the code tag). I will try to look at it and test it to see if it is the script or your sendmail setup. A format error I would think would most likely be in the script.&lt;/p&gt;
 </description>
     <pubDate>Tue, 10 Jul 2001 02:52:05 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1085033 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1084977</link>
    <description> &lt;p&gt;Nope.&lt;br /&gt;
When I submit the form that uses sendmail, it takes a long time to send, and I get a mail message in linux saying data format error.&lt;br /&gt;
I&#039;ll try again...&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jul 2001 03:49:28 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1084977 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/sendmail#comment-1084975</link>
    <description> &lt;p&gt;If sendmail is setup properly, then I would check the path to sendmail in your script. In RedHat, the path is usually &lt;strong&gt;/usr/sbin/sendmail&lt;/strong&gt;. In other Linux distros the path is often &lt;strong&gt;/usr/bin/sendmail&lt;/strong&gt;.&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jul 2001 03:08:01 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1084975 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
