Rally - HP ALM - HP ALM Config Emailer-NoAuth pxml
search cancel

Rally - HP ALM - HP ALM Config Emailer-NoAuth pxml

book

Article ID: 125056

calendar_today

Updated On:

Products

Rally On-Premise Rally SaaS

Issue/Introduction

Test the <Emailer> feature of Rally's QC (and others) connector. This will send a non-authenticated email to the designateduser only when ERRORs or WARNINGs occur.

Resolution

QC-config-Emailer-NoAuth.pxml



Test the <Emailer> feature



 


 of CA Agile Central's QC (and others) connector. This will send a non-authenticated email to the designateduser

 


 only when ERRORs or WARNINGs occur.


<!-- **********************************************************************
FILE: QC-config-Emailer-NoAuth.pxml

PURPOSE: Test the <Emailer> featue of Rally's QC connector (and others).
This will send a non-authenticated email to the designated user
only when ERRORs or WARNINGs occur.

USAGE: Replace all the "Your-..." strings below with values appropriate
for your environment.
*********************************************************************** -->
<Config>
<RallyConnection>
<Url>Your-Rally-URL</Url>
<WorkspaceName>Your-Rally-Workspace</WorkspaceName>
<Projects>
<Project>Your-Rally-Project</Project>
</Projects>
<User>Your-Rally-Username</User>
<Password>Your-Rally-Password</Password>
<ArtifactType>Defect</ArtifactType>
<ExternalIDField>Your-Rally-ExternalID</ExternalIDField>
</RallyConnection>

<QCConnection>
<Url>Your-QC-URL</Url>
<Domain>Your-QC-Domain</Domain>
<Project>Your-QC-Project</Project>
<User>Your-QC-Username</User>
<Password>Your-QC-Password</Password>
<ArtifactType>Bug</ArtifactType>
<IDField>BG_BUG_ID</IDField>
<ExternalIDField>Your-QC-ExternalID</ExternalIDField>
</QCConnection>

<Connector>
<FieldMapping>
<Field><Rally>Name</Rally> <Other>BG_SUMMARY</Other></Field>
<Field><Rally>Description</Rally> <Other>BG_DESCRIPTION</Other></Field>
<Field><Rally>Severity</Rally> <Other>BG_SEVERITY</Other></Field>
<Field><Rally>SubmittedBy</Rally> <Other>BG_DETECTED_BY</Other></Field>
</FieldMapping>
</Connector>

<ConnectorRunner>
<Preview>False</Preview>
<LogLevel>Debug</LogLevel>
<Services>COPY_RALLY_TO_QC</Services>
<Emailer>
<!-- Standard SMTP server - No Authentication: -->
<!-- The following <Level> tag can be set to either "Error" or "Warning" only.
-- Specifying "Warning" will send email on errors and warnings.
-- Specifying "Error" will send email on errors only.
-- An email is sent only when issues occur, not when everything is OK.
-->
<Level>Warning</Level>
<SendEmailFrom>Your-Email-Address</SendEmailFrom>
<SendEmailTo>Your-Email-Address</SendEmailTo>
<SMTPServer>Your-Email-Server</SMTPServer>
<SMTPPort>25</SMTPPort>
</Emailer>
</ConnectorRunner>
</Config>