Re: [Codestriker-user] Newbie question - mail configuration
Brought to you by:
sits
|
From: David S. <dav...@gm...> - 2008-10-11 04:01:46
|
Sorry - this was my bad.
You can easily fix this if you edit lib/Codestriker/AddNewUser.pm, and
change two lines:
$smtp->mail("codestriker");
and a bit further down:
$smtp->datasend("From: codestriker\n");
On my system, it wasn't a problem to use codestriker, but obviously on
yours this is an issue. I'll make this configurable in the next
release so you can set the email address to use when codestriker sends
out these kind of "admin" emails.
As an example, you could make them (set the domain part right for your system):
$smtp->mail("codestriker\@myhost.com");
and a bit further down:
$smtp->datasend("From: codestriker\@myhost.com\n");
Please let me know if that fixes thing for you.
Cheers,
David
|