问题描述
我已将 Jenkins 设置为仅向使用 email-ext 插件破坏构建的用户发送电子邮件,但出现此错误:
不向未注册的用户 [email protected] 发送邮件,因为您的 SCM 声称这与您的安全领域无法识别的用户 IDJohn Smith"相关联;您可能需要更改 SCM 插件
我真的不明白这个错误是什么意思,是我们的 SCM 还是电子邮件插件的问题?这些电子邮件取自提交历史记录,我应该将它们注册到某个地方以便 Jenkins 开始工作吗?
参考,
如果这不起作用,请参阅https://stackoverflow.com/a/45353810/492336 用于另一种解决方案.
I've setup Jenkins to send emails only to users who broke the build using email-ext plugin, but I'm getting this error:
I don't really understand what this error means, is the problem in our SCM, or in the email plugin? The emails are taken from the commit history, should I register them somewhere so Jenkins will start working?
For reference, this is the code around the error message in the plugin's source code:
} catch (UsernameNotFoundException x) {
if (SEND_TO_UNKNOWN_USERS) {
listener.getLogger().printf("Warning: %s is not a recognized user, but sending mail anyway%n", userAddress);
} else {
listener.getLogger().printf("Not sending mail to unregistered user %s because your SCM"
........
How do I enable SEND_TO_UNKNOWN_USERS
?
The error message is also mentioned in this bug report.
For version V2.61 or above this can be configured via a radio button.
Go to
and tick the radio button for Allow sending to unregistered users
Edit: If this does not work, see https://stackoverflow.com/a/45353810/492336 for another solution.
这篇关于Jenkins 电子邮件插件不会向破坏构建的用户发送电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!