<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: SMTP authentication?</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: SMTP authentication?</description>
<language>en</language>
<pubDate>Sat, 12 Sep 2026 23:52:44 +0000</pubDate>

<item>
<title>yuniar on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-433</link>
<pubDate>Mon, 10 Dec 2007 09:28:07 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">433@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Are you using Ultima Hosts? I found this snippet on their site:&#60;br /&#62;
&#60;a href=&#34;http://support.ultimahosts.net/Customer/KBArticle.aspx?articleid=20&#34; rel=&#34;nofollow&#34;&#62;http://support.ultimahosts.net/Customer/KBArticle.aspx?articleid=20&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's the code for sending email using ASP. It seem the configuration would be:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$mail-&#38;gt;SMTPAuth = true;
$mail-&#38;gt;Mailer   = &#38;quot;smtp&#38;quot;;
$mail-&#38;gt;Host     = &#38;quot;mail.ultimahosts.com&#38;quot;;
$mail-&#38;gt;Username = &#38;quot;name@yourdomain.com&#38;quot;;
$mail-&#38;gt;Password = &#38;quot;your_password&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-432</link>
<pubDate>Mon, 10 Dec 2007 09:18:16 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">432@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hmm.. try to ask your hosting company regarding the correct mail server address (could be standard address or ip address) and the port number.&#60;/p&#62;
&#60;p&#62;Usually the port number is 25. If you have different port number, add this line:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$mail-&#38;gt;Port     = &#38;quot;your_port_number&#38;quot;;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
If everything correct but you still didn't get the email, I'll need to check this directly.&#60;br /&#62;
If you don't mind, send me your FTP login to yuniar [at] appnitro.com
&#60;/p&#62;</description>
</item>
<item>
<title>azgunfighter on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-431</link>
<pubDate>Mon, 10 Dec 2007 07:37:23 +0000</pubDate>
<dc:creator>azgunfighter</dc:creator>
<guid isPermaLink="false">431@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Ok I downloaded the file and made the changes you specified. When I tried the form afterwards, it resulted in the following error:&#60;/p&#62;
&#60;p&#62;Warning: fsockopen() [function.fsockopen]: unable to connect to 127.0.0.1:25 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ) in D:\ultimaweb\apachetrail\apachetrailtours.com\wwwroot\machform\lib\class.smtp.php on line 105&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at D:\ultimaweb\apachetrail\apachetrailtours.com\wwwroot\machform\lib\class.smtp.php:105) in D:\ultimaweb\apachetrail\apachetrailtours.com\wwwroot\machform\view.php on line 33&#60;/p&#62;
&#60;p&#62;I am assuming that this is a connection error on my server's end. I tried changing the host address to the actual server name, i.e. mail.server.com and the error went away and the form processed correctly but no email has been received yet. Is that IP address a standard address? or can that be set differently by the hosting company?&#60;/p&#62;
&#60;p&#62;Thank you for your help with this.&#60;/p&#62;
&#60;p&#62;Larry
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-429</link>
<pubDate>Mon, 10 Dec 2007 06:24:38 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">429@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello Larry,&#60;/p&#62;
&#60;p&#62;First, you will need to download this file &#60;a href=&#34;http://www.appnitro.com/class.smtp.zip&#34; rel=&#34;nofollow&#34;&#62;http://www.appnitro.com/class.smtp.zip&#60;/a&#62;&#60;br /&#62;
Unzip the file and upload it into your &#60;strong&#62;machform/lib&#60;/strong&#62; folder.&#60;/p&#62;
&#60;p&#62;Second, edit your &#60;strong&#62;includes/helper-functions.php&#60;/strong&#62; file, around line 437 you will find this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$mail-&#38;gt;Host     = &#38;quot;127.0.0.1&#38;quot;;
$mail-&#38;gt;Mailer   = &#38;quot;mail&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
Replace that code with this one:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$mail-&#38;gt;SMTPAuth = true;
$mail-&#38;gt;Mailer   = &#38;quot;smtp&#38;quot;;
$mail-&#38;gt;Host     = &#38;quot;127.0.0.1&#38;quot;;
$mail-&#38;gt;Username = &#38;quot;your_username&#38;quot;;
$mail-&#38;gt;Password = &#38;quot;your_password&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
Adjust the value of Host, Username and Password as needed.&#60;br /&#62;
That should set the SMTP authentication.&#60;/p&#62;
&#60;p&#62;Sorry for this pain, I'll try to make this easier for the next version.&#60;/p&#62;
&#60;p&#62;Let me know if this doesn't work for you.
&#60;/p&#62;</description>
</item>
<item>
<title>azgunfighter on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-427</link>
<pubDate>Mon, 10 Dec 2007 03:01:57 +0000</pubDate>
<dc:creator>azgunfighter</dc:creator>
<guid isPermaLink="false">427@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Further discussion with my host company has revealed that they use the Pear API to handle the smtp process within PHP. Can you provide me with some help in determining what and how I can modify the application as necessary to resolve this issue.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pear.php.net/package/Net_SMTP/docs&#34; rel=&#34;nofollow&#34;&#62;http://pear.php.net/package/Net_SMTP/docs&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Larry
&#60;/p&#62;</description>
</item>
<item>
<title>azgunfighter on "[closed] SMTP authentication?"</title>
<link>https://www.machform.com/forums/topic/smtp-authentication#post-425</link>
<pubDate>Mon, 10 Dec 2007 01:57:27 +0000</pubDate>
<dc:creator>azgunfighter</dc:creator>
<guid isPermaLink="false">425@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;The install went as easy as possible. The sample form I created is working and collecting entries in the database just fine, but unfortunately the system is not sending email to the designated form recipient. The site is hosted on a windows 2003 server. In checking with tech support of the hosting company, they say that you have to use smtp authentication for emailing. How in the world would you set that up in machforms? It doesn't make sense as to why that would be necessary but that is what I am being told. Is anyone else using a windows server and had a similar problem? Any suggestions on how to resolve this so the desired user gets notified of form entries via email?&#60;/p&#62;
&#60;p&#62;Thanks for any assistance anyone might could provide.&#60;/p&#62;
&#60;p&#62;Larry&#60;br /&#62;
azgnfighter
&#60;/p&#62;</description>
</item>

</channel>
</rss>
