Index: typo3_trunk/t3lib/config_default.php =================================================================== --- typo3_trunk/t3lib/config_default.php (Revision 9262) +++ typo3_trunk/t3lib/config_default.php (Arbeitskopie) @@ -359,7 +359,7 @@ 'XCLASS' => array(), // See 'Inside TYPO3' document for more information. ), 'MAIL' => array( // Mail configurations to tune how t3lib_mail classes will send their mails. - 'transport' => 'mail', //

String:

mail
Sends messages by delegating to PHP's internal mail() function. No further settings required. This is the most unreliable option. If you are serious about sending mails, consider using "smtp" or "sendmail".
smtp
Sends messages over the (standardized) Simple Message Transfer Protocol. It can deal with encryption and authentication. Most flexible option, requires a mail server and configurations in transport_smtp_* settings below. Works the same on Windows, Unix and MacOS.
sendmail
Sends messages by communicating with a locally installed MTA – such as sendmail. See setting transport_sendmail_command bellow.
+ 'transport' => 'mail', //

String:

mail
Sends messages by delegating to PHP's internal mail() function. No further settings required. This is the most unreliable option. If you are serious about sending mails, consider using "smtp" or "sendmail".
smtp
Sends messages over the (standardized) Simple Message Transfer Protocol. It can deal with encryption and authentication. Most flexible option, requires a mail server and configurations in transport_smtp_* settings below. Works the same on Windows, Unix and MacOS.
sendmail
Sends messages by communicating with a locally installed MTA – such as sendmail. See setting transport_sendmail_command bellow.
'transport_smtp_server' => 'localhost:25', // String: only with transport=smtp: <server:port> of mailserver to connect to. <port> defaults to "25". 'transport_smtp_encrypt' => FALSE, // Boolean: only with transport=smtp: Connect to the server using encryption and TLS. Requires openssl library. 'transport_smtp_username' => '', // String: only with transport=smtp: If your SMTP server requires authentication, enter your username here.