| 1 | = How do I install phplist? = |
| 2 | |
| 3 | [http://www.phplist.com/ phplist] is a program that can be used to send bulk, announcement-only email messages. It is like mailman, however, it does not have the ability to due discussion lists. |
| 4 | |
| 5 | If you would like to setup phplist for your account, you can do so by following these directions: |
| 6 | |
| 7 | * Request a new database by posting a [/newticket ticket] |
| 8 | * Download the latest version from the site's [http://www.phplist.com/download download page] |
| 9 | * [wiki:add_email_address_to_account Add a new email address] that will be used to handle bounces |
| 10 | * Edit your config/config.php: |
| 11 | * Add the db user, db password, and db name (which we will provide after you post the ticket for a new database) |
| 12 | * Add the username and password for the bounce email address that you created above |
| 13 | * Set: |
| 14 | {{{ |
| 15 | $bounce_mailbox_port = “995/pop3/ssl”; |
| 16 | }}} |
| 17 | * Modify the test line to read: |
| 18 | {{{ |
| 19 | define (“TEST”,0); |
| 20 | }}} |
| 21 | * Set the bulk smtp mailer to: |
| 22 | {{{ |
| 23 | define("PHPMAILERHOST",'bulk.mayfirst.org'); |
| 24 | }}} |