[JIRA] [mailer] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-06-24 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















The problem persists in 1.519.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-18405) Findbugs plugin unable to run on slaves with 1.519

2013-06-23 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-18405


Findbugs plugin unable to run on slaves with 1.519















I have the same problem.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-18394) IncompatibleClassChangeError after upgrade to 1.519

2013-06-22 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-18394


IncompatibleClassChangeError after upgrade to 1.519















I have the same issue.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, javaimport java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

def userWithWrongEmail = User.get('John Doe')
println  userWithWrongEmail 
def userMailProp = userWithWrongEmail.properties.find { it.toString().contains('Mailer') }.value
userMailProp.address.getAddress()


evaluates to "John Doe"



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification

















Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, javaimport java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

def userWithWrongEmail = User.get('John Doe')
println  userWithWrongEmail 
def userMailProp = userWithWrongEmail.properties.find { it.toString().contains('Mailer') }.value
userMailProp.address.getAddress()


evaluates to "John Doe" which indicates that the user doesn't have a correct email property



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, javaimport java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}"  
}


it prints

Igor Ivanov _igor12345@yahoo.com_ -- igor1...@yahoo.com
John Doe  _dev@xyz.com_ -- John Doe  _dev@xyz.com_



So the user object for which Jenkins uses a wrong email, returns a different value than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, javaimport java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}"  
}


it prints

Igor Ivanov igor12...@yahoo.com  igor1...@yahoo.com
John Doe  d...@xyz.com  John Doe  d...@xyz.com

So the user object for which Jenkins uses a wrong email, returns a different value than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


import java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}"  
}


it prints

Igor Ivanov _igor12345@yahoo.com_ -- igor1...@yahoo.com
John Doe  _dev@xyz.com_ -- John Doe  _dev@xyz.com_



So the user object for which Jenkins uses a wrong email, has a different value for email than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, javaimport java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}"  
}


it prints

Igor Ivanov _igor12345@yahoo.com_ -- igor1...@yahoo.com
John Doe  _dev@xyz.com_ -- John Doe  _dev@xyz.com_



So the user object for which Jenkins uses a wrong email, has a different value for email than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


import java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}"  
}


it prints

Igor Ivanov _igor12345@yahoo.com_ -- igor12...@yahoo.com
John Doe  _dev@xyz.com_ -- John Doe  _dev@xyz.com_



So the user object for which Jenkins uses a wrong email, has a different value for email than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I don't think that this bug is mercurial-specific, the script shows that the problem is that Jenkins cannot detect a user's email by user's id, even though the email is the part of the id.





Change By:


Sergey Grigoriev
(04/May/13 11:07 AM)




Component/s:


core





Component/s:


mercurial



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















I have run a script in Jenkins console 


import java.util.logging.Logger
import java.util.logging.Level;
import hudson.model.*
import hudson.plugins.emailext.EmailRecipientUtils  
import hudson.tasks.MailAddressResolver  
import hudson.model.User  
  
def mailAddressResolverLogger = Logger.getLogger(MailAddressResolver.class.getName());
mailAddressResolverLogger.setLevel(Level.FINE)


def job = Hudson.instance.getJob("sms-dev-jdk7");  
def build = job.getBuild("46")

build.culprits.each {   
  def userMailProp = it.properties.find { it.toString().contains('Mailer') }.value	
  println "${it.id} -- ${userMailProp.address}  resolved to  ${MailAddressResolver.resolve(it)}"  
}


it prints

Igor Ivanov _igor12345@yahoo.com_ -- igor12...@yahoo.com resolved to igor12...@yahoo.com
John Doe  _dev@xyz.com_ -- John Doe  _dev@xyz.com_ resolved to John Doe  _dev@xyz.com_  



So the user object for which Jenkins uses a wrong email, has a different value for email than normal users, see hudson.tasks.Mailer.UserProperty#getAddress.
For normal users getAddress returns email, while for John Doe not email, but user's id is returned.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















This bug was introduced when extracting sending mails to the "mailer plugin"



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Attached Jenkins system information





Change By:


Sergey Grigoriev
(04/May/13 11:37 AM)




Attachment:


SystemInformation[Jenkins].html



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Another incident happened in Jenkins 1.511. The build was triggered by an SCM change (Mercurial), culrprits have received emails, but the commiter didn't recieve the email because Jenkins appended leading and trailing underscores to his email address

Apr 20, 2013 5:22:04 PM hudson.plugins.emailext.ExtendedEmailPublisher addAddressesFromRecipientList
WARNING: Could not create email address.
javax.mail.internet.AddressException: Domain contains illegal character in string ``_developer@.com_''
at javax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:633)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:610)
at hudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:33)
at hudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:706)
at hudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:522)
at hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:304)
at hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:296)
at hudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:256)
at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:802)
at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:774)
at hudson.model.Build$BuildExecution.cleanUp(Build.java:192)
at hudson.model.Run.execute(Run.java:1620)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:237)































This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [core] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-04 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(04/May/13 4:19 PM)




Assignee:


JesseGlick





Affects Version/s:


current



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-03 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















The body of the email sent by ext-email contains invalid emails.


Changes for Build #10770
John Doe _dev@xyz.com_ Fixed JUnit tests




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-03 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















The body of the email sent by ext-email contains invalid emails.


Changes for Build #10770
John Doe _dev@xyz.com_ Fixed JUnit tests

However, the Mercurial changeset contain a correct email

