ListMailPRO Email Marketing Software Forums
ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: ihsreal on February 04, 2007, 08:15:31 pm
-
I've run the testmail settings in the configuration manager and I received Success responses for both bounce and signup in the config manager and an email: "from ListMail Notification" "subject ListMail SMTP Test: Success!" for the bounce@mydomain.com
however, no email verification came from the signup@mydomain.com and no new entry was made in the database for a new user when I send a blank email to signup@mydomain.com.
am I missing a step?
thanks
-
Here's the email I get when sending a test to signup@mydomain.com
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:
pipe to |/home/mydomain/public_html/cgi-bin/signup-list1.cgi
generated by signup@mydomain.com
local delivery failed
-
I recommend setting up bounce.cgi and then using the knowledge from that to set up the signup scripts. When you run "Test Mail Settings" do you get two emails? One will state "SMTP Success" and the other will state "bounce.cgi Success".
pipe to |/home/mydomain/public_html/cgi-bin/signup-list1.cgi
generated by signup@mydomain.com
local delivery failed
Is it possible your script is not chmod to 755 to be executable? Are you certain your host supports email forwarding / piping? (If they use CPanel, very common, the required forwarders should be supported as mentioned on this help page (http://www.listmailpro.com/help/cgi_cpanel.html)).
Regards
-
When running the test I only receive 1 email - SMTP success.
The scripts in the public_html/cgi-bin directory are both set to 755. I had the Server Managment company set up the piping, so I think that's done correctly.
-
The best way to check is to manually send an email to your bounce address with TESTBOUNCE in the subject. If something is misconfigured you should receive a failure notice (bounce) back with some more information. If you don't receive any response it's possible that the URL is not entered correctly in bounce.cgi or the /usr/bin/wget system utility used by bounce.cgi is unavailable (in which case you might try an alternative (http://listmailpro.com/forum/index.php?topic=957.0) such as curl).
Regards
-
Yes, I get a failed message when sending to bounce@mydomain.com.
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:
pipe to |/home/mydomain/public_html/cgi-bin/bounce.cgi
generated by bounce@mydomain.com
local delivery failed
Here's the URL in bounce.cgi
$listmail_url = "http://www.mydomain.com/ListMail";
$http_program = "/usr/bin/wget -O /dev/null " . $listmail_url . "/bounce.php";
-
Your system appears to work with the alternative (http://listmailpro.com/forum/index.php?topic=957.0) curl. Set this line in bounce.cgi and your CGI scripts:
$http_program = "/usr/bin/wget -O /dev/null " . $listmail_url . "/bounce.php";
to this:
$http_program = "curl -o /dev/null " . $listmail_url . "/bounce.php";
You can replace "/usr/bin/wget -O" in your cron task with "curl -o" as well.
Regards