smtp server with ssl

Yes, it's a set of Perl functions, which are used by Exim. And probably it does not need to be executable (should be verified).
 
I just changed all my exim files to root:mail and 640 and it seems to be working fine.
 
So... first problem completely solved.

But now I have another one. :D

What I have to modify in exim.conf to allow only tls connection? Because now it accept both (tls and normal).

Thank you
 
Hello,

I still have the same problem. Googling I found this:

Code:
acl_check_auth:
  accept encrypted = *
  accept condition = ${if eq{${uc:$smtp_command_argument}}\
                     {CRAM-MD5}}
  deny   message   = TLS encryption or CRAM-MD5 required

Yuo can find more, here: http://www.exim.org/exim-html-current/doc/html/spec_html/ch40.html
Exactly on point 15.

But I didn't understand where i have to add these lines in my exim.conf

Can you help me?

Thank you
 
After doing a lot of research, I found here (exim.org) (perhaps the same plaqce you found your ACL, right at the top:
You can have as many lists as you like in the ACL section, and the order in which they appear does not matter. The lists are self-terminating.
But somehow that doesn't seem reasonable to me.

I'd suggest trying it either before or after the helo acl.

Note that both DirectAdmin's and my exim.conf file have ACLs listed in two places; one to give the right name, and the other where you want it to run.

I'm sorry I can't give you more help; perhaps you might want to try asking the exim-users list; subscription information here (exim.org).

Jeff
 
Back
Top