changeset:   71777:dd8d779c3d30
parent:  71760:76b2fa2dfefb
user:John Doe d...@xyz.com
date:Thu Apr 18 11:30:02 2013 +0300
summary: Fixed JUnit tests




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-03 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















The body of the email sent by ext-email contains invalid emails.


Changes for Build #10770
John Doe _dev@xyz.com_ Fixed JUnit tests

However, the Mercurial changeset contain invalid changelog entries

changeset:   71777:dd8d779c3d30
parent:  71760:76b2fa2dfefb
user:John Doe d...@xyz.com
date:Thu Apr 18 11:30:02 2013 +0300
summary: Fixed JUnit tests




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-05-03 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















The body of the email sent by ext-email contains invalid emails.


Changes for Build #10770
John Doe _dev@xyz.com_ Fixed JUnit tests

However, the Mercurial changeset has a correct email


changeset:   71777:dd8d779c3d30
parent:  71760:76b2fa2dfefb
user:John Doe d...@xyz.com
date:Thu Apr 18 11:30:02 2013 +0300
summary: Fixed JUnit tests



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-20 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















Another incident happened in the following environment

Name  ↓	Value   
dozer.configuration	META-INF/dozer/configuration.properties
executable-war	/var/lib/jenkins/jenkins.war
file.encoding	UTF-8
file.encoding.pkg	sun.io
file.separator	/
hudson.diyChunking	true
java.awt.graphicsenv	sun.awt.X11GraphicsEnvironment
java.awt.headless	true
java.awt.printerjob	sun.print.PSPrinterJob
java.class.path	/var/lib/jenkins/jenkins.war
java.class.version	50.0
java.endorsed.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/endorsed
java.ext.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/ext:/usr/java/packages/lib/ext
java.home	/opt/sun-jdk-1.6.0.26/jre
java.io.tmpdir	/tmp
java.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
java.runtime.name	Java(TM) SE Runtime Environment
java.runtime.version	1.6.0_26-b03
java.specification.name	Java Platform API Specification
java.specification.vendor	Sun Microsystems Inc.
java.specification.version	1.6
java.vendor	Sun Microsystems Inc.
java.vendor.url	http://java.sun.com/
java.vendor.url.bug	http://java.sun.com/cgi-bin/bugreport.cgi
java.version	1.6.0_26
java.vm.info	mixed mode
java.vm.name	Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name	Java Virtual Machine Specification
java.vm.specification.vendor	Sun Microsystems Inc.
java.vm.specification.version	1.0
java.vm.vendor	Sun Microsystems Inc.
java.vm.version	20.1-b02
jna.platform.library.path	/usr/lib64:/lib64:/usr/lib:/lib
line.separator	
mail.smtp.sendpartial	true
mail.smtps.sendpartial	true
os.arch	amd64
os.name	Linux
os.version	2.6.39-gentoo-r3
path.separator	:
sun.arch.data.model	64
sun.boot.class.path	/opt/sun-jdk-1.6.0.26/jre/lib/resources.jar:/opt/sun-jdk-1.6.0.26/jre/lib/rt.jar:/opt/sun-jdk-1.6.0.26/jre/lib/sunrsasign.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jsse.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jce.jar:/opt/sun-jdk-1.6.0.26/jre/lib/charsets.jar:/opt/sun-jdk-1.6.0.26/jre/lib/modules/jdk.boot.jar:/opt/sun-jdk-1.6.0.26/jre/classes
sun.boot.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64
sun.cpu.endian	little
sun.cpu.isalist	
sun.io.unicode.encoding	UnicodeLittle
sun.java.command	/var/lib/jenkins/jenkins.war --httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
sun.java.launcher	SUN_STANDARD
sun.jnu.encoding	UTF-8
sun.management.compiler	HotSpot 64-Bit Tiered Compilers
sun.os.patch.level	unknown
user.country	US
user.dir	/
user.home	/var/lib/jenkins
user.language	en
user.name	jenkins
user.timezone	Europe/Copenhagen
Environment Variables
Name  ↓	Value   
ANT_HOME	/usr/share/ant-core
CONFIG_PROTECT_MASK	/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.3/ext-active/ /etc/php/cgi-php5.3/ext-active/ /etc/php/apache2-php5.3/ext-active/ /etc/terminfo /etc/revdep-rebuild
EDITOR	/usr/bin/vi
EINFO_LOG	/var/lib/jenkins/init.d/jenkins
GCC_SPECS	
GENERATION	2
HG	/usr/bin/hg
HOME	/var/lib/jenkins
INFOPATH	/usr/share/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/info
JAVA_HOME	/opt/blackdown-jdk-1.4.2.03
JAVAC	/opt/blackdown-jdk-1.4.2.03/bin/javac
JDK_HOME	/opt/blackdown-jdk-1.4.2.03
JENKINS_ARGS	--httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
JENKINS_HOME	/var/lib/jenkins
LANG	en_US.utf8
LD_LIBRARY_PATH	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64
LESS	-R -M --shift 5
MANPATH	/usr/local/share/man:/usr/share/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/man:/opt/blackdown-jdk-1.4.2.03/man:/etc/java-config/system-vm/man/:/usr/lib64/php5.3/man/
NLSPATH	/usr/dt/lib/nls/msg/%L/%N.cat
OPENGL_PROFILE	xorg-x11
PATH	/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.4.5:/opt/blackdown-jdk-1.4.2.03/bin:/opt/blackdown-jdk-1.4.2.03/jre/bin
PIDFILE	/var/run/jenkins/jenkins.pid
PWD	/
RC_SERVICE	/var/lib/jenkins/init.d/jenkins
RC_SVCNAME	jenkins
ROOTPATH	/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.4.5:/opt/blackdown-jdk-1.4.2.03/bin:/opt/blackdown-jdk-1.4.2.03/jre/bin
RUBYOPT	-rauto_gem

