Marc Sherman wrote am 30.09.2005 15:45, Uhr:

Oliver Kötter wrote:


OK, from what I understand exim trys to encrypt that message or
something from that communication to the destination server? But why
do all other outgoing mail addresses work? Is there a way to tell
exim not to encrypt anything?


Tony already gave you the answer for how to avoid outgoing TLS, but that's a bandaid -- you should probably fix your entropy problem, or you'll have trouble with anything else you use TLS for on this computer, including encryption for incomming authenticated SMTP (for which disabling TLS would be a big mistake).

OK, wrote

remote_smtp:
 debug_print = "T: remote_smtp for [EMAIL PROTECTED]"
 driver = smtp
 hosts_avoid_tls = *

to my /etc/exim4/conf.d/transport//30_exim4-config_remote_smtp,
did an update-exim4.conf, then an /etc/init.d/exim4 reload and whupps... mail is going out, thanks a lot.

I disabled plain SMTP auth, I use cram_md5, I guess that works OK, does it?
conf.d/main/30_exim4-config_examples:

cram_md5_server:
  driver = cram_md5
  public_name = CRAM-MD5
server_secret = ${extract{2}{:}{${lookup{$1}lsearch{CONFDIR/passwd}{$value}fail}}}
  server_set_id = $1

cram_md5:
 driver = cram_md5
 public_name = CRAM-MD5
client_name = ${extract{1}{:}{${lookup{$host}lsearch*{CONFDIR/passwd.client}{$value}fail}}} client_secret = ${extract{2}{:}{${lookup{$host}lsearch*{CONFDIR/passwd.client}{$value}fail}}}

Everything else is on comment.

Thanks again!

Oliver

--
## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://www.exim.org/eximwiki/

Reply via email to