Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Paul Rempel
If you want to get fancy you could store encrypted credentials in a separate file and make an encoder/decoder nant task.   But the bottom line is our SMTP server requires authentication.  Nant doesn’t support that by default, and changing the server is not an option.  I agree in many cas

Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Eric Lemes
Melissa,You're right. I don't like it too.But when you have a network administrator that don't know how to give the right permissions and don't let you put your hands in the machine and solve the problem, you'll not stop using the wonderful nant, huh? That's the question. EricOn 6/20/06, Melissa Ka

Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Melissa Kacher
I don't want credentials in my scripts, or ending up in my build logs, so I think this is fine.   I would get my IT to give my nant build account permissions on the SMTP server, or change the account I use for building to one that already has permissions to connect to the SMTP server.   Than

Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Eric Lemes
Hello there,The supid .Net Framework 1.1 don't support this by default... I found the same error in Draco.Net (which one I patched but I don't know where to send the patch).I can make a patch to NAnt task, or another new task that supports it. Where I can send patches to NAnt? []'sEric LemesOn 6/20

Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Paul Rempel
To answer by own question, after going through the NAnt.Core.Tasks.MailTask source file, it appears that it doesn't support authentication. Hasn't anyone found this to be a problem for them?? It looks like it would be really easy to add this feature according to the sample code on this MSDN

[NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Paul Rempel
Is there a way to specify a username and password to an SMTP server when sending mail with the task??? -Paul ___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users

Re: [NAnt-users] Showing output of Nat run in email produced by cruisecontrol.net

2006-06-20 Thread Gary Feldman
Robert Hanson wrote: > > I have a cruisecontrol.net setup to build my project. The actual > build happens with nant. The email I get after a build only shows the > error that terminated the build (if any) plus warnings (if any). How > can I get the actual nant output into that email? > Are yo

[NAnt-users] Showing output of Nat run in email produced by cruisecontrol.net

2006-06-20 Thread Robert Hanson
I have a cruisecontrol.net setup to build my project.  The actual build happens with nant.  The email I get after a build only shows the error that terminated the build (if any) plus warnings (if any).  How can I get the actual nant output into that email?