[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-20 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Another incident happened in Jenkins 1.511. The build was triggered by an SCM change (Mercurial), culrprits have received emails, but the commiter didn't recieve the email because Jenkins appended leading and trailing underscores to his email address

Name  ↓	Value   
dozer.configuration	META-INF/dozer/configuration.properties
executable-war	/var/lib/jenkins/jenkins.war
file.encoding	UTF-8
file.encoding.pkg	sun.io
file.separator	/
hudson.diyChunking	true
java.awt.graphicsenv	sun.awt.X11GraphicsEnvironment
java.awt.headless	true
java.awt.printerjob	sun.print.PSPrinterJob
java.class.path	/var/lib/jenkins/jenkins.war
java.class.version	50.0
java.endorsed.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/endorsed
java.ext.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/ext:/usr/java/packages/lib/ext
java.home	/opt/sun-jdk-1.6.0.26/jre
java.io.tmpdir	/tmp
java.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
java.runtime.name	Java(TM) SE Runtime Environment
java.runtime.version	1.6.0_26-b03
java.specification.name	Java Platform API Specification
java.specification.vendor	Sun Microsystems Inc.
java.specification.version	1.6
java.vendor	Sun Microsystems Inc.
java.vendor.url	http://java.sun.com/
java.vendor.url.bug	http://java.sun.com/cgi-bin/bugreport.cgi
java.version	1.6.0_26
java.vm.info	mixed mode
java.vm.name	Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name	Java Virtual Machine Specification
java.vm.specification.vendor	Sun Microsystems Inc.
java.vm.specification.version	1.0
java.vm.vendor	Sun Microsystems Inc.
java.vm.version	20.1-b02
jna.platform.library.path	/usr/lib64:/lib64:/usr/lib:/lib
line.separator	
mail.smtp.sendpartial	true
mail.smtps.sendpartial	true
os.arch	amd64
os.name	Linux
os.version	2.6.39-gentoo-r3
path.separator	:
sun.arch.data.model	64
sun.boot.class.path	/opt/sun-jdk-1.6.0.26/jre/lib/resources.jar:/opt/sun-jdk-1.6.0.26/jre/lib/rt.jar:/opt/sun-jdk-1.6.0.26/jre/lib/sunrsasign.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jsse.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jce.jar:/opt/sun-jdk-1.6.0.26/jre/lib/charsets.jar:/opt/sun-jdk-1.6.0.26/jre/lib/modules/jdk.boot.jar:/opt/sun-jdk-1.6.0.26/jre/classes
sun.boot.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64
sun.cpu.endian	little
sun.cpu.isalist	
sun.io.unicode.encoding	UnicodeLittle
sun.java.command	/var/lib/jenkins/jenkins.war --httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
sun.java.launcher	SUN_STANDARD
sun.jnu.encoding	UTF-8
sun.management.compiler	HotSpot 64-Bit Tiered Compilers
sun.os.patch.level	unknown
user.country	US
user.dir	/
user.home	/var/lib/jenkins
user.language	en
user.name	jenkins
user.timezone	Europe/Copenhagen
Environment Variables
Name  ↓	Value   
ANT_HOME	/usr/share/ant-core
CONFIG_PROTECT_MASK	/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.3/ext-active/ /etc/php/cgi-php5.3/ext-active/ /etc/php/apache2-php5.3/ext-active/ /etc/terminfo /etc/revdep-rebuild
EDITOR	/usr/bin/vi
EINFO_LOG	/var/lib/jenkins/init.d/jenkins
GCC_SPECS	
GENERATION	2
HG	/usr/bin/hg
HOME	/var/lib/jenkins
INFOPATH	/usr/share/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/info
JAVA_HOME	/opt/blackdown-jdk-1.4.2.03
JAVAC	/opt/blackdown-jdk-1.4.2.03/bin/javac
JDK_HOME	/opt/blackdown-jdk-1.4.2.03
JENKINS_ARGS	--httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
JENKINS_HOME	/var/lib/jenkins
LANG	en_US.utf8
LD_LIBRARY_PATH	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64
LESS	-R -M --shift 5
MANPATH	/usr/local/share/man:/usr/share/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/man:/opt/blackdown-jdk-1.4.2.03/man:/etc/java-config/system-vm/man/:/usr/lib64/php5.3/man/
NLSPATH	/usr/dt/lib/nls/msg/%L/%N.cat
OPENGL_PROFILE	xorg-x11
PATH	/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.4.5:/opt/blackdown-jdk-1.4.2.03/bin:/opt/blackdown-jdk-1.4.2.03/jre/bin
PIDFILE	/var/run/jenkins/jenkins.pid
PWD	/

[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-20 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Another incident happened in the following environment. The build was triggered by an SCM change (Mercurial), culrprits have received emails, but the commiter didn't recieve the email because Jenkins appended leading and trailing underscores to his email address

Name  ↓	Value   
dozer.configuration	META-INF/dozer/configuration.properties
executable-war	/var/lib/jenkins/jenkins.war
file.encoding	UTF-8
file.encoding.pkg	sun.io
file.separator	/
hudson.diyChunking	true
java.awt.graphicsenv	sun.awt.X11GraphicsEnvironment
java.awt.headless	true
java.awt.printerjob	sun.print.PSPrinterJob
java.class.path	/var/lib/jenkins/jenkins.war
java.class.version	50.0
java.endorsed.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/endorsed
java.ext.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/ext:/usr/java/packages/lib/ext
java.home	/opt/sun-jdk-1.6.0.26/jre
java.io.tmpdir	/tmp
java.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
java.runtime.name	Java(TM) SE Runtime Environment
java.runtime.version	1.6.0_26-b03
java.specification.name	Java Platform API Specification
java.specification.vendor	Sun Microsystems Inc.
java.specification.version	1.6
java.vendor	Sun Microsystems Inc.
java.vendor.url	http://java.sun.com/
java.vendor.url.bug	http://java.sun.com/cgi-bin/bugreport.cgi
java.version	1.6.0_26
java.vm.info	mixed mode
java.vm.name	Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name	Java Virtual Machine Specification
java.vm.specification.vendor	Sun Microsystems Inc.
java.vm.specification.version	1.0
java.vm.vendor	Sun Microsystems Inc.
java.vm.version	20.1-b02
jna.platform.library.path	/usr/lib64:/lib64:/usr/lib:/lib
line.separator	
mail.smtp.sendpartial	true
mail.smtps.sendpartial	true
os.arch	amd64
os.name	Linux
os.version	2.6.39-gentoo-r3
path.separator	:
sun.arch.data.model	64
sun.boot.class.path	/opt/sun-jdk-1.6.0.26/jre/lib/resources.jar:/opt/sun-jdk-1.6.0.26/jre/lib/rt.jar:/opt/sun-jdk-1.6.0.26/jre/lib/sunrsasign.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jsse.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jce.jar:/opt/sun-jdk-1.6.0.26/jre/lib/charsets.jar:/opt/sun-jdk-1.6.0.26/jre/lib/modules/jdk.boot.jar:/opt/sun-jdk-1.6.0.26/jre/classes
sun.boot.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64
sun.cpu.endian	little
sun.cpu.isalist	
sun.io.unicode.encoding	UnicodeLittle
sun.java.command	/var/lib/jenkins/jenkins.war --httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
sun.java.launcher	SUN_STANDARD
sun.jnu.encoding	UTF-8
sun.management.compiler	HotSpot 64-Bit Tiered Compilers
sun.os.patch.level	unknown
user.country	US
user.dir	/
user.home	/var/lib/jenkins
user.language	en
user.name	jenkins
user.timezone	Europe/Copenhagen
Environment Variables
Name  ↓	Value   
ANT_HOME	/usr/share/ant-core
CONFIG_PROTECT_MASK	/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.3/ext-active/ /etc/php/cgi-php5.3/ext-active/ /etc/php/apache2-php5.3/ext-active/ /etc/terminfo /etc/revdep-rebuild
EDITOR	/usr/bin/vi
EINFO_LOG	/var/lib/jenkins/init.d/jenkins
GCC_SPECS	
GENERATION	2
HG	/usr/bin/hg
HOME	/var/lib/jenkins
INFOPATH	/usr/share/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/info
JAVA_HOME	/opt/blackdown-jdk-1.4.2.03
JAVAC	/opt/blackdown-jdk-1.4.2.03/bin/javac
JDK_HOME	/opt/blackdown-jdk-1.4.2.03
JENKINS_ARGS	--httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log --webroot=/var/run/jenkins/work
JENKINS_HOME	/var/lib/jenkins
LANG	en_US.utf8
LD_LIBRARY_PATH	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64
LESS	-R -M --shift 5
MANPATH	/usr/local/share/man:/usr/share/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.20.1/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.5/man:/opt/blackdown-jdk-1.4.2.03/man:/etc/java-config/system-vm/man/:/usr/lib64/php5.3/man/
NLSPATH	/usr/dt/lib/nls/msg/%L/%N.cat
OPENGL_PROFILE	xorg-x11
PATH	/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.4.5:/opt/blackdown-jdk-1.4.2.03/bin:/opt/blackdown-jdk-1.4.2.03/jre/bin
PIDFILE	/var/run/jenkins/jenkins.pid
PWD	

[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-20 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Another incident happened in Jenkins 1.511. The build was triggered by an SCM change (Mercurial), culrprits have received emails, but the commiter didn't recieve the email because Jenkins appended leading and trailing underscores to his email address

Apr 20, 2013 5:22:04 PM hudson.plugins.emailext.ExtendedEmailPublisher addAddressesFromRecipientList
WARNING: Could not create email address.
javax.mail.internet.AddressException: Domain contains illegal character in string ``develo...@.com''
at javax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:633)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:610)
at hudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:33)
at hudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:706)
at hudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:522)
at hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:304)
at hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:296)
at hudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:256)
at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:802)
at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:774)
at hudson.model.Build$BuildExecution.cleanUp(Build.java:192)
at hudson.model.Run.execute(Run.java:1620)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:237)


