RE: Email Notifier Configuration

2006-04-18 Thread Xavier Frisaye
Hi everybody,

I've configured mail notifier in our pom like this :

ciManagement
systemcontinuum/system
notifiers
notifier
typemail/type
sendOnErrortrue/sendOnError
sendOnFailuretrue/sendOnFailure
sendOnWarningtrue/sendOnWarning
sendOnSuccessfalse/sendOnSuccess
configuration
address[EMAIL PROTECTED]/address
/configuration
/notifier
/notifiers
/ciManagement

But it seems to notify even in successful build.
Am i missing something?

Regards,

Xavier

-Original Message-
From: Kaare Nilsen [mailto:[EMAIL PROTECTED]
Sent: samedi 15 avril 2006 23:35
To: continuum-users@maven.apache.org
Subject: Re: Email Notifier Configuration


AFAIK you will need one notifier pr mailadress

/K

On 15/04/06, Andreas Guther [EMAIL PROTECTED] wrote:
 Hi,

 I am using continuum 1.0.2 with Maven 2.0.4.

 I am having problems finding detailed information about the email
 notifier configuration.

 From the few examples I could find I have the impression that there is
 always a mailing list to be used.  Is it possible to have multiple user
 addresses in the configuration part, something like in the example
 below?

 Where would be a good place to find more detailed configuration
 information than at
 http://maven.apache.org/continuum/guides/getting-started/index.html?

 Thanks in advance for any help.

 Andreas

 Would the multiple address entry as shown below be a valid
 configuration?

 ciManagement
 systemcontinuum/system
 urlhttp://my.company.com:8080/continuum//url
 notifiers
 notifier
 typemail/type
 sendOnSuccesstrue/sendOnSuccess
 configuration

 address[EMAIL PROTECTED]/address

 address[EMAIL PROTECTED]/address
 /configuration
 /notifier
 notifier
 typemail/type
 sendOnErrortrue/sendOnError
 configuration

 address[EMAIL PROTECTED]/address
 /configuration
 /notifier
 /notifiers
 /ciManagement





Re: Email Notifier Configuration

2006-04-18 Thread Emmanuel Venisse

It's fixed in 1.0.3 that will be release soon

Emmanuel

Xavier Frisaye a écrit :

Hi everybody,

I've configured mail notifier in our pom like this :

ciManagement
systemcontinuum/system
notifiers
notifier
typemail/type
sendOnErrortrue/sendOnError
sendOnFailuretrue/sendOnFailure
sendOnWarningtrue/sendOnWarning
sendOnSuccessfalse/sendOnSuccess
configuration
address[EMAIL PROTECTED]/address
/configuration
/notifier
/notifiers
/ciManagement

But it seems to notify even in successful build.
Am i missing something?

Regards,

Xavier

-Original Message-
From: Kaare Nilsen [mailto:[EMAIL PROTECTED]
Sent: samedi 15 avril 2006 23:35
To: continuum-users@maven.apache.org
Subject: Re: Email Notifier Configuration


AFAIK you will need one notifier pr mailadress

/K

On 15/04/06, Andreas Guther [EMAIL PROTECTED] wrote:


Hi,

I am using continuum 1.0.2 with Maven 2.0.4.

I am having problems finding detailed information about the email
notifier configuration.

From the few examples I could find I have the impression that there is
always a mailing list to be used.  Is it possible to have multiple user
addresses in the configuration part, something like in the example
below?

Where would be a good place to find more detailed configuration
information than at
http://maven.apache.org/continuum/guides/getting-started/index.html?

Thanks in advance for any help.

Andreas

Would the multiple address entry as shown below be a valid
configuration?

ciManagement
   systemcontinuum/system
   urlhttp://my.company.com:8080/continuum//url
   notifiers
   notifier
   typemail/type
   sendOnSuccesstrue/sendOnSuccess
   configuration

address[EMAIL PROTECTED]/address

address[EMAIL PROTECTED]/address
   /configuration
   /notifier
   notifier
   typemail/type
   sendOnErrortrue/sendOnError
   configuration

address[EMAIL PROTECTED]/address
   /configuration
   /notifier
   /notifiers
   /ciManagement











Re: Email Notifier Configuration

2006-04-18 Thread Emmanuel Venisse

addresses are separated by ,, so in your case, it will be:

ciManagement
  systemcontinuum/system
  urlhttp://my.company.com:8080/continuum//url
  notifiers
notifier
  typemail/type
  sendOnSuccesstrue/sendOnSuccess
  configuration
address[EMAIL PROTECTED],[EMAIL PROTECTED]/address
  /configuration
/notifier
notifier
  typemail/type
  sendOnErrortrue/sendOnError
  configuration
address[EMAIL PROTECTED]/address
  /configuration
/notifier
  /notifiers
/ciManagement

Emmanuel

Andreas Guther a écrit :

Hi,

I am using continuum 1.0.2 with Maven 2.0.4.

I am having problems finding detailed information about the email
notifier configuration.


From the few examples I could find I have the impression that there is

always a mailing list to be used.  Is it possible to have multiple user
addresses in the configuration part, something like in the example
below?

Where would be a good place to find more detailed configuration
information than at
http://maven.apache.org/continuum/guides/getting-started/index.html?

Thanks in advance for any help.

Andreas

Would the multiple address entry as shown below be a valid
configuration?

ciManagement
systemcontinuum/system
urlhttp://my.company.com:8080/continuum//url
notifiers
notifier
typemail/type
sendOnSuccesstrue/sendOnSuccess
configuration

address[EMAIL PROTECTED]/address

address[EMAIL PROTECTED]/address
/configuration
/notifier
notifier
typemail/type
sendOnErrortrue/sendOnError
configuration

address[EMAIL PROTECTED]/address
/configuration
/notifier
/notifiers
/ciManagement









Re: Email Notifier Configuration

2006-04-18 Thread Wayne Fay
Given that the Maven standard is moving from comma-separated values in
a single XML element to multiple sub-elements under a single XML node
ie:
abcs
abcxyz/abc
abclmnop/abc
abcqwerty/abc
/abcs

It seems to make more sense to me that you follow that standard. ;-)

But having said that... email standards accept [EMAIL PROTECTED], [EMAIL 
PROTECTED],
[EMAIL PROTECTED] as valid send-to values. So the XML approach above adds
unnecessary complexity.

So I guess its entirely up to you.
Wayne

On 4/18/06, Emmanuel Venisse [EMAIL PROTECTED] wrote:
 addresses are separated by ,, so in your case, it will be:

 ciManagement
   systemcontinuum/system
   urlhttp://my.company.com:8080/continuum//url
   notifiers
 notifier
   typemail/type
   sendOnSuccesstrue/sendOnSuccess
   configuration
 address[EMAIL PROTECTED],[EMAIL PROTECTED]/address
   /configuration
 /notifier
 notifier
   typemail/type
   sendOnErrortrue/sendOnError
   configuration
 address[EMAIL PROTECTED]/address
   /configuration
 /notifier
   /notifiers
 /ciManagement

 Emmanuel

 Andreas Guther a écrit :
  Hi,
 
  I am using continuum 1.0.2 with Maven 2.0.4.
 
  I am having problems finding detailed information about the email
  notifier configuration.
 
 From the few examples I could find I have the impression that there is
  always a mailing list to be used.  Is it possible to have multiple user
  addresses in the configuration part, something like in the example
  below?
 
  Where would be a good place to find more detailed configuration
  information than at
  http://maven.apache.org/continuum/guides/getting-started/index.html?
 
  Thanks in advance for any help.
 
  Andreas
 
  Would the multiple address entry as shown below be a valid
  configuration?
 
  ciManagement
systemcontinuum/system
urlhttp://my.company.com:8080/continuum//url
notifiers
notifier
typemail/type
sendOnSuccesstrue/sendOnSuccess
configuration
 
  address[EMAIL PROTECTED]/address
 
  address[EMAIL PROTECTED]/address
/configuration
/notifier
notifier
typemail/type
sendOnErrortrue/sendOnError
configuration
 
  address[EMAIL PROTECTED]/address
/configuration
/notifier
/notifiers
/ciManagement
 
 
 
 
 




RE: Email Notifier Configuration

2006-04-18 Thread Andreas Guther
Of course, that makes sense!  A comma separated list of addresses is a valid 
email address!

But how would I have guessed that?  I guess I could have, but I did not :(

Regarding Wayne's reply:  I think the configuration should support the multiple 
address entry (list of addresses) as well, which would be more an XML 
conformant way to do it and probably easier to guess by user lacking of 
complete documentation.

Thanks for the answer.

Andreas



-Original Message-
From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 18, 2006 10:58 AM
To: continuum-users@maven.apache.org
Subject: Re: Email Notifier Configuration

addresses are separated by ,, so in your case, it will be:

ciManagement
   systemcontinuum/system
   urlhttp://my.company.com:8080/continuum//url
   notifiers
 notifier
   typemail/type
   sendOnSuccesstrue/sendOnSuccess
   configuration
 address[EMAIL PROTECTED],[EMAIL PROTECTED]/address
   /configuration
 /notifier
 notifier
   typemail/type
   sendOnErrortrue/sendOnError
   configuration
 address[EMAIL PROTECTED]/address
   /configuration
 /notifier
   /notifiers
/ciManagement

Emmanuel

Andreas Guther a écrit :
 Hi,
 
 I am using continuum 1.0.2 with Maven 2.0.4.
 
 I am having problems finding detailed information about the email
 notifier configuration.
 
From the few examples I could find I have the impression that there is
 always a mailing list to be used.  Is it possible to have multiple user
 addresses in the configuration part, something like in the example
 below?
 
 Where would be a good place to find more detailed configuration
 information than at
 http://maven.apache.org/continuum/guides/getting-started/index.html?
 
 Thanks in advance for any help.
 
 Andreas
 
 Would the multiple address entry as shown below be a valid
 configuration?
 
 ciManagement
   systemcontinuum/system
   urlhttp://my.company.com:8080/continuum//url
   notifiers
   notifier
   typemail/type
   sendOnSuccesstrue/sendOnSuccess
   configuration
   
 address[EMAIL PROTECTED]/address
   
 address[EMAIL PROTECTED]/address
   /configuration
   /notifier
   notifier
   typemail/type
   sendOnErrortrue/sendOnError
   configuration
   
 address[EMAIL PROTECTED]/address
   /configuration
   /notifier
   /notifiers
   /ciManagement