Re: email-ext plugin stops without explication

2023-01-10 Thread 'Xavier Raynaud' via Jenkins Users
After that, it was simply solved by deinstalling unnecessary javax-mail plugin. That's all folks ! Many thanks ! From: "geoffroy...@gmail.com" To: "Jenkins Users" Sent: Monday, January 9, 2023 9:31:51 AM Subject: Re: email-ext plugin stops without explication

Re: email-ext plugin stops without explication

2023-01-09 Thread geoffroy...@gmail.com
2023 at 18:47:13 UTC+1 Xavier Raynaud wrote: > Hi, > > I'm using email-ext plugin on a post-build task of a FreeStyle project and > sometime, emails are not send. > In order to understand why, I activate the "Enable Debug Mode" of this > plugin. > > I obt

email-ext plugin stops without explication

2023-01-06 Thread 'Xavier Raynaud' via Jenkins Users
Hi, I'm using email-ext plugin on a post-build task of a FreeStyle project and sometime, emails are not send. In order to understand why, I activate the "Enable Debug Mode" of this plugin. I obtain the following output when all is OK: 18:05:27 Performing post-build step 18

Re: [email-ext plugin] it failed to get instances of the class CucumberTestResultAction in groovy email template

2022-02-17 Thread James Nord
mail in a Jenkins > job, I copied the following example and made some changes, > https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/resources/hudson/plugins/emailext/templates/groovy-html.template > > I found that the following call returns null even if the job has the th

[email-ext plugin] it failed to get instances of the class CucumberTestResultAction in groovy email template

2022-02-13 Thread Oxygen
I need to write a groovy email template to send HTML email in a Jenkins job, I copied the following example and made some changes, https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/resources/hudson/plugins/emailext/templates/groovy-html.template I found that the following call

Re: how can I use my own templates with email ext plugin in Jenkins?

2021-04-11 Thread Chetan
, 8 de abril de 2021 a las 13:02:11 UTC+2, jesus fernandez > escribió: > >> I want to send the cppcheck report through email but I had never used the >> email ext plugin before, so I found this >> https://stackoverflow.com/questions/13888338/sending-cppcheck-result-report-

error when sending jelly template using email ext plugin with jenkins

2021-04-08 Thread jesus fernandez
I want to send the cppcheck report through email but I had never used the email ext plugin before, so I found this https://stackoverflow.com/questions/13888338/sending-cppcheck-result-report-on-email-from-jenkins-using-email-ext-plugin with a nice jelly template to do so, I have also followed

Re: how can I use my own templates with email ext plugin in Jenkins?

2021-04-08 Thread jesus fernandez
eport through email but I had never used the > email ext plugin before, so I found this > https://stackoverflow.com/questions/13888338/sending-cppcheck-result-report-on-email-from-jenkins-using-email-ext-plugin > > with a nice jelly template to do so, I have also followed the step

how can I use my own templates with email ext plugin in Jenkins?

2021-04-08 Thread jesus fernandez
I want to send the cppcheck report through email but I had never used the email ext plugin before, so I found this https://stackoverflow.com/questions/13888338/sending-cppcheck-result-report-on-email-from-jenkins-using-email-ext-plugin with a nice jelly template to do so, I have also followed

How to get overridden pipeline parameter value in email-ext plugin jelly template

2019-08-23 Thread Dave Taylor
I have a parameterized pipeline where we send an email during the post. One of the parameters is for the VHOST we are deploying to. This parameter has a default value, but can be overridden in the jenkinsfile based on the branch being built. In the jelly email template, I am getting the envi

Re: Email-ext plugin request: Export "Requestor" to environment

2019-07-02 Thread Slide
This is not the plsce to request something like this. Use Jira for features. https://issues.jenkins.io. On Mon, Jul 1, 2019, 13:35 Chris Williamson wrote: > Since “Requestor means the original requestor for rebuilds: > > If an e-mail is supposed to be sent to the requester, follow the build >> t

Email-ext plugin request: Export "Requestor" to environment

2019-07-01 Thread Chris Williamson
Since “Requestor means the original requestor for rebuilds: If an e-mail is supposed to be sent to the requester, follow the build > triggering chain to find the root requester And we want to move Requestor to CC list and use BUILD_USER_ID in the TO field, we need access to the Requestor valu

