Outlook is getting hanged - sendmail


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Outlook is getting hanged - sendmail
# 1  
Old 10-25-2005
Outlook is getting hanged - sendmail

Hi,

Problem with Sendmail

When I receive the mail in my outlook, (sent using sendmail ) , Outlook is not working properly( its getting hanged).I am using the script which is available in this forum. The following are the headers that are getting generated . Sendmail is running on SunOS (version 5.8).

****** Content Headers ****
Mime-Version: 1.0
Content-Type: Multipart/Mixed; boundary=Message-Boundary-JPR2474
--Message-Boundary-JPR2474

Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Read Me First


Content-type: Application/Octet-Stream; name=/export/home/ss/outbox/004567_log.log; type=Text
Content-description: attachment; filename=/export/home/ss/outbox/004567_log.log

**********************



Can someone help me to fix this issue ..


thanks
Srini
# 2  
Old 10-26-2005
The easiest fix is not to use Outlook. Since that probably isn't a suitable fix, please post the size of the file you are sending. This is usually the issue as Outlook can't handle large files very well (especially if you already have a bunch of stuff saved in your In box).

Also, to insure this isn't a Sendmail issue, check your log files (check /etc/syslog.conf for where mail logging is going to) to insure the mail is leaving that server. If you have successful messages stating the email was sent, then the issue is completely on the Outlook side.
# 3  
Old 10-26-2005
The size of the file is only 15 KB.
# 4  
Old 10-26-2005
So what script are you using (you state it is on this forum)? Post a link to it please.

And have you checked the logs on the SUN server for errors?
# 5  
Old 10-26-2005
I have taken the code from this link .

https://www.unix.com/answers-to-frequently-asked-questions/9417-multiple-attachments-post33233.html#post33233


I have verified the logs, there are no errors..

mail is getting delivered in the inbox.
# 6  
Old 10-30-2005
if you're just sending a text-formatted log file ... try
Code:
mailx -s "Your Subject" email.address@some.com < /dir/file.log

i don't think this is a sendmail issue --- the problem might be related to a non-printing character in the message that you sent ... try "hostname | mailx -v -s 'test' email.address@some.com" on the unix command line and see if it still hangs your outlook ... if no, check your log file entries for funky non-printing characters ... if yes, troubleshoot your sendmail install ...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Solaris Server getting hanged

Hi, I have recently changed the port speed to 1000 Mbps, auto negotiation ON from 100 Mbps auto negotiation OFF. At a particular time in the night, various other nodes FTP few big file to this node. At that particular moment when the other node start FTPing, the server becomes slow and is kind... (1 Reply)
Discussion started by: brij123
1 Replies

2. Solaris

Multiple hanged FTP processes

Hello people, I got one problem with a script. I have a script which runs every five mins and in the script an ftp process is invoked which sends files to a particular location. The problem is that the ftp process hangs every now and then which causes the whole script to hang. As the... (4 Replies)
Discussion started by: m_usmanayub
4 Replies

3. Solaris

Unix solaris hanged, cannot get the application

Hi , I need your help on the my unix (solaris system was down) when i enter console login ans password could not opearte their application . i tried reboot many times but still same error was occurred. Please refer the attcahed file , how i need to solve this issue?:wall: I 'm not... (2 Replies)
Discussion started by: Thamil
2 Replies

4. Solaris

How to know about a hanged process

Hi, My process is visible in 'ps' command but actually it is not working or it got hanged. This process is not generating any log. Now How can I know that my process got hanged. Please help. (2 Replies)
Discussion started by: sanjay1979
2 Replies

5. Shell Programming and Scripting

Using sendmail to send Outlook Meeting invitation

Hi, I am using the following code to send mails to desired recipients about a batch job notification. ( echo "From:" "Database Server" echo "To:" ${MAILTO} echo "Subject: ${SUBJECT}" echo "MIME-Version: 1.0" echo "Content-Type: text/html" echo "Content-Disposition: inline" cat... (3 Replies)
Discussion started by: Sabari Nath S
3 Replies

6. UNIX and Linux Applications

Binary Get Hanged

Hi, In our product we have use binary that fork the child process to make proxy the connection to device.But recently when we try to connect new configured device several times it get handed and binary stop making further new connection to device.it required to RESTART the services to make binary... (1 Reply)
Discussion started by: Anand Prakash
1 Replies

7. Linux

Binary Get Hanged

Hi, In our product we have use binary that fork the child process to make proxy the connection to device.But recently when we try to connect new configured device several times it get handed and binary stop making further new connection to device.it required to RESTART the services to make... (1 Reply)
Discussion started by: Anand Prakash
1 Replies

8. Shell Programming and Scripting

While killing the process, Script gets hanged. Please help me on this.

Hi Everyone, I have written a script to automate the docbase cleanup process on every weekly basis. That is in this script i have to shutdown the docbase and then kill all the process that are hanged except one process(epic process) and need to delete some log files and then i have to start the... (8 Replies)
Discussion started by: Sheethal
8 Replies

9. UNIX for Advanced & Expert Users

System hanged. help required.

HI, I have a Fedora running box. I am not able to ping/login. I guess it got hanged. Can any one help me how to login to that box with out restart? (8 Replies)
Discussion started by: praveen_b744
8 Replies
Login or Register to Ask a Question