Name  ↓	Value   
dozer.configuration	META-INF/dozer/configuration.properties
executable-war	/var/lib/jenkins/jenkins.war
file.encoding	UTF-8
file.encoding.pkg	sun.io
file.separator	/
hudson.diyChunking	true
java.awt.graphicsenv	sun.awt.X11GraphicsEnvironment
java.awt.headless	true
java.awt.printerjob	sun.print.PSPrinterJob
java.class.path	/var/lib/jenkins/jenkins.war
java.class.version	50.0
java.endorsed.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/endorsed
java.ext.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/ext:/usr/java/packages/lib/ext
java.home	/opt/sun-jdk-1.6.0.26/jre
java.io.tmpdir	/tmp
java.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
java.runtime.name	Java(TM) SE Runtime Environment
java.runtime.version	1.6.0_26-b03
java.specification.name	Java Platform API Specification
java.specification.vendor	Sun Microsystems Inc.
java.specification.version	1.6
java.vendor	Sun Microsystems Inc.
java.vendor.url	http://java.sun.com/
java.vendor.url.bug	http://java.sun.com/cgi-bin/bugreport.cgi
java.version	1.6.0_26
java.vm.info	mixed mode
java.vm.name	Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name	Java Virtual Machine Specification
java.vm.specification.vendor	Sun Microsystems Inc.
java.vm.specification.version	1.0
java.vm.vendor	Sun Microsystems Inc.
java.vm.version	20.1-b02
jna.platform.library.path	/usr/lib64:/lib64:/usr/lib:/lib
line.separator	
mail.smtp.sendpartial	true
mail.smtps.sendpartial	true
os.arch	amd64
os.name	Linux
os.version	2.6.39-gentoo-r3
path.separator	:
sun.arch.data.model	64
sun.boot.class.path	/opt/sun-jdk-1.6.0.26/jre/lib/resources.jar:/opt/sun-jdk-1.6.0.26/jre/lib/rt.jar:/opt/sun-jdk-1.6.0.26/jre/lib/sunrsasign.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jsse.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jce.jar:/opt/sun-jdk-1.6.0.26/jre/lib/charsets.jar:/opt/sun-jdk-1.6.0.26/jre/lib/modules/jdk.boot.jar:/opt/sun-jdk-1.6.0.26/jre/classes
sun.boot.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64
sun.cpu.endian	little
sun.cpu.isalist	
sun.io.unicode.encoding	UnicodeLittle
sun.java.command	/var/lib/jenkins/jenkins.war --httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log 

