Greetings,
Did you make sure to modify the $listmail_url variable inside the .CGI script? It should look something like as follows:
$listmail_url = 'http://www.listmailpro.com/mail';
Also, the program
/usr/bin/wget needs to be available. If wget is not in that location, you can either copy it to that location or modify the .CGI script to reflect the correct path.
It is possible that your host does not use .procmailrc. Often, the best/fastest way to set these up is to ask your host if "email aliases that forward to CGI scripts" are available, and how they are set up on your host.
If you are your own host, the easiest way could be by editing the file
/etc/aliases, adding the following line:
email1@mydomain.com: "|/home/mydomian/public_html/cgi-bin/signup-list1.cgi"
After editing /etc/aliases, make sure to run the command
newaliases.
Check out this page for more documentation:
http://www.listmailpro.com/help/7.htmlHope that helps!