When trying to email a Netflow report it says "An Email server has not been configured".
search cancel

When trying to email a Netflow report it says "An Email server has not been configured".

book

Article ID: 212417

calendar_today

Updated On:

Products

CA Network Flow Analysis (NetQos / NFA)

Issue/Introduction

While using NetOps Portal 21.2.1 with NFA 21.2.1 or below, email works for CA PM, but when trying to email a Netflow report it says "An Email server has not been configured" or Error sending email: Failure sending mail. Affected recipients: [email protected]

The LogLog file show these errors:

System.Net.Mail.SmtpException: Syntax error, command unrecognized. The server response was: 4.7.1 <[email protected]>: Sender address rejected: You are not authorized to send as [email protected]"

Was added an email server name under "SMTP Server" in Application Settings on the CAPC machine, but it is still giving me same message. 

Environment

Release : NFA 10.0.x

Component : NQRACO - NETQOS RA CONSOLE

Cause

SMTP Server specified in Application Settings on CAPC did not update the smtp parameters value in the reporter.general db table on the NFA Console machine.

Resolution

We can manually update the SMTP server in the database on the NFA Console machine using mysql commands.

mysql
use reporter
update general set value="mail.com.corp" where Attribute='Smtp.Host';
update general set value="[email protected]" where Attribute='ReplyAddress';

If your need to inform the Username and Password Authentication run these commands (uncommon):

update general set value="25" where Attribute='Smtp.Port';
update general set value="xxx" where Attribute='Smtp.Password';
update general set value="xxx" where Attribute='Smtp.User';

Note: Please confirm the correct "values" for all Attribute

This is fixed in NetOps Portal 21.2.2 and NFA 21.2.2 and higher.