[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-20 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Another incident happened in Jenkins 1.511. The build was triggered by an SCM change (Mercurial), culrprits have received emails, but the commiter didn't recieve the email because Jenkins appended leading and trailing underscores to his email address

Apr 20, 2013 5:22:04 PM hudson.plugins.emailext.ExtendedEmailPublisher addAddressesFromRecipientList
WARNING: Could not create email address.
javax.mail.internet.AddressException: Domain contains illegal character in string ``_developer@.com_''
at javax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:633)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:610)
at hudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:33)
at hudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:706)
at hudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:522)
at hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:304)
at hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:296)
at hudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:256)
at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:802)
at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:774)
at hudson.model.Build$BuildExecution.cleanUp(Build.java:192)
at hudson.model.Run.execute(Run.java:1620)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:237)




Name  ↓	Value   
dozer.configuration	META-INF/dozer/configuration.properties
executable-war	/var/lib/jenkins/jenkins.war
file.encoding	UTF-8
file.encoding.pkg	sun.io
file.separator	/
hudson.diyChunking	true
java.awt.graphicsenv	sun.awt.X11GraphicsEnvironment
java.awt.headless	true
java.awt.printerjob	sun.print.PSPrinterJob
java.class.path	/var/lib/jenkins/jenkins.war
java.class.version	50.0
java.endorsed.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/endorsed
java.ext.dirs	/opt/sun-jdk-1.6.0.26/jre/lib/ext:/usr/java/packages/lib/ext
java.home	/opt/sun-jdk-1.6.0.26/jre
java.io.tmpdir	/tmp
java.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64/server:/opt/sun-jdk-1.6.0.26/jre/lib/amd64:/opt/sun-jdk-1.6.0.26/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
java.runtime.name	Java(TM) SE Runtime Environment
java.runtime.version	1.6.0_26-b03
java.specification.name	Java Platform API Specification
java.specification.vendor	Sun Microsystems Inc.
java.specification.version	1.6
java.vendor	Sun Microsystems Inc.
java.vendor.url	http://java.sun.com/
java.vendor.url.bug	http://java.sun.com/cgi-bin/bugreport.cgi
java.version	1.6.0_26
java.vm.info	mixed mode
java.vm.name	Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name	Java Virtual Machine Specification
java.vm.specification.vendor	Sun Microsystems Inc.
java.vm.specification.version	1.0
java.vm.vendor	Sun Microsystems Inc.
java.vm.version	20.1-b02
jna.platform.library.path	/usr/lib64:/lib64:/usr/lib:/lib
line.separator	
mail.smtp.sendpartial	true
mail.smtps.sendpartial	true
os.arch	amd64
os.name	Linux
os.version	2.6.39-gentoo-r3
path.separator	:
sun.arch.data.model	64
sun.boot.class.path	/opt/sun-jdk-1.6.0.26/jre/lib/resources.jar:/opt/sun-jdk-1.6.0.26/jre/lib/rt.jar:/opt/sun-jdk-1.6.0.26/jre/lib/sunrsasign.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jsse.jar:/opt/sun-jdk-1.6.0.26/jre/lib/jce.jar:/opt/sun-jdk-1.6.0.26/jre/lib/charsets.jar:/opt/sun-jdk-1.6.0.26/jre/lib/modules/jdk.boot.jar:/opt/sun-jdk-1.6.0.26/jre/classes
sun.boot.library.path	/opt/sun-jdk-1.6.0.26/jre/lib/amd64
sun.cpu.endian	little
sun.cpu.isalist	
sun.io.unicode.encoding	UnicodeLittle
sun.java.command	/var/lib/jenkins/jenkins.war --httpPort=8081 --ajp13Port=-1 --prefix=/jenkins --logfile=/var/log/jenkins/jenkins.log 

