Hertz Wang 王怀志 wrote:
> Hi All,
>  
> I met another problem when try to use codestriker 1.9.2 Alpha2.
>  
> When I create a new topic or add some comments, the mail notification 
> doesn't work. this is the message I got,
>  
> "5.7.0 No AUTH command has been given."
>  
> My configration in codestriker.conf:
> $mailhost = 'pnmsmail.neusoft.com';
>  
> my mail server need authorization, how can I solve this problem?

Open up the file: lib/Codestriker/TopicListeners/Email.pm and go to line
442, where you should see:

$smtp->mail($from);

Modify this code to read (substitute the strings with your actual
username/password values).

$smtp->auth('myusername', 'mypassword');
$smtp->mail($from);

Let me know if that work or not.  If it does, I'll modify
codestriker.conf so that this extra mail config can be specified there.

Cheers,
David



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Codestriker-user mailing list
Codestriker-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/codestriker-user

Reply via email to