Subjects
Home
mod jk2 https
Donation of JAXP 1 3 Sources to Apache
R annoyances
RE: Finding out when the aspnet admin worker process has recycled
Favorite Linux Distribution
eigenvalues of a circulant matrix
Apache Install
Reachin apache from outside
Ant should have an ext directory
Warning: Documentroot doesn 't exist
Can this be Done?
RE: Multilanguage Application
RE: Simple Question On setting up Sub Domain site
Lack of independence in anova()
How to close connection instead of sending 403?
winning the case for ANT
Re: adding php
New Ant GUI 'Ant 's Nest '
Narrowing Down A Strange Problem
Ant Task: sshexec
R Graph Gallery : categorization of the graphs
I 've been hacked, I need some help please
RE: Anyone working with DotNetNuke?
RE: Exception Handling Opinion
hex format
RE: IIS stopped working :(
<for > Build Failed:problem
RE: Separation of Objects from Logic
RE: Tracking pages with long request execution time
sending email to multiple destination
Web Site
ant UI
Easy cut & paste from Excel to R?
Win32 Apache Restart
Improving Tasks
HELP! PLEASE!
RE: Adding Controls to a Page
read table
RE: ASPNET account doesn 't exist!
Best way to uninstall Apache2 on red hat
from win to linux how to web page
XMLParseException changes and creation of XMLLocator2
Re Post: rewrite backslash to forward slash
Target or macrodef?
Page display problem XPSP2
Authentication problems
Dynamic Dictionary Data Type?
Newbie unable access my www from outside
off topic question: Latex and R in industries
Conflict between xtable and Hmisc when using Sweave?
Very old problem without any new solution
mod rewrite help
Basic Authentication question
RE: Code Security
calling ant from java program
prevent double signing
Re: Controlling Copy/Paste/Print
Using R to illustrate the Central Limit Theorem
web server slow too much slow
access to user directories
Links
Home
Official R Project Site
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
sending email to multiple destination

sending email to multiple destination

2005-01-31       - By George Dibi
Reply:     1     2     3     4     5     6     7     8     9     10     >>  


Guys, I am trying to find a way to send the email to multiple addresses.
The to address="george@(protected)"/> will not let me use multiple
addresses.
Is there anyone that had to deal with this issue before?

Thanks


<target name="mymail">
<mail mailhost="mail-relay-dal.intervoice.int" mailport="25"
subject="isoft36 build notification">
 <from address="george.dibi@(protected)"/>
 <replyto address="george.dibi@(protected)"/>
 <to address="george.dibi@(protected)"/>
 <!--to address="gdibi_2000@(protected)"/-->
 <message>The build failed</message>
 <!--<fileset dir="d:/autobuild-report/appsupport1"
includes="*.report"/>-->
 <fileset dir="d:/intv/dat" includes="*.err"/>
</mail>
</target>



-----Original Message-----
From: Erskine, Chris [mailto:chris.erskine@(protected)]
Sent: Tuesday, January 11, 2005 10:15 AM
To: Ant Users List
Subject: RE: passing parameters to ant

So, since you are on windows, change the parameters to be something like
-DDevBuild1=%1.  The $ is the Unix substitution while with MS, it is the
%
sign.

Chris Erskine

EDS Consulting Services
F5-EDS-001
2424 Garden of the Gods Rd
Colorado Springs, CO  80919

Phone: 719-265-5962


> -----Original Message-----
> From: Radha Sangal [mailto:Radha.Sangal@(protected)]
> Sent: Tuesday, January 11, 2005 9:01 AM
> To: Ant Users List
> Subject: RE: passing parameters to ant
>
> Changed command line :
> cmd /c ant -buildfile
> D:\v04_E\Build_Scripts\CvsDiffReports\automated_cvsdiffs.xml
manualDiff
> -DDevBuild1=$1  -DDevBuild2=$2 -l D:\test2.txt
>
> <property name="DevBuild1" value="${DevBuild1}"/>
> <property name="DevBuild2" value="${DevBuild2}"/>
> <echo message="Starting CVS Difference Report (${DevBuild1} to
> ${DevBuild2})"/>
>
> Output :
> manualDiff:
>      [echo] Starting CVS Difference Report ($1 to $2)
>
> -----Original Message-----
> From: Jeffrey E Care [mailto:carej@(protected)]
> Sent: Tuesday, January 11, 2005 10:45 AM
> To: Ant Users List
> Subject: Re: passing parameters to ant
>
> 1) IIRC there _must not_ be a space betwixt "-D" and the property:
i.e.
> your command line should look like this:
>
>     cmd /c ant -buildfile
>     D:\v04_E\Build_Scripts\CvsDiffReports\automated_cvsdiffs.xml
> manualDiff
>     -DDevBuild1=$1 -DDevBuild2=$2 > D:\test2.txt
>
> 2) You might consider using the "-l" option instead of redirecting the
> output.
>
> 3) Your stanza <property name="DevBuild1"> value="$(DevBuild1)"/> is
> completely wrong & totally unnecessary if you pass in the parameters
> correctly.
>
> --
> Jeffrey E. Care (carej@(protected))
> WebSphere Build SWAT Team Lead
> WebSphere Build Tooling Lead (Project Mantis)
> https://w3.opensource.ibm.com/projects/mantis
>
>
> "Radha Sangal" <Radha.Sangal@(protected)> wrote on 01/11/2005 10:30:50
AM:
>
> > [snip]
> >
> > cmd /c ant -buildfile
> > D:\v04_E\Build_Scripts\CvsDiffReports\automated_cvsdiffs.xml
> manualDiff
> > -D DevBuild1=$1  -D DevBuild2=$2 > D:\test2.txt
> >
> >
> >
> > ($1 and $2 are passed from the client and are tested to have the
right
> > value at run time)
> >
> >
> >
> > Ant script "automated_cvsdiffs.xml" receiving these parameters:
> >
> > <target name="manualDiff">
> >
> >                         <!-- TO use manual diff, set the build names
> >
> below. This targets DEV build only -->
> >
> >                         <property name="DevBuild1"
> > value="$(DevBuild1)"/>
> >
> >                         <property name="DevBuild2"
> > value="$(DevBuild2)"/>
> >
> >                         <echo message="Starting CVS Difference
Report
> > (${DevBuild1} to ${DevBuild2})"/>
> >
> >
> >
> > Output as in test2.txt :
> >
> > manualDiff:
> >
> >      [echo] Starting CVS Difference Report ($(DevBuild1) to
> > $(DevBuild2))
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)




---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)