[JIRA] [mercurial] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-04-19 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















This issue happen again 1 week ago on the latest version of Jenkins.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-03-03 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















After upgrading Jenkins to version 1500 the issue has gone.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] (JENKINS-16848) Error when upgrading from version 1500

2013-02-17 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 created  JENKINS-16848


Error when upgrading from version 1500 















Issue Type:


Bug



Assignee:


Unassigned


Components:


core



Created:


17/Feb/13 11:11 AM



Description:


When upgrading version 1500 to a newer version I get errors

Failed to resolve host name mirrors.karan.org. Perhaps you need to configure HTTP proxy?

java.net.UnknownHostException: mirrors.karan.org
	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:195)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
	at java.net.Socket.connect(Socket.java:529)
	at java.net.Socket.connect(Socket.java:478)
	at sun.net.NetworkClient.doConnect(NetworkClient.java:163)
	at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
	at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
	at sun.net.www.http.HttpClient.init(HttpClient.java:233)
	at sun.net.www.http.HttpClient.New(HttpClient.java:306)
	at sun.net.www.http.HttpClient.New(HttpClient.java:323)
	at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:970)
	at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:911)
	at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:836)
	at sun.net.www.protocol.http.HttpURLConnection.followRedirect(HttpURLConnection.java:2124)
	at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1367)
	at hudson.model.UpdateCenter$UpdateCenterConfiguration.testConnection(UpdateCenter.java:819)
	at hudson.model.UpdateCenter$UpdateCenterConfiguration.checkUpdateCenter(UpdateCenter.java:668)
	at hudson.model.UpdateCenter$ConnectionCheckJob.run(UpdateCenter.java:985)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
	at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
	at java.util.concurrent.FutureTask.run(FutureTask.java:138)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
	at java.lang.Thread.run(Thread.java:662)




Project:


Jenkins



Priority:


Major



Reporter:


Sergey Grigoriev

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] (JENKINS-16848) Error when upgrading from version 1500

2013-02-17 Thread s.a.grigor...@gmail.com (JIRA)















































Sergey Grigoriev
 closed  JENKINS-16848 as Cannot Reproduce


Error when upgrading from version 1500 
















Change By:


Sergey Grigoriev
(17/Feb/13 5:23 PM)




Status:


Resolved
Closed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] (JENKINS-16848) Error when upgrading from version 1500

2013-02-17 Thread s.a.grigor...@gmail.com (JIRA)















































Sergey Grigoriev
 resolved  JENKINS-16848 as Cannot Reproduce


Error when upgrading from version 1500 
















Now the issue has gone





Change By:


Sergey Grigoriev
(17/Feb/13 5:23 PM)




Status:


Open
Resolved





Resolution:


CannotReproduce



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-15 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(15/Jan/13 2:58 PM)




Priority:


Blocker
Major



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-15 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















The problem has dissolved after  'sudo service jenkins restart'. 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-15 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















The problem has gone after  'sudo service jenkins restart'. 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-15 Thread s.a.grigor...@gmail.com (JIRA)















































Sergey Grigoriev
 closed  JENKINS-16332 as Cannot Reproduce


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(15/Jan/13 7:46 PM)




Status:


Resolved
Closed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-15 Thread s.a.grigor...@gmail.com (JIRA)















































Sergey Grigoriev
 resolved  JENKINS-16332 as Cannot Reproduce


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Cannot reproduce





Change By:


Sergey Grigoriev
(15/Jan/13 7:46 PM)




Status:


Open
Resolved





Resolution:


CannotReproduce



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-14 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification















In my case the user's don't sign up themselves, they don't have Jenkins accounts. Emails are extracted from SCM log only.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-14 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















In my case the user's don't sign up themselves, they don't have Jenkins accounts and cannot login into Jenkins. Emails are extracted from SCM log only.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-14 Thread s.a.grigor...@gmail.com (JIRA)












































 
Sergey Grigoriev
 edited a comment on  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















In my case the commiters don't sign up themselves, they don't have Jenkins accounts and cannot login into Jenkins. Emails are extracted from SCM log only.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address,

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 created  JENKINS-16332


Leading and trailing underscores are added to commiters email address, 















Issue Type:


Bug



Assignee:


Jesse Glick



Components:


mercurial



Created:


13/Jan/13 10:15 PM



Description:


Jenkins email-ext plugin fails to send email, the error is

Failed to create e-mail address for develop...@xxx.net
Failed to create e-mail address for develop...@xxx.net
Failed to create e-mail address for develop...@xxx.net
Failed to create e-mail address for develop...@xxx.net

(Names and domain are changed)

