mailing from unix -> exchange


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers mailing from unix -> exchange
# 1  
Old 10-23-2002
mailing from unix -> exchange

Hello,

I want to mail from Unix 4.3 (on an RS/6000) to my Microsoft exchange server (5.5).

When I trie : mail -v erikr@domain.nl < /directory/file

I get the following error:

^Cserverone:/etc >WARNING: The local host name (serverone) does not have a domain; fix$jnconfig
erikr@domain.nl... domain.nl: Name server timeout
erikr@domain.nl... Transient parse error -- message queued for future delivery
erikr@domain.nl... queued

Also tried to search on this page but can't find anything like my problem.

Can anyone help me?

Erik
# 2  
Old 10-23-2002
Eric,

It seems that DNS is not running because you are getting name server errors. Just for good measure I would stop and start named and also restart Sendmail as well.

As for the mail syntax.

Here is one very similar to yours. I would use mailx with the options in this link.

https://www.unix.com/showthread.php?s...ighlight=mailx
# 3  
Old 10-24-2002
Thanks,

But i just can't seem to find where to start DNSSmilie

Erik
# 4  
Old 10-24-2002
When you do not use DNS, you can add the full hostname to the /etc/host tabel

like:
12.23.34.25 serverone.yourdomain.nl


in this case the mail system can resolve the IP adres.

BUT iam not sure this is a DNS problem, to me it sounds like a sendmail problem.
# 5  
Old 10-24-2002
I inserted the following line in the /etc/hosts file,

192.168.8.9 serverone.domain.nl

When i use this command:

mailx -s TEST erikr@domain.nl < /tmp/erik

Unix doesn't return an error and the mail won't arrive.

I've already restarted the sendmail subsystem. That won't work either. When i use the mail -v command i get the same errors mentioned before.

Any suggestions??

Hope to hear,

Erik
# 6  
Old 10-24-2002
Data

Sorry I think you need a sendmail guru, iam not
# 7  
Old 10-24-2002
there is a sendmail site. I am not sure of the address. You may need to do a google search for it. something like www.sendmail.org

Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need syntax for mailing in UNIX by using html file as body and along with attachment

Hi All, I need a syntax for mailing in unix by using html code file output as body and along with attachment (without using mutt command) HTML code file : html1.txt Attachment : attach1.txt I was using the below codes but they are not working. ( cat html1.txt ; uuencode attach1.txt... (4 Replies)
Discussion started by: Rokkesh
4 Replies

2. UNIX for Dummies Questions & Answers

Mailing file from UNIX/bash

I have a file that I want to mail out. However, I cannot get the date to print on it. I've tried the following: /usr/bin/mail -s "Lists on `date`" myname@company.com</tmp/list /usr/bin/mail -s "Lists on $(date)" myname@compancy.com</tmp/list $subj="Lists on $(date)" /usr/bin/mail -s... (3 Replies)
Discussion started by: newbie2010
3 Replies

3. Shell Programming and Scripting

exchange values in a table - exchange numbers

Hello all, This is a bit simple but I cannot do it! I have a big table of values between 0 and 1. some cells have NA instead of having any value. I want to exchange all values with "1" and write "0" for all "NA" . for changing "NA" to zero I used sed: sed -i 's/NA/0/g' input.txt But... (3 Replies)
Discussion started by: @man
3 Replies

4. UNIX for Advanced & Expert Users

Regarding mailing of logs

Hi Folks, I have an application which logs get continuously refreshed and made after every 1 second , I want that those logs get mailed to me at my email id sara@somewhere.com The location is cd /var/log/abc/log Please advise the command so that I can mail abc.log at my mailid inbox... (2 Replies)
Discussion started by: SankalpS
2 Replies

5. Shell Programming and Scripting

Mailing Script

Hi, I am totally New to This Scripting Area.We have developed some reports in Bo and User need those reports to be sent through Unix Server (SFTP). Can any one provide me script for transfering File from one location to other with the requirement like if that file fails to reach destination... (4 Replies)
Discussion started by: Sashanth_S
4 Replies

6. UNIX for Dummies Questions & Answers

Mailing in unix

is there any option to mail the value from top command directly to the user.. i want the value of cpu usage from six different servers to be send in a single mail.. thanks, Arun Manas:b: (3 Replies)
Discussion started by: arunmanas
3 Replies

7. HP-UX

[Solved] How do I configure Unix Mail Server to use another Mail Exchange Server

We have configured our mail unix server and can send out emails automatically from applications running on unix to different people in our company as well as outside our company. However there is an outside client who is not receiving these emails because the settings on their mail server cannot... (4 Replies)
Discussion started by: Tenyhwa
4 Replies

8. Shell Programming and Scripting

mailing problem in unix

I have a mailing problem in UNIX.... MAILT="$1" MAILTO=`echo $MAILT | tr ';' ','` CONTENT="/var/www/html/notifier/mailnotify_ccdb.html" SUBJECT="$2" CC="man@abc.com" BCC="ant@abc.com" ( echo "To : ${MAILTO}" echo "Cc : ${CC}" echo "Subject: $SUBJECT" echo "MIME-Version: 1.0" ... (3 Replies)
Discussion started by: rdhanek
3 Replies

9. UNIX for Advanced & Expert Users

Mailing thru UNIX shell script

Hi, I need to send an email from an UNIX shell script along with an attachment. I am working on an HP-UX 11.00 system. The only mailing program which provides adding an attachment to a mail is "pine". However pine is not installed on my system and I cannot install it too due to the server being a... (2 Replies)
Discussion started by: navin
2 Replies
Login or Register to Ask a Question