RE: [Nant-users] Mailinging the build log

2004-10-12 Thread Merrill Cornish
Felice, I didn't see any funny characters, but I did notice that the block you identified occurs twice. The second time it is over 1800 lines into the file. Does the mailer you are using have a limit? One way of checking for a length limit would be to temporarily comment out a couple of the

RE: [SPAM] - RE: [Nant-users] Mailinging the build log - Email found in subject

2004-10-12 Thread Felice Vittoria
assemblies... [exec] -Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 12:49 PM To: Felice Vittoria; Ernst Kuschke; [EMAIL PROTECTED] Subject: [SPAM] - RE: [Nant-users] Mailinging the build log - Email found in subject Felice, Gert beat

RE: [Nant-users] Mailinging the build log

2004-10-12 Thread Merrill Cornish
Felice, Gert beat me to it. If part, but not all, of the log is sent, and it's the same part each time, then there is probably a control character or a character with the high order bit set in the file somewhere. The log file you attached is quite long. Can you give us an idea of where in th

Re: [Nant-users] Mailinging the build log

2004-10-12 Thread Felice Vittoria
:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 12:05 PM To: Felice Vittoria; Merrill Cornish; Ernst Kuschke; [EMAIL PROTECTED] Subject: [SPAM] - Re: [Nant-users] Mailinging the build log - Email found in subject Felice, Check if the content that you're logging includes any null character

Re: [Nant-users] Mailinging the build log

2004-10-12 Thread Gert Driesen
AIL PROTECTED]> To: "Merrill Cornish" <[EMAIL PROTECTED]>; "Ernst Kuschke" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 12, 2004 6:51 PM Subject: RE: [Nant-users] Mailinging the build log Merrill, I did some more digging into the problem.

RE: [Nant-users] Mailinging the build log

2004-10-12 Thread Felice Vittoria
a copy of the zip let me know and I will send it to you. Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Merrill Cornish Sent: Friday, October 08, 2004 1:40 PM To: Felice Vittoria; Ernst Kuschke; [EMAIL PROTECTED] Subject: RE: [Nant-users] Mailinging

RE: [Nant-users] Mailinging the build log

2004-10-08 Thread Merrill Cornish
Felice, I believe that the debug level will give you everything. For the MailLogger, you would not use the nant.onsuccess and nant.onfailure properties. Instead, the MailLogger defines its own set of properties that you can initialize with your mail subject line, address list , and so on. If

RE: [Nant-users] Mailinging the build log

2004-10-08 Thread Felice Vittoria
t.onsuccess and nant.onfailure properties. Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Merrill Cornish Sent: Friday, October 08, 2004 10:59 AM To: Felice Vittoria; Ernst Kuschke; [EMAIL PROTECTED] Subject: RE: [Nant-users] Mailinging the bui

RE: [Nant-users] Mailinging the build log

2004-10-08 Thread Merrill Cornish
Felice, There are two built-in NAnt properties: nant.onsuccess and nant.onfailure. Normally, they are not defined. However, you can set either or both to a target(s) in your script. If the overall NAnt build finishes successfully, then whatever task you have named in the nant.onsuccess prop

RE: [Nant-users] Mailinging the build log

2004-10-08 Thread Felice Vittoria
PROTECTED] Behalf Of Merrill Cornish Sent: Friday, October 08, 2004 8:35 AM To: Ernst Kuschke; [EMAIL PROTECTED] Subject: Re: [Nant-users] Mailinging the build log You need to use the logger functionality. You can start and stop the logger from inside the NAnt script. So, you start the logger

RE: [Nant-users] Mailinging the build log

2004-10-08 Thread Ernst Kuschke
Thanks for all the replies ;o) Sorted! Ernst Kuschke -C# MVP http://dotnet.org.za/ernst -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 October 2004 03:52 PM To: Ernst Kuschke Cc: [EMAIL PROTECTED] Subject: Re: [Nant-users] Mailinging the build log Hello

Re: [Nant-users] Mailinging the build log

2004-10-08 Thread pierre . thorey
Hello, you can use the "record" task from nant-contrib project. You have just to stop recording just before sending the mail. Pierre. |-+--> | | [EMAIL PROTECTED] | | | Sent by: | |

Re: [Nant-users] Mailinging the build log

2004-10-08 Thread Merrill Cornish
You need to use the logger functionality. You can start and stop the logger from inside the NAnt script. So, you start the logger at the start of the script. You then use a build-success and build-fail target to stop the logger and mail its result. Check out NAnt/doc/help/fundamentals/listen

Re: [Nant-users] Mailinging the build log

2004-10-08 Thread Gert Driesen
Ernst, You should use the MailLogger. See http://nant.sourceforge.net/nightly/help/fundamentals/listeners.html for more information. Hope this helps, Gert - Original Message - From: "Ernst Kuschke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 08, 2004 3:07 PM Subj