Jan 13, 2013 7:15:56 PM hudson.plugins.emailext.ExtendedEmailPublisher addAddressesFromRecipientList
WARNING: Could not create email address.
javax.mail.internet.AddressException: Domain contains illegal character in string ``develop...@xxx.net''
at javax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:633)
at javax.mail.internet.InternetAddress.init(InternetAddress.java:111)
at hudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)
at hudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)
at hudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)
at hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)
at hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)
at hudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)
at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)
at hudson.model.AbstractBuild$AbstractBuildExecution.perJan 13, 2013 7:15:56 PM hudson.plugins.emailext.ExtendedEmailPublisher addAddressesFromRecipientList
WARNING: Could not create email address.
javax.mail.internet.AddressException: Domain contains illegal character in string ``y...@worldticket.net''
at javax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)
at javax.mail.internet.InternetAddress.parse(InternetAddress.java:633)
at javax.mail.internet.InternetAddress.init(InternetAddress.java:111)
at hudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)
at hudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)
at hudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)
at hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)
at hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)
at hudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)
at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)
at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)
at hudson.model.Build$BuildExecution.cleanUp(Build.java:192)
at hudson.model.Run.execute(Run.java:1587)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)
at hudson.model.Build$BuildExecution.cleanUp(Build.java:192)
at hudson.model.Run.execute(Run.java:1587)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at 

[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address,

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, 
















Change By:


Sergey Grigoriev
(13/Jan/13 10:16 PM)




Description:


Jenkinsemail-extpluginfailstosendemail,theerrorisFailedtocreatee-mailaddressfor_developer1@xxx.net_Failedtocreatee-mailaddressfor_developer2@xxx.net_Failedtocreatee-mailaddressfor_developer1@xxx.net_Failedtocreatee-mailaddressfor_developer1@xxx.net_(Namesanddomainarechanged)Jan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``_developer1@xxx.net_atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.perJan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``_yin@worldticket.net_atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)FirstIthoughtistheproblemisinemail-extplugin,butwhenIwenttoChangestabandopenedthepage
https
http
://
devel.2mba.dk
host
/jenkins/user/Developer%201%20__developer1@xxx.net_/
(hostnamechanged)


itshowedJenkinsUserId:Developer1_developer1@xxx.net_ForunknownreasonJenkinsaddsaleadingandtrailingunderscoretoemailaddress



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA 

[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(13/Jan/13 10:21 PM)




Summary:


Leadingandtrailingunderscoresareaddedtocommitersemailaddress,

unabletosendbuildnotification



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(13/Jan/13 10:25 PM)




Description:


Jenkinsemail-extpluginfailstosendemail,theerrorisFailedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer2@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__(Namesanddomainarechanged)Jan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``__developer1@xxx.net__atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.perJan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``_yin@worldticket.net_atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)FirstIthoughtistheproblemisinemail-extplugin,butwhenIwenttoChangestabandopenedthepagehttp://host/jenkins/user/Developer%201%20__developer1@xxx.net_/(hostnamechanged)itshowedJenkinsUserId:Developer1__developer1@xxx.net__ForunknownreasonJenkinsaddsaleadingandtrailingunderscoretoemailaddressEnvironmentJenkinsver.1.498	JenkinsMercurialplugin1.42JenkinsEmailExtensionPlugin2.25
MercurialDistributedSCM(version1.4.3)

Ubuntu10.04.4LTS

Java(TM)SERuntimeEnvironment(build1.6.0_32-b05)JavaHotSpot(TM)64-BitServerVM(build20.7-b02,mixedmode)



  

[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(13/Jan/13 10:30 PM)




Description:


Jenkinsemail-extpluginfailstosendemail,theerrorisFailedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer2@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__(Namesanddomainarechanged)Jan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``__developer1@xxx.net__atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.perJan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``_yin@worldticket.net_atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)FirstIthoughtistheproblemisinemail-extplugin,butwhenIwenttoChangestabandopenedthepagehttp://host/jenkins/user/Developer%201%20__developer1@xxx.net_/(hostnamechanged)itshowedJenkinsUserId:Developer1__developer1@xxx.net__ForunknownreasonJenkinsaddsaleadingandtrailingunderscoretoemailaddressEnvironmentJenkinsver.1.498	JenkinsMercurialplugin1.42JenkinsEmailExtensionPlugin2.25MercurialDistributedSCM(version1.4.3)Ubuntu10.04.4LTSJava(TM)SERuntimeEnvironment(build1.6.0_32-b05)JavaHotSpot(TM)64-BitServerVM(build20.7-b02,mixedmode)

[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(13/Jan/13 10:32 PM)




Description:


Jenkinsemail-extpluginfailstosendemail,theerrorisFailedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer2@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__(Namesanddomainarechanged)Jan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``__developer1@xxx.net__atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.perJan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``_yin@worldticket.net_atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)FirstIthoughtistheproblemisinemail-extplugin,butwhenIwenttoChangestabandopenedthepagehttp://host/jenkins/user/Developer%201%20__developer1@xxx.net_/(hostnamechanged)itshowedJenkinsUserId:Developer1__developer1@xxx.net__ForunknownreasonJenkinsaddsaleadingandtrailingunderscoretoemailaddressEnvironmentJenkinsver.1.498	JenkinsMercurialplugin1.42JenkinsEmailExtensionPlugin2.25MercurialDistributedSCM(version1.4.3)Ubuntu10.04.4LTSJava(TM)SERuntimeEnvironment(build1.6.0_32-b05)JavaHotSpot(TM)64-BitServerVM(build20.7-b02,mixedmode)

[JIRA] (JENKINS-16332) Leading and trailing underscores are added to commiters email address, unable to send build notification

2013-01-13 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 updated  JENKINS-16332


Leading and trailing underscores are added to commiters email address, unable to send build notification
















Change By:


Sergey Grigoriev
(13/Jan/13 10:41 PM)




Description:


