-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
Jenkins 2.249.1. Email ext plugin 2.77.
-
-
2.78
To send mail via smtp.office365.com, a correct "from" address is required. If you don't set "from" in the pipleine step, the plugin should use the admin email. The first time the plugin is used, this address is fixed and can't be changed in the UI.
I believe the problem is with this code in ExtendedEmailPublisherDescriptor:
public String getAdminAddress() { JenkinsLocationConfiguration config = JenkinsLocationConfiguration.get(); if(config != null) { if(StringUtils.isBlank(mailAccount.getAddress())) { mailAccount.setAddress(config.getAdminAddress()); } } return mailAccount.getAddress(); }
Once an address has been recorded it can never change, even if you change the admin address. In my case it was the "nobody" address.
The address is recorded in Jenkins home directory, file .jenkins/hudson.plugins.emailext.ExtendedEmailPublisher.xml. A viable workaround is to edit the file and correct the address element. Example:
<address>address not configured yet <nobody@nowhere></address> -> <address>correct@adress</address>
Then restart Jenkins.
- is related to
-
JENKINS-63890 configure from address for email-ext plugin through jenkins-dsl
-
- Open
-
- links to
[JENKINS-63846] From address can't be changed
Description |
Original:
To send mail via smtp.office365.com, a correct "from" address is required. If you don't set "from" in the pipleine step, the plugin should use the admin email. The first time the plugin is used, this address is fixed and can't be changed in the UI. I believe the problem is with this code in ExtendedEmailPublisherDescriptor: {code:java} public String getAdminAddress() { JenkinsLocationConfiguration config = JenkinsLocationConfiguration.get(); if(config != null) { if(StringUtils.isBlank(mailAccount.getAddress())) { mailAccount.setAddress(config.getAdminAddress()); } } return mailAccount.getAddress(); } {code} Once an address has been recorded it can never change, even if you change the admin address. In my case it was the "nobody" address. The address is recoded in hudson.plugins.emailext.ExtendedEmailPublisher.xml. A viable workaround is to edit the file: {code:java} <address>address not configured yet <nobody@nowhere></address> {code} Then restart Jenkins. |
New:
To send mail via smtp.office365.com, a correct "from" address is required. If you don't set "from" in the pipleine step, the plugin should use the admin email. The first time the plugin is used, this address is fixed and can't be changed in the UI. I believe the problem is with this code in ExtendedEmailPublisherDescriptor: {code:java} public String getAdminAddress() { JenkinsLocationConfiguration config = JenkinsLocationConfiguration.get(); if(config != null) { if(StringUtils.isBlank(mailAccount.getAddress())) { mailAccount.setAddress(config.getAdminAddress()); } } return mailAccount.getAddress(); } {code} Once an address has been recorded it can never change, even if you change the admin address. In my case it was the "nobody" address. The address is recorded in Jenkins home directory, file .jenkins/hudson.plugins.emailext.ExtendedEmailPublisher.xml. A viable workaround is to edit the file: {code:java} <address>address not configured yet <nobody@nowhere></address> {code} Then restart Jenkins. |
Description |
Original:
To send mail via smtp.office365.com, a correct "from" address is required. If you don't set "from" in the pipleine step, the plugin should use the admin email. The first time the plugin is used, this address is fixed and can't be changed in the UI. I believe the problem is with this code in ExtendedEmailPublisherDescriptor: {code:java} public String getAdminAddress() { JenkinsLocationConfiguration config = JenkinsLocationConfiguration.get(); if(config != null) { if(StringUtils.isBlank(mailAccount.getAddress())) { mailAccount.setAddress(config.getAdminAddress()); } } return mailAccount.getAddress(); } {code} Once an address has been recorded it can never change, even if you change the admin address. In my case it was the "nobody" address. The address is recorded in Jenkins home directory, file .jenkins/hudson.plugins.emailext.ExtendedEmailPublisher.xml. A viable workaround is to edit the file: {code:java} <address>address not configured yet <nobody@nowhere></address> {code} Then restart Jenkins. |
New:
To send mail via smtp.office365.com, a correct "from" address is required. If you don't set "from" in the pipleine step, the plugin should use the admin email. The first time the plugin is used, this address is fixed and can't be changed in the UI. I believe the problem is with this code in ExtendedEmailPublisherDescriptor: {code:java} public String getAdminAddress() { JenkinsLocationConfiguration config = JenkinsLocationConfiguration.get(); if(config != null) { if(StringUtils.isBlank(mailAccount.getAddress())) { mailAccount.setAddress(config.getAdminAddress()); } } return mailAccount.getAddress(); } {code} Once an address has been recorded it can never change, even if you change the admin address. In my case it was the "nobody" address. The address is recorded in Jenkins home directory, file .jenkins/hudson.plugins.emailext.ExtendedEmailPublisher.xml. A viable workaround is to edit the file and correct the address element. Example: {code:java} <address>address not configured yet <nobody@nowhere></address> -> <address>correct@adress</address>{code} Then restart Jenkins. |
Link | New: This issue is related to JENKINS-63890 [ JENKINS-63890 ] |
Assignee | Original: Alex Earl [ slide_o_mix ] |
Assignee | New: Basil Crow [ basil ] |
Summary | Original: From-address can't be changed | New: From address can't be changed |
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Status | Original: In Progress [ 3 ] | New: In Review [ 10005 ] |
Remote Link | New: This issue links to "jenkinsci/email-ext-plugin#249 (Web Link)" [ 26129 ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: In Review [ 10005 ] | New: Resolved [ 5 ] |