

Installation Introduction to ListMail System Requirements Running Under Windows Download and Unzip Edit config.php.txt Upload Files with FTP /attach Permissions Install Database Tables Setup Config Menu Email Signup / bounce.cgi 1 Configure Scripts Locally 2 Upload to CGI bin, CHMOD 3 Setup Email Aliases Sendmail (.procmailrc) QMail (.qmail) CPanel (forward) Ensim (.procmailrc) Host4Profit DreamHost Bounce Mailbox Test Mail Settings Schedule Dailymail Set up Cron with SSH vi Editor Pico Editor Install wget if needed Windows / no Cron Schedule Auto-Resume

Configuration Config Menu Backup & Restore

List Setup List Settings Followup Messages Custom HTML Custom Fields Signup Forms

Managing Users User Database User Selection Importing Users Exporting Users

Sending Email Sending Email Scheduler Sent Messages Message Codes Link Tracking File Attachments

|
 |
 |

 |
 Installation - Email Signup / bounce.cgi - 3 Setup Email Aliases - Ensim (.procmailrc)
|
 |


|


|
Email Aliases with Ensim
First, modify bounce.cgi and signup-list1.cgi to contain your ListMail URL.
** Ensim Note: You must modify the following line in each CGI script:
bounce.cgi:
$http_program = "/usr/bin/wget -O /dev/null " . $listmail_url . "/bounce.php";
$http_program = "/usr/bin/curl " . $listmail_url . "/bounce.php";
signup-listX.cgi
$http_program = "/usr/bin/wget -O /dev/null " . $listmail_url . "/signup.php";
$http_program = "/usr/bin/curl " . $listmail_url . "/signup.php";
Next, upload the CGI scripts to your cgi-bin directory and CHMOD (set permissions) them to 755.
Your server should support procmail. We need to put a file called .procmailrc in your HOME directory.
Open a new file with a text-editor such as Notepad. Copy & paste the following lines of text:
:0
* ^TO_bounce@yoursite.com
| /path/to/your/cgi-bin/bounce.cgi
:0
* ^TO_signup@yoursite.com
| /path/to/your/cgi-bin/signup-list1.cgi
Replace bounce@yoursite.com with your ListMail bounce address.
Replace signup@yoursite.com with the signup address of your choice.
Replace /path/to/your/cgi-bin with the full server path to your cgi-bin.
If you have created additional signup scripts, you can add those too. Copy the 3 line format above for as many addresses as you want and files as you have set up.
Save the file as procmailrc.txt, or similar, in a temporary folder that will be easy to access with your FTP program.
Upload the file into your home directory (not your mainwebsite_html directory, the one up from that) and rename the new remote file to .procmailrc
Note: The reason for renaming these files once they've been uploaded is because on a Windows platform you can't have a file with a period as the first letter of the filename, ie: .procmailrc, or otherwise. It is recommended that you rename the file once you have uploaded it with FTP. |

|
Next:Host4Profit


|
 |