<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1017335" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1017335</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101583</link>
    <description> &lt;p&gt;yes i know, but they are offering me free hosting! so i guess i have to deal with it!&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Feb 2002 09:02:36 +0000</pubDate>
 <dc:creator>dragon007</dc:creator>
 <guid isPermaLink="false">comment 1101583 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101557</link>
    <description> &lt;p&gt;What!?!?! That&#039;s ridiculous. You&#039;re not asking for help in configuring a file, you&#039;re asking them where their email program is located. I would be off that server in a heartbeat if that were the type of service they provide.&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Feb 2002 03:10:16 +0000</pubDate>
 <dc:creator>doublehelix</dc:creator>
 <guid isPermaLink="false">comment 1101557 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101499</link>
    <description> &lt;p&gt;yes, i thought about it aswell, but when i contacted my host again this is what they replied:&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
We offer no support on configuring scripts. You seem to have a script trying to&lt;br /&gt;
use a UNIX method of sending mail. Post a question on the forum and maybe&lt;br /&gt;
someone will answer.&lt;/p&gt;
&lt;p&gt;SUPPORT
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;so i have to figure it out my self!&lt;/p&gt;
&lt;p&gt;thanks anyway for your post&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Feb 2002 22:02:29 +0000</pubDate>
 <dc:creator>dragon007</dc:creator>
 <guid isPermaLink="false">comment 1101499 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101470</link>
    <description> &lt;p&gt;$mailserver = &quot;/usr/sbin/sendmail&quot;; &lt;/p&gt;
&lt;p&gt;Your problem is that your hosting company gave you a URL rather than a path to the file on their server. If you look at the above line closely you&#039;ll notice they are assigning $mailserver a path, starting at the HD root, to the Unix sendmail program. A URL will not work.&lt;/p&gt;
&lt;p&gt;Contact your hosting comapny again and explain to them you need the path to the file on their HD -- not a URL -- to their email program.&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Feb 2002 21:04:31 +0000</pubDate>
 <dc:creator>doublehelix</dc:creator>
 <guid isPermaLink="false">comment 1101470 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101294</link>
    <description> &lt;p&gt;nope, it didn&#039;t work!&lt;/p&gt;
 </description>
     <pubDate>Tue, 12 Feb 2002 17:00:09 +0000</pubDate>
 <dc:creator>dragon007</dc:creator>
 <guid isPermaLink="false">comment 1101294 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101283</link>
    <description> &lt;p&gt;thanks Peter J. Boettcher,&lt;/p&gt;
&lt;p&gt;i&#039;ll give it a try and hope it&#039;s gona work!&lt;/p&gt;
 </description>
     <pubDate>Tue, 12 Feb 2002 14:59:41 +0000</pubDate>
 <dc:creator>dragon007</dc:creator>
 <guid isPermaLink="false">comment 1101283 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101282</link>
    <description> &lt;p&gt;Thanks Dragon!&lt;/p&gt;
&lt;p&gt;I did some more investigating into using Perl and CDONTS and found this example, give it a try:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;my $objMail=Win32::OLE-&amp;gt;new(&amp;#039;CDONTS.NewMail&amp;#039;);&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;{From} = &amp;#039;test@test.com&amp;#039;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;{To} = &amp;#039;test@test.com&amp;#039;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;{Subject} = &amp;#039;test&amp;#039;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;{Body} = &amp;#039;this is a test&amp;#039;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;{Importance} = 2;&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail-&amp;gt;Send();&lt;br /&gt;&amp;nbsp;&amp;nbsp; $objMail = undef;&lt;br /&gt;&amp;nbsp;&amp;nbsp; undef ($objMail);&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Tue, 12 Feb 2002 14:37:47 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1101282 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101277</link>
    <description> &lt;p&gt;yes i tried, but it didn&#039;t work.&lt;/p&gt;
&lt;p&gt;thanks Peter J. Boettcher for your post. by the way you have a very nice looking personal website, i like it!&lt;/p&gt;
 </description>
     <pubDate>Tue, 12 Feb 2002 14:30:05 +0000</pubDate>
 <dc:creator>dragon007</dc:creator>
 <guid isPermaLink="false">comment 1101277 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/need-help-configuring-script#comment-1101271</link>
    <description> &lt;p&gt;Did you try replacing your existing line:&lt;/p&gt;
&lt;p&gt;$mailserver = &quot;/usr/sbin/sendmail&quot;;&lt;/p&gt;
&lt;p&gt;with&lt;/p&gt;
&lt;p&gt;$SMTP_SERVER = &quot;smtp.yourdomain.com&quot;; &lt;/p&gt;
&lt;p&gt;I&#039;m not sure if that will work since I&#039;ve never used CDONTS through Perl, but it&#039;s worth a shot.&lt;/p&gt;
 </description>
     <pubDate>Tue, 12 Feb 2002 14:11:15 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1101271 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
