| 1 |
// $Id: README.txt,v 1.10 2008/07/03 18:41:15 oadaeh Exp $
|
| 2 |
|
| 3 |
SMTP Authentication Support module for Drupal 6.x.
|
| 4 |
This module adds SMTP functionality to Drupal.
|
| 5 |
|
| 6 |
REQUIREMENTS
|
| 7 |
------------
|
| 8 |
* Access to an SMTP server
|
| 9 |
* PHP version 4.0.0 and up.
|
| 10 |
* The following PHP extensions need to be installed: ereg, hash, date & pcre.
|
| 11 |
* The PHPMailer package from Codeworx Tech., which can be found here:
|
| 12 |
http://sourceforge.net/project/showfiles.php?group_id=26031
|
| 13 |
http://sourceforge.net/projects/phpmailer/
|
| 14 |
http://phpmailer.codeworxtech.com/
|
| 15 |
* Optional: To connect to an SMTP server using SSL, you need to have the
|
| 16 |
openssl package installed on your server, and your webserver and PHP
|
| 17 |
installation need to have additional components installed and configured.
|
| 18 |
|
| 19 |
INSTALL INSTRUCTIONS
|
| 20 |
--------------------
|
| 21 |
See INSTALL.txt
|
| 22 |
|
| 23 |
NOTES
|
| 24 |
-----
|
| 25 |
This module sends email by connecting to an SMTP server. Therefore, you need
|
| 26 |
to have access to an SMTP server for this module to work.
|
| 27 |
|
| 28 |
Drupal will often use the email address entered into Administrator -> Site
|
| 29 |
configuration -> E-mail address as the from address. It is important for
|
| 30 |
this to be the correct address and some ISPs will block email that comes from
|
| 31 |
an invalid address.
|
| 32 |
|
| 33 |
Because this module uses the PHPMailer package, it is rather large and may
|
| 34 |
cause PHP to run out of memory if its memory limit is small.
|
| 35 |
|
| 36 |
Connecting to an SMTP server using SSL is possible only if PHP's openssl
|
| 37 |
extension is working. If the SMTP module detects openssl is available it
|
| 38 |
will display the options in the modules settings page.
|
| 39 |
|
| 40 |
Sending mail to Gmail requires SSL or TLS.
|