tags:

views:

22

answers:

1

I have upload my joomla project on live server (Linux basd LAMP) in phpinfo file I found the "/usr/sbin/sendmail -t -i" for smtp configuration. and my local WAMP server configuration use "/usr/sbin/sendmail" any please let know why use -t and -i. what is it ?

A: 

You should be able to discern this with man sendmail. The -i option prevent a single line containing . from being treated as a message terminator (on the off chance that a valid message may contain a line like that) while -t means that it will get the recipient list from the message headers (to:, cc: and bcc:) as well as the command line (which may well be empty so you probably want to scan the headers).

paxdiablo