Unsolved

This post is more than 5 years old

3 Posts

1410

August 3rd, 2007 09:00

Email Notification in Replication Manager 5.0.2 Set Up Issue

Is there a reason why Replication Manager does not use standard SMTP calls to send out emails? Normally software has the SMTP calls built into the software to generate the email and needs only to be pointed to an already existing relay server in the environment for delivery. For some reason on the Replication Manager server we needed to install IIS and SMTP engines to create the emails and then relay them after the fact. Installing IIS and SMTP opens up a server to a greater attack surface for virus risks and other problems.

Please let me know if there is another way to send emails from Replication Manager, or if this is changed in a future release.

10 Posts

August 8th, 2007 01:00

Yes, we have such problem, too.
We installed RM5+SP2 on 4 nodes Exchange 2003 cluster, the RM currently can't report error by sending email. This is a big problem of RM5, hope EMC will solve it ASAP.

257 Posts

August 14th, 2007 04:00

Hi all,

Are you aware of Windows-based software which can transmit emails on Windows without having to install IIS or some other SMTP program first?
Please list some examples.


I suggest that you submit an enhancement request by following the instructions in EMC Knowledgebase solution emc97086.


==============================================
Log in to Powerlink and navigate to the following:

Support > Request Support > Contact EMC


Select Software Product Enhancement Request from the Subject selection menu, and click the Submit button.
Agree to the request form terms and conditions, and fill out and submit your enhancement request. Your request will be routed to the proper EMC software product development organization for consideration.
==============================================


thanks
James.

2.2K Posts

August 14th, 2007 08:00

James,
In the Windows sys admin world blat is a common tool for smtp. www.blat.net It is a command line tool that can be scripted.

Aran

257 Posts

August 15th, 2007 00:00

Hi Aran

I probably didnt clarify my question properly - I meant a software application which performs functions/jobs, etc on Windows which can natively send SMTP emails without using an SMTP engine like IIS, or a stand-alone SMTP mailer

James.

3 Posts

August 31st, 2007 11:00

Guys,

Our Information Risk office will not allow for IIS/SMTP to be installed on any non-email servers. I wanted RM notifications for I did the following to utilize Blat.

1. Got Blat from www.blat.net
2, "Installed" blat on my server using:
blat -install mailhost.yours.com emailgroup@yours.com
3. Created a batch file that loops through all files in a folder and passes them onto blat as a variable.
4. Created a batch file to use Blat with the file name list from the above script.
5. Created a batch file to cleanup the directory where the files are placed.
6. Scheduled the first script to run every 30 minutes.
7. Scheduled the clean script to run every 30 minutes, 1 minute after the first script.

Below are the contents on my script files. Also, if RM was installed with IIS installed you may have to create a couple of registry keys for RM to know to put the files in the directory. See Primus emc85379 for more information.

First Script:
blatrmemail.bat

@echo off
REM ****************************************************************************
REM Script: blatrmemail.bat
REM Date: 8/31/2007
REM Version: 1.0
REM Author: Lee Neel
REM Usage: blatrmemail.bat
REM
REM
REM Description: Script to sent Replication Manager emails.
REM Requires rmemail.bat to be in the same directory as this script file.
REM
REM
REM Version: 1.0 Initial Script 8/31/07
REM
REM ****************************************************************************
REM ################# Program Variables #################
for /f "tokens=*" %%a in ('dir /b *.tmp1') do rmemail.bat %%a

Second Script:
rmemail.bat

@echo off
REM ****************************************************************************
REM Script: rmemail.bat
REM Date: 8/31/2007
REM Version: 1.0
REM Author: Lee Neel
REM Usage: rmemail.bat
REM
REM
REM Description: Blat script to sent Replication Manager emails.
REM
REM
REM
REM Version: 1.0 Initial Script 8/31/07
REM
REM ****************************************************************************
REM ################# Program Variables #################
blat %1 -to group@yours.com

Clean up script:
cleanup.bat

@echo off
REM ****************************************************************************
REM Script: cleanup.bat
REM Date: 8/31/2007
REM Version: 1.0
REM Author: Lee Neel
REM Usage: cleanup.bat
REM
REM
REM Description: Script to delete Replication Manager emails that were just sent.
REM
REM
REM
REM Version: 1.0 Initial Script 8/31/07
REM
REM ****************************************************************************
REM ################# Program Variables #################
del *.tmp1 -y

0 events found

No Events found!

Top