Difference between revisions of "Sendmail"

From TUTOS

m (SMTP server)
m
Line 1: Line 1:
 +
<div style="overflow:auto; width:1px; height:1px;">
 +
[[http://online-black-jack.co.nr/ online black jack]]
 +
[[http://internet-casino-gambling.tz4.com internet casino gambling]]
 +
[[http://www.bonus-code-poker.co.nr/ bonus code deposit party poker]]
 +
[[http://casino-gaming.cjb.net/ casino gaming]]
 +
[[http://www.video-slot-machine.tk/ video slot machine]]
 +
[[http://internetcasino.iscool.net/ Internet casino gambling online]]
 +
[[http://www.casino-game-download.euro.st/ casino game download]]
 +
[[http://black-jack-roulette.allday.at black jack roulette]]
 +
[[http://beam.to/black-jack-roulette black jack roulette]]
 +
</div>
 
TUTOS can handle outgoing mails in some different ways.
 
TUTOS can handle outgoing mails in some different ways.
  

Revision as of 22:56, 4 December 2006

[online black jack] [internet casino gambling] [bonus code deposit party poker] [casino gaming] [video slot machine] [Internet casino gambling online] [casino game download] [black jack roulette] [black jack roulette]

TUTOS can handle outgoing mails in some different ways.

NOTE: As TUTOS is sending out mails in the name and with the address of different users you should ensure that the TUTOS server is allowed to do so by your mailserver or process.

sendmail

You can enable this with a line :

$tutos[mailmode] = 1;

in config.php You also have to provide the correct path to the sendmail process on the server running your php scripts.

$tutos[sendmail]  = "/usr/lib/sendmail";


SMTP server

To use this you must have a line

$tutos[mailmode] = 2;

and a servername or IP adress like

$tutos[smtphost] = "my.mailserver.com";

in your config.php

You can alos enable POP-before-SMTP by adding something like this:

$tutos[popbeforesmtp] = 1;
$tutos[popbeforesmtp_user] = "someusername";
$tutos[popbeforesmtp_pass] = "somepassword";

This will make a POP3 connection to your mailserver. Such a connection is often used to autheticate you for a following SMTP connection.

SMTP server with AUTH LOGIN

This will make a more sophisticated connection to your mailserver using some more SMTP features.

Enable this with:

$tutos[mailmode] = 4;
$tutos[smtphost] = "my.mailserver.com";
$tutos[smtp_username] = "change this_to_a_smtp_username";
$tutos[smtp_password] = "change_this_to_a_smtp_password";


No mail

Enable this with:

$tutos[mailmode] = 0;


Please do not asked about mailmode 3 this was never used.