Jenkinsemail-extpluginfailstosendemail,theerrorisFailedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer2@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__Failedtocreatee-mailaddressfor__developer1@xxx.net__(Namesanddomainarechanged)Jan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``__developer1@xxx.net__atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.perJan13,20137:15:56PMhudson.plugins.emailext.ExtendedEmailPublisheraddAddressesFromRecipientListWARNING:Couldnotcreateemailaddress.javax.mail.internet.AddressException:Domaincontainsillegalcharacterinstring``
_yin
__developer1
@
worldticket
xxx
.
net_
net__
atjavax.mail.internet.InternetAddress.checkAddress(InternetAddress.java:1269)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:1091)atjavax.mail.internet.InternetAddress.parse(InternetAddress.java:633)atjavax.mail.internet.InternetAddress.init(InternetAddress.java:111)athudson.plugins.emailext.EmailRecipientUtils.convertRecipientString(EmailRecipientUtils.java:60)athudson.plugins.emailext.ExtendedEmailPublisher.addAddressesFromRecipientList(ExtendedEmailPublisher.java:687)athudson.plugins.emailext.ExtendedEmailPublisher.createMail(ExtendedEmailPublisher.java:508)athudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:297)athudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)athudson.plugins.emailext.ExtendedEmailPublisher.perform(ExtendedEmailPublisher.java:249)athudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:36)athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:810)athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)formAllBuildSteps(AbstractBuild.java:785)athudson.model.Build$BuildExecution.cleanUp(Build.java:192)athudson.model.Run.execute(Run.java:1587)athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)athudson.model.ResourceController.execute(ResourceController.java:88)athudson.model.Executor.run(Executor.java:236)FirstIthoughtistheproblemisinemail-extplugin,butwhenIwenttoChangestabandopenedthepagehttp://host/jenkins/user/Developer%201%20__developer1@xxx.net_/(hostnamechanged)itshowedJenkinsUserId:Developer1__developer1@xxx.net__ForunknownreasonJenkinsaddsaleadingandtrailingunderscoretoemailaddressEnvironmentJenkinsver.1.498	

[JIRA] (JENKINS-15795) Mercurial SCM plugin throws exceptions when polling

2012-11-10 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 created  JENKINS-15795


Mercurial SCM plugin throws exceptions when polling















Issue Type:


Bug



Affects Versions:


current



Assignee:


Jesse Glick



Components:


mercurial



Created:


10/Nov/12 9:34 AM



Description:


Started on Nov 10, 2012 12:21:42 PM
ERROR: Failed to record SCM polling for hudson.model.FreeStyleProject@6e7d30b3sms-sgr
java.lang.ArrayIndexOutOfBoundsException: 1
	at hudson.Launcher$2.launch(Launcher.java:712)
	at hudson.Launcher$ProcStarter.start(Launcher.java:346)
	at hudson.plugins.mercurial.MercurialSCM.joinWithPossibleTimeout(MercurialSCM.java:308)
	at hudson.plugins.mercurial.MercurialSCM.pull(MercurialSCM.java:302)
	at hudson.plugins.mercurial.MercurialSCM.compareRemoteRevisionWith(MercurialSCM.java:252)
	at hudson.scm.SCM._compareRemoteRevisionWith(SCM.java:356)
	at hudson.scm.SCM.poll(SCM.java:373)
	at hudson.model.AbstractProject._poll(AbstractProject.java:1471)
	at hudson.model.AbstractProject.poll(AbstractProject.java:1404)
	at hudson.triggers.SCMTrigger$Runner.runPolling(SCMTrigger.java:420)
	at hudson.triggers.SCMTrigger$Runner.run(SCMTrigger.java:449)
	at hudson.util.SequentialExecutionQueue$QueueEntry.run(SequentialExecutionQueue.java:118)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
	at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
	at java.util.concurrent.FutureTask.run(FutureTask.java:138)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
	at java.lang.Thread.run(Thread.java:662)




Environment:


Mercurial Distributed SCM (version 2.3.2)

java version 1.6.0_32

Java(TM) SE Runtime Environment (build 1.6.0_32-b05)

Java HotSpot(TM) 64-Bit Server VM (build 20.7-b02, mixed mode)

Ubuntu 12.10 x64

Jenkins version 1.489

Jenkins Mercurial Plugin 1.42




Project:


Jenkins



Priority:


Critical



Reporter:


Sergey Grigoriev

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-15795) Mercurial SCM plugin throws exceptions when polling

2012-11-10 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-15795


Mercurial SCM plugin throws exceptions when polling















Also re-produces on another server with the same Jenkins and Jenkins Mercurial Plugin versions but different java and hg versions
Mercurial Distributed SCM (version 2.0.1)
Linux Gentoo
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-15795) Mercurial SCM plugin throws exceptions when polling

2012-11-10 Thread s.a.grigor...@gmail.com (JIRA)














































Sergey Grigoriev
 commented on  JENKINS-15795


Mercurial SCM plugin throws exceptions when polling















Downgrading Mercurial plugin to 1.41 didn't help



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira






[JIRA] (JENKINS-15795) Mercurial SCM plugin throws exceptions when polling

2012-11-10 Thread s.a.grigor...@gmail.com (JIRA)















































Sergey Grigoriev
 resolved  JENKINS-15795 as Duplicate


Mercurial SCM plugin throws exceptions when polling
















Change By:


Sergey Grigoriev
(10/Nov/12 9:49 AM)




Status:


Open
Resolved





Resolution:


Duplicate



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira