Unsolved
This post is more than 5 years old
63 Posts
1
1731
September 7th, 2007 11:00
setting up ecc to email alerts messages
i have set up the management policy and all those things, smtp server is up and pingable. but not able to send alerts.
0 events found
No Events found!


GlenH
141 Posts
0
September 9th, 2007 04:00
There's a few things to do..
Check to make sure the SMTP host name is correct in the \ecc\ecc_inf\data\ \data\ ecc_server.ini or server.ini file on the ECC server host. Look for the "smtp host" definition. Older versions of ECC also use an environmental variable called GATEWAY which is also on the ECC server host - if that is there, then make sure it also is correct. The other thing to do is check that the ecc server can resolve the dns name assigned to the smtp host entry.
Assuming that's all OK, you need to make sure you are correctly triggering an alert for email.
Firstly, make sure the email management policy is assigned to the alert(s) you are using to test / check the functionality. Now you need to trigger that alert somehow, and if the alert you are using already has an entry in the console, make sure you clear it first or it won't re-send an email.
Once the alert appears in the console, if it still isn't working properly, check the server.trc file (in the same dir as the server.ini) and take a look to see what's going on..
Hope that helps,
Glen.
michaelf1
109 Posts
0
September 11th, 2007 19:00
emc91012
dmraymer_de6370
3 Posts
0
October 16th, 2007 08:00
kastlr
26 Posts
0
October 26th, 2007 07:00
This could be verified with the following procedure from a cmd shell.
The required commands are posted in bold, the expected answers from your mailserver in italic
telnet smtphost.fqdn 25
220 smtphost.fqdn;
HELO smtphost.fqdn
250 OK;
MAIL FROM: ECC6.0_Server@your_site.com
250 OK - mail from ;
RCPT TO: customer@work
250 OK - Recipient ;
DATA
354 Send data. End with CRLF.CRLF;
Subject: Just testing, please ignore.
.
250 OK;
QUIT
221 closing connection;
When you receive this mail, you could use this SMTP server with ECC.
As already posted, you need to adjust the ecc_server.ini file and restart the ECC ControlCenter Service.
Hint:
Some virus scanners (i. e. McAfee VirusScan Enterprise 8) do also have port blocking capabilities.
You need to allow the usage of port 25.
Hope this helps a bit.