[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: perl and ssmtp



To Phillip,
www-data@server.edu is most likely the user your process is running
under.
Do you have sendmail running? It's really easy to fake the from address.

code snip
----------------------------------------

$mailprog = '/usr/lib/sendmail';
$toEmail= 'anyone@yahoo.com';
open(MAIL, "|$mailprog -t");
print MAIL "To: $toEmail\n";
print MAIL "From: your_name\@domain.edu\n";
print MAIL "Subject: Hello World\n\n";
print MAIL "This is the body\n";
close(MAIL);

---------------------------------------

Thank You,
Trent
surflorida@rack.neobeach.com

Who is John Galt?

phiLLip maDDux II wrote:
> 
> Hello,
> 
> I have a perl program that makes a call to ssmtp on the system to send
> out an email. When I send out the email I specify the from:  however it
> does not work, it always makes it look like the email came from
> www-data@server.edu.
> 
> Does anybody have any suggestions of what I should look for? Do I need
> to give more info to help determine the problem?
> 
> Thank you!
> 
> --
> To UNSUBSCRIBE, email to debian-perl-request@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org

--



Reply to: