Hi Slide, We have come across that your email-ext plugin resolves users email address from LDAP. its takes the lot of time to complete job if in case of more recipients.
Can you please provide an option not to resolve from LDAP that just appends defaultSuffix? https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/java/hudson/plugins/emailext/EmailRecipientUtils.java public static String getUserConfiguredEmail(User user) { String addr = null; if(user != null) { Mailer.UserProperty mailProperty = user.getProperty(Mailer.UserProperty.class); if (mailProperty != null) { addr = mailProperty.getAddress(); String message = String.format("Resolved %s to %s", user.getId(), addr); LOGGER.fine(message); } } return addr; } Best regards, Venkat -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