Re: How to include pipeline errors in email (Email-ext plugin)

2019-02-04 Thread 'Björn Pedersen' via Jenkins Users
Hi, you should be ablre to achieve this with the help of the Build Failure Analyzer plugin or the warnings-ng plugin (possibly with a custom groovy parser ) Björn Am Montag, 4. Februar 2019 11:39:18 UTC+1 schrieb Faad Sayaou: > > I am trying to have the reason as it is printed on the console

How to include pipeline errors in email (Email-ext plugin)

2019-02-04 Thread Faad Sayaou
I am trying to have the reason as it is printed on the console of my Jenkins instance why a build failed through email. I did the following try { . } catch (err) { cause=err emailext body:"Error: $cause ", to: 'myem...@gmail.com' } The result on the console is something like "dotnetge co

Re: Email-ext plugin and Pre-send Script variables

2018-03-15 Thread danny
Victor, I thank you for the heads up, this actually worked! On Thursday, March 15, 2018 at 2:06:52 PM UTC+2, Victor Martinez wrote: > > Have you tried with double quote multistring and also the $ variable? > > node { > FROM = 'AAA ' > emailext( > to: "m...@email.com", > pr

Re: Email-ext plugin and Pre-send Script variables

2018-03-15 Thread Victor Martinez
Have you tried with double quote multistring and also the $ variable? node { FROM = 'AAA ' emailext( to: "m...@email.com", presendScript: """msg.setHeader("From", ${FROM});""", subject: "test", mimeType: 'text/html', body: "content" ) } -- You

Email-ext plugin and Pre-send Script variables

2018-03-15 Thread danny
Hi, I can't seems to figure out how can I use variables I set during the build in pre-send section of Email-ext. My pipeline script looks like - node { FROM = 'AAA ' emailext( to: "m...@email.com", presendScript: '''msg.setHeader("From", FROM);''', subject: "test"

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-03-01 Thread iqbal md
Thanks all for your support. The issue got resolved after upgrading Jenkins to the latest version i.e. 2.89 along with latest plugins. All the plugins have been installed via Plugin Manager feature available in Jenkins. -- You received this message because you are subscribed to the Google Group

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-26 Thread Slide
Several of the pipeline plugins have dependencies on plugins that require a newer version of Jenkins, there is a warning in the plugin manager about this when you are installing things. If you upgraded the pipeline plugins, then this dependency was probably upgraded as well and requires at least 2.

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-26 Thread iqbal md
Hi Mark, I am using Jenkins 2.7.2. I tried installing the latest version of Pipeline:Job(workflow-job) plugins along with all the dependencies but still I am facing the same issue. Is it some problem with the Jenkins version, do I need to install the latest Jenkins version here or is it just the

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-24 Thread Daniel Beck
> On 24. Feb 2018, at 05:26, Mark Waite wrote: > > Installing a plugin by directly uploading an hpi file will not install any > additional dependencies, even if they are required. This was fixed (for uploads through the UI) in Jenkins 2.1. -- You received this message because you are subscri

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread iqbal md
Thanks Mark. Actually I have tried installing the plugins via Plugin Manager as well but that didn't resolve my issue. I will try installing the latest workflow-job first followed by other plugins, will see if that addresses my issue, will keep you posted. With Regards Iqbal -- You received t

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread Mark Waite
On Fri, Feb 23, 2018 at 9:16 PM iqbal md wrote: > Thanks Mark. > > I am bit curious to understand how did you manage to avoid installing > additional dependencies beyond the ones which you have already installed in > your image. As far as am aware once you install any plugin via Plugin > Manager

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread iqbal md
Thanks Mark. I am bit curious to understand how did you manage to avoid installing additional dependencies beyond the ones which you have already installed in your image. As far as am aware once you install any plugin via Plugin Manager or directly uploading a hpi file in the Advanced section

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-21 Thread Mark Waite
plugin list and yours. I did not attempt to send mail with the email-ext plugin, I only tested installing it to see if it would require additional dependencies that I do not already have. Mark Waite On Wednesday, February 21, 2018 at 7:28:51 PM UTC-7, iqbal md wrote: > > Hi Mark, &g

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-21 Thread iqbal md
gt; Weblogic 12c >> SMTP server(For mailing) >> >> My pipeline is running fine until executing Cucumber test but the job >> meant for sending email is not working for me. I have tried sending email >> as individual job also but no luck. >> >> I install

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-20 Thread Mark Waite
gt; > My pipeline is running fine until executing Cucumber test but the job > meant for sending email is not working for me. I have tried sending email > as individual job also but no luck. > > I installed the email-ext template plugin thinking it will resolve my > issue around tri

Jenkins issue on installing Email-ext plugin

2018-02-20 Thread iqbal md
plugin mandates the email-ext plugin to upgrade to 1.0 along with which workflow related plugins(workflow-job and workflow-support) get installed as dependencies. And then when I trigger any job I keep getting this error: FATAL: jenkins/scm/RunWithSCM java.lang.NoClassDefFoundError: jenkins/scm

Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-20 Thread iqbal md
plugin mandates the email-ext plugin to upgrade to 1.0 along with which workflow related plugins(workflow-job and workflow-support) get installed as dependencies. And then when I trigger any job I keep getting this error: FATAL: jenkins/scm/RunWithSCM java.lang.NoClassDefFoundError: jenkins/scm

Re: Email-ext plugin and sending to culprits

2017-07-27 Thread Amit Dar
Hi, I also have (I think) a similar problem. we use base clearcase, and email-ext doesn't seem to find the emails of the users (culprits) who performed check-ins to the scm. is there a good solution for this? (yes, I know there is git, we don't use it yet) On Thursday, November 10, 2011 at 4:

Re: How to use email-ext plugin in pipeline script?

2017-04-25 Thread jerome
Upon David request here's our Jenkinsfile example, it's not all files should be enough to give a good idea of my current setup. Note (the email-ext email content stop working between 2.51 and 2.54 Jenkins update, since the absolute path can not be found anymore, I may have to transfer the file

RE: How to use email-ext plugin in pipeline script?

2017-04-25 Thread David Aldrich
end it to me by email? Best regards David From: jer...@bodycad.com [mailto:jer...@bodycad.com] Sent: 24 April 2017 18:32 To: Jenkins Users Cc: David Aldrich Subject: Re: How to use email-ext plugin in pipeline script? It's not so hard, it's just some behavior/limitations that are

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread jerome
It's not so hard, it's just some behavior/limitations that are a bit hard to grasp (groovy loop anyone). I think they went on a road to provide some features at high trade back cost. If you want some examples more like real life usage: https://github.com/jenkinsci/pipeline-examples I would love

RE: How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
svn-centric. So we’re a bit stuck ☹ From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Slide Sent: 24 April 2017 17:24 To: jenkinsci-users@googlegroups.com Subject: Re: How to use email-ext plugin in pipeline script? I'll be completely honest her

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread Slide
> > > > Jenkins seems to have gone from being very user friendly to difficult L > > > > *From:* jenkinsci-users@googlegroups.com [mailto: > jenkinsci-users@googlegroups.com] *On Behalf Of *jer...@bodycad.com > *Sent:* 24 April 2017 17:13 > *To:* Jenkins Users > *C

RE: How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
very user friendly to difficult ☹ From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of jer...@bodycad.com Sent: 24 April 2017 17:13 To: Jenkins Users Cc: David Aldrich Subject: Re: How to use email-ext plugin in pipeline script? You can check the

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread jerome
You can check the currentBuild status just before sending the email: currentBuild.result If empty it mean nothing have set it to warning or error yet. you can set it to success if(!currentBuild.result) { currentBuild.result = 'SUCCESS' } or you could set it directly into the email without tou

How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
Hi Here's my pipeline: 1. node('pc1') { 2. 3. stage('Checkout') { 4. checkout([$class: 'SubversionSCM', 5. additionalCredentials: [[credentialsId: '', realm: '']], 6. excludedCommitMessages: '', 7. excludedRegions: '', 8. excludedRevprop: '', 9. excludedUsers: '',

Re: Unable to install Email-ext plugin into jenkins

2016-08-07 Thread Slide
etting---Did not work > > Restarted jenkins after every attempt.plugin Email-ext is not > installed > > > Issue:Unable to install Email-ext plugin into jenkins > Please suggest > > -- > You received this message because you are subscribed to the Google Groups > "

Re: ow to add file to html content within newest version of jenkins email-ext plugin

2016-07-28 Thread Jonathann Zenou
Did you manage to solve this ? I have the same issue. Regards Jonathann On Tuesday, June 7, 2016 at 5:33:32 PM UTC+3, jianqi...@gmail.com wrote: > > Hi, > > I used to use the old version of email-ext plugin, and I could add html > content by input this command in Content place:

Re: email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Slide
No, you used JELLY_SCRIPT, which only works if you are using Jelly templates. The code you showed looked like groovy. If you look at my last reply, I said use SCRIPT, not JELLY_SCRIPT. On Tue, Jun 28, 2016 at 8:58 AM Antonio Hernandez wrote: > Hi Slide, > I really appreciate your help but i alre

Re: email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Antonio Hernandez
Hi Slide, I really appreciate your help but i already did everything except the config file provider... Is it must be the problem with the variables? Thanks aga

Re: email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Slide
You would need to either install the config file provider plugin and create a new Email Ext Groovy Template, or put the template on the file system in JENKINS_HOME/email-templates. Then you could use the SCRIPT token to specify the template in the content area of the post-build setup. ${SCRIPT, tem

Re: email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Antonio Hernandez
Hi Slide, that's the problem i have, i don't know how to handle it. I have all the ingredients but i don´t know how to put all together in a rich format html. I'm desperate with that because i've never developed in html Thanks again, El martes, 28 de junio de 2016, 14:36:04 (UTC+2), slide es

Re: email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Slide
How are you specifying the content? On Tue, Jun 28, 2016, 03:20 Antonio Hernandez wrote: > hi there!, > > I'm very confused when i'm trying to send an email with all changes and > also with the console output. > > To get all the information together i'm using: > > one script writing all the chan

email-ext-plugin doesn't translate any variable!!!!

2016-06-28 Thread Antonio Hernandez
hi there!, I'm very confused when i'm trying to send an email with all changes and also with the console output. To get all the information together i'm using: one script writing all the changes in a file like this: | Author: [ ] | Subject: [bugfix/XXX-YYY..] | When: [2016-06-23] | Commit

Re: ow to add file to html content within newest version of jenkins email-ext plugin

2016-06-07 Thread Slide
Did you also upgrade the token macro plugin? Some of the content tokens were moved to token macro, so you need to make sure it is upgraded as well. On Tue, Jun 7, 2016, 07:33 wrote: > Hi, > > I used to use the old version of email-ext plugin, and I could add html > content b

ow to add file to html content within newest version of jenkins email-ext plugin

2016-06-07 Thread jianqinjiang
Hi, I used to use the old version of email-ext plugin, and I could add html content by input this command in Content place:* ${FILE,path="xxx/x.html"}.* Today, I updated the plugin to the newest version 2.43, then I found that the command above don't work now. How could I do t

Re: email-ext plugin + credentials plugin?

2016-03-25 Thread Guy Matz
ide wrote: >>>> >>>>> How are you specifying the credentials? I am not completely familiar >>>>> with the credentials plugin, so I don't know how it makes things available >>>>> to a job. If it does it via the environment, then they should be availabl

Re: email-ext plugin + credentials plugin?

2016-03-25 Thread Slide
e pre-send script. Can you post your pre-send script and job config? >>>> >>>> On Thu, Mar 24, 2016 at 2:02 PM Guy Matz wrote: >>>> >>>>> Thanks for the reply! Any workarounds you can recommend? >>>>> >>>>> On Thu, M

Re: email-ext plugin + credentials plugin?

2016-03-25 Thread Guy Matz
Matz wrote: >>> >>>> Thanks for the reply! Any workarounds you can recommend? >>>> >>>> On Thu, Mar 24, 2016 at 4:47 PM, Slide wrote: >>>> >>>>> Email-ext doesn't have any direct support for the credentials plugin. &

Re: email-ext plugin + credentials plugin?

2016-03-25 Thread Slide
; >>>> Email-ext doesn't have any direct support for the credentials plugin. I >>>> am looking at adding it for the SMTP credentials, but not specifically for >>>> what you are describing. >>>> >>>> On Thu, Mar 24, 2016, 13:40 Guy Ma

Re: email-ext plugin + credentials plugin?

2016-03-25 Thread Guy Matz
;> >>> On Thu, Mar 24, 2016, 13:40 Guy Matz wrote: >>> >>>> Hello! I'm trying to pass some credentials (via the credentials >>>> plugin) to a pre-send script within the email-ext plugin . . . however, >>>> the credentials are

Re: email-ext plugin + credentials plugin?

2016-03-24 Thread Slide
for the SMTP credentials, but not specifically for >> what you are describing. >> >> On Thu, Mar 24, 2016, 13:40 Guy Matz wrote: >> >>> Hello! I'm trying to pass some credentials (via the credentials plugin) >>> to a pre-send script within the email-ext

Re: email-ext plugin + credentials plugin?

2016-03-24 Thread Guy Matz
ng. > > On Thu, Mar 24, 2016, 13:40 Guy Matz wrote: > >> Hello! I'm trying to pass some credentials (via the credentials plugin) >> to a pre-send script within the email-ext plugin . . . however, the >> credentials are not showing up as environment vars . . . an

Re: email-ext plugin + credentials plugin?

2016-03-24 Thread Slide
plugin) > to a pre-send script within the email-ext plugin . . . however, the > credentials are not showing up as environment vars . . . anyone know how > if these two plugins can work together? > > Thanks a lot! > Guy > > -- > You received this message because

email-ext plugin + credentials plugin?

2016-03-24 Thread Guy Matz
Hello! I'm trying to pass some credentials (via the credentials plugin) to a pre-send script within the email-ext plugin . . . however, the credentials are not showing up as environment vars . . . anyone know how if these two plugins can work together? Thanks a lot! Guy -- You received

Re: Email-ext plugin (system groovy and workflow jobs)

2015-10-19 Thread Leon Leon
Hello, Thank you for the reply. Is there a way to acces the email-ext plugin inside a system groovy script ? and if yes, can you please tell me how ? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this grou

Re: Email-ext plugin (system groovy and workflow jobs)

2015-10-19 Thread Leon Leon
Hello, Thank you for the reply. Is there a way to acces the email-ext plugin inside a system groovy script ? and if yes, can you please tell me how ? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this grou

Re: Email-ext plugin (system groovy and workflow jobs)

2015-10-16 Thread Slide
it doesn't extend AbstractBuild. On Fri, Oct 16, 2015 at 1:46 AM Leon Leon wrote: > Hello everyone, > > I have two questions about the Email-ext plugin: > > 1) Is there a way to use the functions of Email-ext plugin in a Workflow ? > (I need to send notifications to culprits

Email-ext plugin (system groovy and workflow jobs)

2015-10-16 Thread Leon Leon
Hello everyone, I have two questions about the Email-ext plugin: 1) Is there a way to use the functions of Email-ext plugin in a Workflow ? (I need to send notifications to culprits, developers ect ..) ? 2) Is it possible to access these lists (i.e developers, culprits, ect ..) of a specified

Re: [Email-Ext plugin] don't see triggers

2015-04-01 Thread Murthy Gandikota
Mr.Walker, one of the developers of Email-Ext has kindly responded to my issue. I am posting his response with his permission so that others in a similar situation can benefit. Under "Post-build Actions" there is a flat button with the text "Add post-build action" on it. When you click that, w

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
Found this script in the plugins folder. The entire script is not loaded. Tried different browsers. Same result.:( function hideElement(elmID) { var elm = document.getElementById(elmID); elm.style.display = "none"; } function showElement(elmID) { var elm = document.getElementById(elmID);

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
Our set up is slightly different. There is no /log/all. I could find logs under c:\program files\jenkins. Specifically jenkins.x.err.log. There are no hits in the logs for "Ext" Thanks On Tue, Mar 31, 2015 at 1:50 PM, Daniel Beck wrote: > Check the Jenkins log at the /log/all URL for messages i

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Daniel Beck
Check the Jenkins log at the /log/all URL for messages indicating failure to load the extended email publisher. On 31.03.2015, at 22:22, Murthy Gandikota wrote: > I see "Extended E-mail Notification" in the Jenkins' configuration but there > is no trigger in that section. Project configuration

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
> > I see "Extended E-mail Notification" in the Jenkins' configuration but > there is no trigger in that section. Project configurations are supposed to > have "Editable Email Notification" under "Post-build Actions". None I can > see. The only relevant ones are: > E-mail Notification Recipie

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
g? > > Is the plugin listed in plugin manager's Installed tab as enabled? > > On 31.03.2015, at 03:17, Murthy Gandikota wrote: > > > Hi > > > > Using Jenkins 1.596 > > > > Installed Email-Ext plugin > > > > The documentation says ( >

Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Daniel Beck
What kind of project is this? Freestyle, Maven, ...? Did you restart Jenkins after installing? Is the plugin listed in plugin manager's Installed tab as enabled? On 31.03.2015, at 03:17, Murthy Gandikota wrote: > Hi > > Using Jenkins 1.596 > > Installed Email

[Email-Ext plugin] don't see triggers

2015-03-30 Thread Murthy Gandikota
Hi Using Jenkins 1.596 Installed Email-Ext plugin The documentation says ( https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin) For a project to use the email-ext plugin, you need to enable it in the project configuration page. Select the checkbox labeled "Editable

Re: email-ext plugin: How to assign new values to Default variable.

2015-01-11 Thread Slide
The way you set them is in the global configuration for Jenkins. See https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin#Email-extplugin-Emailtokens On Sun Jan 11 2015 at 6:53:36 PM A K wrote: > Hi, > > I am dump-new to Jenkins and plugins. > > I am trying to use email-

email-ext plugin: How to assign new values to Default variable.

2015-01-11 Thread A K
Hi, I am dump-new to Jenkins and plugins. I am trying to use email-ext plugin. I tried to change DEFAULT_SUBJECT, DEFAULT_CONTENT (they belong to email-ext plugin) in the 'Execute Shell', It did not work. I tried to add a new variable by defining it in 'Execute Shell", no e

Re: Email-ext plugin does not work with testng results

2015-01-06 Thread Vinu Joseph
Solution given at :- http://itisatechiesworld.wordpress.com/2015/01/06/including-testng-reports-within-the-jenkins-email-notifications/ > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving email

Re: Implementing Email-ext plugin

2014-11-13 Thread Jordan de Geus
ME/email-templates. You can specify >>>> the template in the specific jobs. >>>> >>>> On Tue, Nov 11, 2014, 17:49 Jordan de Geus wrote: >>>> >>>>> Hey everyone! >>>>> >>>>> My company is currently using D

Re: Implementing Email-ext plugin

2014-11-13 Thread Slide
I setup. I am >>>> trying to figureout what is needed to edit the automated emails for >>>> failures to contain information regarding what exactly failed. >>>> >>>> I've been browsing through the email-ext plugin page for some time now >>>

Re: Implementing Email-ext plugin

2014-11-12 Thread Jordan de Geus
setup. I am >>> trying to figureout what is needed to edit the automated emails for >>> failures to contain information regarding what exactly failed. >>> >>> I've been browsing through the email-ext plugin page for some time now >>> and can't

Re: Implementing Email-ext plugin

2014-11-12 Thread Jordan de Geus
to edit the automated emails for failures to >> contain information regarding what exactly failed. >> >> I've been browsing through the email-ext plugin page for some time now >> and can't really figure out what is needed to really make use of this >> pl

Re: Implementing Email-ext plugin

2014-11-11 Thread Slide
Geus wrote: > Hey everyone! > > My company is currently using Dotci/Jenkins for our CI setup. I am trying > to figureout what is needed to edit the automated emails for failures to > contain information regarding what exactly failed. > > I've been browsing through the emai

Implementing Email-ext plugin

2014-11-11 Thread Jordan de Geus
Hey everyone! My company is currently using Dotci/Jenkins for our CI setup. I am trying to figureout what is needed to edit the automated emails for failures to contain information regarding what exactly failed. I've been browsing through the email-ext plugin page for some time now and

Re: Display text page inside mail body with Email-ext plugin in Jenkins

2014-11-10 Thread Alex Brodov
I've fixed it by changing the format to html and adding this : ${FILE,path="test2.l"} On Mon, Nov 10, 2014 at 3:44 PM, Daniel Beck wrote: > > On 10.11.2014, at 14:41, Alex Brodov wrote: > > > notepad > > If you mean the horribly broken text editor shipping with Windows, make > sure there's no

Re: Display text page inside mail body with Email-ext plugin in Jenkins

2014-11-10 Thread Daniel Beck
On 10.11.2014, at 14:41, Alex Brodov wrote: > notepad If you mean the horribly broken text editor shipping with Windows, make sure there's no Unix newline (0x0a) at the line break. There also shouldn't be any other ASCII control characters for that matter. Use a hex editor to determine the e

Display text page inside mail body with Email-ext plugin in Jenkins

2014-11-10 Thread Alex Brodov
I'm attaching a text file to the content of the email that is sent from jenkins, the thing is that the content of this file doesn't appear as it appear in any notepad, i've tried sending the email as plain text and as html but it still displaying the content in a diferent way. For example if

Re: Email_Ext email-ext plugin not rendering Background CSS, gradient and images

2014-10-06 Thread Slide
Check the actual email and verify the content you think should be there is there (view the source of the email). Email-ext doesn't do anything special, so I don't think its at fault, it just passes the content into the email. On Oct 5, 2014 11:44 PM, "Gayathri Ravindran" wrote: > Please find the

Looking for an approach to include the junit test results trend graph in an email sent out by the email-ext plugin

2014-09-11 Thread Mike K
Hi, I would like to include the trend graph from junit test results in a build email sent out by the email-ext plugin. Because I am using a hosted solution that requires a login to access any Jenkins web resources, I can't simply put the url in an html img tag. I need to attach the ima

Re: (email-ext plugin) e-mail notification for new static analysis issues

2014-05-21 Thread Ryan Shoemaker
nks, > > slide > > > On Mon, May 19, 2014 at 9:12 AM, Ryan Shoemaker > > > wrote: > >> Hi, >> >> I'm trying to figure out how to configure the email-ext plugin to >> generate an e-mail whenever someone introduces a new static analysis issu

Re: (email-ext plugin) e-mail notification for new static analysis issues

2014-05-19 Thread Slide
If you click on the list of triggers to add, there should be a Script Trigger, add that and then define the groovy in the configuration for that trigger. Thanks, slide On Mon, May 19, 2014 at 9:12 AM, Ryan Shoemaker wrote: > Hi, > > I'm trying to figure out how to configure

(email-ext plugin) e-mail notification for new static analysis issues

2014-05-19 Thread Ryan Shoemaker
Hi, I'm trying to figure out how to configure the email-ext plugin to generate an e-mail whenever someone introduces a new static analysis issue (identified by findbugs, pmd, and checkstyle plugins). I found a mention of this on the static analysis plugin page<https://wiki.jenkin

Re: Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-08 Thread Slide
ssed etc.) are not replaced by their values. The text > '$testPassed' is being displayed in the E-Mail body. > > Please let me know, what I am missing here. > > > > -- > View this message in context: > http://jenkins-ci.361315.n4.nabble.com/Jenkins-EMail-ext-plug

Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-08 Thread AVG_Master
enkins-ci.361315.n4.nabble.com/Jenkins-EMail-ext-plugin-sends-groovy-code-in-the-Email-body-tp4700497.html Sent from the Jenkins users mailing list archive at Nabble.com. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe f

Re: Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-07 Thread Slide
You can look here: https://github.com/jenkinsci/email-ext-plugin/tree/master/src/main/resources/hudson/plugins/emailext/templates On Wed, May 7, 2014 at 9:10 AM, Vel Ganesh wrote: > Thank You. I am a newbie on this Topic. Can you please share few links for > samples of groovy/jelly tem

Re: Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-07 Thread Vel Ganesh
Thank You. I am a newbie on this Topic. Can you please share few links for samples of groovy/jelly templates? On Wednesday, May 7, 2014 5:32:48 PM UTC+5:30, Vel Ganesh wrote: > > My Extended E-mail Notification 'Default Content' is set as below: > > > > *Execution Results :* > Status : $BUILD_

Re: Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-07 Thread Slide
You can't define variables in the presend script and use them in the content. You would need to either use the tokens, if available, to get the information you want, or switch to using a jelly or groovy template. Check the wiki for information. On May 7, 2014 5:02 AM, "Vel Ganesh" wrote: > My Ext

Jenkins EMail-ext plugin sends groovy code in the Email body

2014-05-07 Thread Vel Ganesh
My Extended E-mail Notification 'Default Content' is set as below: *Execution Results :* Status : $BUILD_STATUS Tests run : $testCount Passed : $testPassed Failures : $testFailed Skipped : $testSkipped Build URL : $BUILD_URL My Extended E-mail Notification 'Default Pre-send Script' is set as

Re: How to get a parameter into my Email-Ext plugin

2014-04-30 Thread mickeys
YES!! That was it. Thx. I have been struggling along time with this. -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/How-to-get-a-parameter-into-my-Email-Ext-plugin-tp4700271p4700279.html Sent from the Jenkins users mailing list archive at Nabble.com. -- You

Re: How to get a parameter into my Email-Ext plugin

2014-04-30 Thread k . thieling
Try an environment variable like this for your groovy script: ${ENV(var: "testname")} - Original Message - From: "mickeys" To: jenkinsci-users@googlegroups.com Sent: Wednesday, April 30, 2014 10:02:00 AM Subject: Re: How to get a parameter into my Email-Ext pl

Re: How to get a parameter into my Email-Ext plugin

2014-04-30 Thread mickeys
- View this message in context: http://jenkins-ci.361315.n4.nabble.com/How-to-get-a-parameter-into-my-Email-Ext-plugin-tp4700271p4700276.html Sent from the Jenkins users mailing list archive at Nabble.com. -- You received this message because you are subscribed to the Google Groups "Jenkin

Re: How to get a parameter into my Email-Ext plugin

2014-04-30 Thread Maureen Barger
ng something wrong? > > /M > > > > -- > View this message in context: > http://jenkins-ci.361315.n4.nabble.com/How-to-get-a-parameter-into-my-Email-Ext-plugin-tp4700271.html > Sent from the Jenkins users mailing list archive at Nabble.com. > > -- > You received this m

Re: How to get a parameter into my Email-Ext plugin

2014-04-30 Thread Slide
> -- > View this message in context: > http://jenkins-ci.361315.n4.nabble.com/How-to-get-a-parameter-into-my-Email-Ext-plugin-tp4700271.html > Sent from the Jenkins users mailing list archive at Nabble.com. > > -- > You received this message because you are subscribed to the Google Gr

How to get a parameter into my Email-Ext plugin

2014-04-30 Thread mickeys
-plugin is using. But if I use ${Variable} inside the html I get an error. Workaround? Or am I doing something wrong? /M -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/How-to-get-a-parameter-into-my-Email-Ext-plugin-tp4700271.html Sent from the Jenkins users mailing list

Re: How to attach pdf as an attachemnt in email-ext plugin

2014-02-11 Thread Anand Raja.K
Not a problem, Thanks for the information, I have Opened Bug in JIRA https://issues.jenkins-ci.org/browse/JENKINS-21760 On Tue, Feb 11, 2014 at 7:19 PM, Slide wrote: > I had to reimage my laptop, so I still haven't gotten back to the point > where I can work on this. I'll let you know. For now,

Re: How to attach pdf as an attachemnt in email-ext plugin

2014-02-11 Thread Slide
I had to reimage my laptop, so I still haven't gotten back to the point where I can work on this. I'll let you know. For now, can you open a JIRA item (https://issues.jenkins-ci.org) so its easier to track? On Tue, Feb 11, 2014 at 1:57 AM, Anand Raja.K wrote: > No Problem Slide, Do you have any

  1   2   3   >