If you need to differentiate between which of multiple IQ Servers sent a Policy Violation email, you may want to customize the personal name used in the From address. For example, if you want to differentiate the notification email from the "developer test" IQ instance (versus the production IQ instance), you can change the personal name from the default "Sonatype IQ Server" to "Dev IQ Server".
You can customize this via the undocumented/unsupported setting 'systemPersonal' under the 'mail' section of config.yml.
# Notification mail settings. # If enabled, ensure that the baseUrl configuration setting is also enabled and correct, because generated emails often contain links to the server. mail: # The host running the SMTP server to use. hostname: "127.0.0.1" ... # Personal name used as From for outgoing notification mails. systemPersonal: "Dev IQ Server"
For comparison, the default "From" email source produced is:
From: Sonatype IQ Server <NexusIQServer@localhost>
The modified "From" email source produced is:
From: Dev IQ Server <DevIQServer@localhost>
0 Comments