Problem with GMail

Pedja68

New member
Joined
Jan 6, 2011
Messages
3
Hello,

first of all - sorry for my poor knowledge in English, but it's not my native language. I'm expiriencing problems with receiving emails from GMail. There is always a 24 hrs delay. What settings should I check, and how to resolve this issue. The emails sent from other domains are delivered instantly.

I'm using a dedicated server with CentOs 5 + DirectAdmin.
 
I guess this is the problem:

Code:
2011-07-10 06:52:21 TLS error on connection from mail-fx0-f49.google.com [209.85.161.49] (SSL_CTX_use_PrivateKey_file file=/etc/exim.key): error:0200100D:system library:fopen:Permission denied
2011-07-10 06:55:37 TLS error on connection from mail-fx0-f50.google.com [209.85.161.50] (SSL_CTX_use_PrivateKey_file file=/etc/exim.key): error:0200100D:system library:fopen:Permission denied
2011-07-10 07:41:59 TLS error on connection from mail-fx0-f50.google.com [209.85.161.50] (SSL_CTX_use_PrivateKey_file file=/etc/exim.key): error:0200100D:system library:fopen:Permission denied

If so, how to resolve it?
 
Code:
chown root:mail /etc/exim.key
chmod 640 /etc/exim.key
/etc/init.d/exim restart
 
Last edited:
To test the tls connection you could do:

Code:
openssl s_client -starttls smtp -crlf -connect 1.2.3.4:25

Replace 1.2.3.4 with your actual ip address of your server.

Make sure it fully connects and you dont see timed out or errors.

Type quit once you get to a normal mail prompt.
 
scsi thanks a lot. It solved my problem.

I appreciate your help. Thanks again.
 
Either is fine as long as the mail user can read the file and no user besides root or mail user can read it.

I didnt know there was a KB article or I would have just linked that.
 
Back
Top