Home
TeamSite
Problem sending mail to Solaris mail server
yalavarthi_Srini
we are using "smtp" in Mail::Mailer to send mail in the opendeploy script. some of the user are not getting email. we searched interwoven KB (Article: 2324), and changed "smtp" to "sendmail".
we are running this script from TeamSite Menu items and these scripts are located in iw-home/httpd/iw-bin. after changing to "sendmail", all the users are getting emails. but it is displaying this error message. Server... User unknown mailhost.domain.com... User unknown /home/server/user/dead.letter... Saved message in /home/server/user/dead.letter
Any ideas??
Find more posts tagged with
Comments
Adam Stoller
It would help to see the script that you are using (please - use the "attachment" feature - don't put it inline within your post) to see how the addresses are being used within the code.
--fish
(Interwoven Senior Technical Consultant)
NoelAtMtv
Hi, I just duplicated your problem here. You also need to remove the arguments "Server => $$href..." so the line would
read as follows:
#my($mailer) = new Mail::Mailer('smtp', Server => $$href{ms});
my($mailer) = new Mail::Mailer('sendmail');
Thanks.