]> git.pld-linux.org Git - packages/exim.git/commitdiff
- added some commented examples (based on Connectiva Linux :)
authorwaszi <waszi@pld-linux.org>
Thu, 22 Mar 2001 12:41:22 +0000 (12:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    exim.conf -> 1.5

exim.conf

index c07baf473676bcc18374093d3b3f4b5eee8cdade..cbd35287228a5e2c6e1fa446eee5037226878e29 100644 (file)
--- a/exim.conf
+++ b/exim.conf
@@ -97,6 +97,31 @@ host_accept_relay = localhost
 # See the section of the manual entitled "Control of relaying" for more
 # information.
 
+# The information bellow is used for configuring exim to use SMTP AUTH
+# NOTICE: You will need to set "exim_user" to "root" for this to work
+#
+# If you want to permit relay for some hosts, but they need to authenticate:
+# host_auth_accept_relay = *
+#
+# If you want the some hosts to require authentication for anything:
+# auth_hosts = *
+#
+# This is the configuration for SSL/TLS support
+#
+# Which hosts you want exim to advertise the support for TLS to
+#
+# tls_advertise_hosts = *
+#
+# The full path to the certificate and private keys (you will need to
+# create these using openssl)
+#
+# tls_certificate = /var/lib/openssl/certs/exim.pem
+# tls_privatekey = /var/lib/openssl/certs/exim.pem
+#
+# Hosts that NEED to use tls to connect
+#
+# tls_hosts = foo.bar
+#
 
 # The setting below causes Exim to do a reverse DNS lookup on all incoming
 # IP calls, in order to get the true host name. If you feel this is too
@@ -377,5 +402,28 @@ end
 ######################################################################
 
 # There are no rewriting specifications in this default configuration file.
+end
+
+######################################################################
+#                   AUTHENTICATION CONFIGURATION                     #
+######################################################################
+
+# There are no authenticator specifications in this default configuration file.
+# This authentication rules uses PAM. See the documentation for other methods
+
+#plain:
+#  driver = plaintext
+#  public_name = PLAIN
+#  server_condition = "${if pam{$2:$3}{1}{0}}"
+#  server_set_id = $2
+
+#login:
+#  driver = plaintext
+#  public_name = LOGIN
+#  server_prompts = "Username:: : Password::"
+#  server_condition = "${if pam{$2:$3}{1}{0}}"
+#  server_set_id = $1
+  
 
 # End of Exim configuration file
+
This page took 0.088884 seconds and 4 git commands to generate.