cda8379
--- exim-4.43/src/configure.default.pam	2004-12-16 13:27:55.000000000 +0000
cda8379
+++ exim-4.43/src/configure.default	2004-12-16 15:41:34.000000000 +0000
5bfed37
@@ -160,7 +160,7 @@ acl_smtp_data = acl_check_data
cda8379
 
5bfed37
 # Allow any client to use TLS.
cda8379
 
5bfed37
-# tls_advertise_hosts = *
cda8379
+tls_advertise_hosts = *
5bfed37
 
5bfed37
 # Specify the location of the Exim server's TLS certificate and private key.
5bfed37
 # The private key must not be encrypted (password protected). You can put
5bfed37
@@ -168,8 +168,8 @@ acl_smtp_data = acl_check_data
5bfed37
 # need the first setting, or in separate files, in which case you need both
5bfed37
 # options.
5bfed37
 
5bfed37
-# tls_certificate = /etc/ssl/exim.crt
5bfed37
-# tls_privatekey = /etc/ssl/exim.pem
c11786b
+tls_certificate = /etc/pki/tls/certs/exim.pem
c11786b
+tls_privatekey = /etc/pki/tls/private/exim.pem
5bfed37
 
5bfed37
 # In order to support roaming users who wish to send email from anywhere,
5bfed37
 # you may want to make Exim listen on other ports as well as port 25, in
5bfed37
@@ -180,8 +180,8 @@ acl_smtp_data = acl_check_data
5bfed37
 # them you should also allow TLS-on-connect on the traditional but
5bfed37
 # non-standard port 465.
5bfed37
 
5bfed37
-# daemon_smtp_ports = 25 : 465 : 587
5bfed37
-# tls_on_connect_ports = 465
5bfed37
+daemon_smtp_ports = 25 : 465 : 587
5bfed37
+tls_on_connect_ports = 465
5bfed37
 
5bfed37
 
5bfed37
 # Specify the domain you want to be added to all unqualified addresses
5bfed37
@@ -238,6 +238,24 @@
5bfed37
 
5bfed37
 timeout_frozen_after = 7d
5bfed37
 
cda8379
+# This setting, if uncommented, allows users to authenticate using
cda8379
+# their system passwords against saslauthd if they connect over a
cda8379
+# secure connection. If you have network logins such as NIS or
cda8379
+# Kerberos rather than only local users, then you possibly also want
cda8379
+# to configure /etc/sysconfig/saslauthd to use the 'pam' mechanism
cda8379
+# too. Once a user is authenticated, the acl_check_rcpt ACL then
cda8379
+# allows them to relay through the system. 
cda8379
+#
cda8379
+# auth_advertise_hosts = ${if eq {$tls_cipher}{}{}{*}}
cda8379
+#
cda8379
+# By default, we set this option to allow SMTP AUTH from nowhere
cda8379
+# (Exim's default would be to allow it from anywhere, even on an
cda8379
+# unencrypted connection).
cda8379
+#
cda8379
+# Comment this one out if you uncomment the above. Did you make sure
cda8379
+# saslauthd is actually running first?
cda8379
+#
cda8379
+auth_advertise_hosts =
cda8379
 
cda8379
 
cda8379
 ######################################################################
5bfed37
@@ -850,7 +837,7 @@ begin authenticators
5bfed37
 #  driver                     = plaintext
5bfed37
 #  server_set_id              = $auth2
5bfed37
 #  server_prompts             = :
5bfed37
-#  server_condition           = Authentication is not yet configured
5bfed37
+#  server_condition           = ${if saslauthd{{$2}{$3}{smtp}} {1}}
5bfed37
 #  server_advertise_condition = ${if def:tls_cipher }
cda8379
 
5bfed37
 # LOGIN authentication has traditional prompts and responses. There is no
5bfed37
@@ -862,7 +849,7 @@ begin authenticators
5bfed37
 #  driver                     = plaintext
5bfed37
 #  server_set_id              = $auth1
5bfed37
 #  server_prompts             = <| Username: | Password:
5bfed37
-#  server_condition           = Authentication is not yet configured
5bfed37
+#  server_condition           = ${if saslauthd{{$1}{$2}{smtp}} {1}}
5bfed37
 #  server_advertise_condition = ${if def:tls_cipher }
cda8379
 
cda8379