diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 21:43:50 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 21:43:50 +0800 |
commit | cb13170c8e9493c8dc0cb11f6ad633a26b5e80e8 (patch) | |
tree | 64dadfa0590128c1275fa21d2f33c89176076801 /mail/exim/files | |
parent | 97c127c4ffa0353fabe8893e9149fa61bd5bda41 (diff) | |
download | freebsd-ports-gnome-cb13170c8e9493c8dc0cb11f6ad633a26b5e80e8.tar.gz freebsd-ports-gnome-cb13170c8e9493c8dc0cb11f6ad633a26b5e80e8.tar.zst freebsd-ports-gnome-cb13170c8e9493c8dc0cb11f6ad633a26b5e80e8.zip |
Untangle the mess I made of SMTP AUTH authentication mechanisms.
AUTH_CRAM_MD5 and AUTH_PLAINTEXT support have nothing to do with PAM,
other than that all three can be used as authentication mechanisms
for SMTP AUTH.
Enable all three by default, so that the package includes them.
Diffstat (limited to 'mail/exim/files')
-rw-r--r-- | mail/exim/files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/exim/files/Makefile b/mail/exim/files/Makefile index 4ca6f7eba250..1897ee815f50 100644 --- a/mail/exim/files/Makefile +++ b/mail/exim/files/Makefile @@ -93,8 +93,8 @@ # appropriate code is included in the binary. You then need to set up the # runtime configuration to make use of the mechanism(s) selected. -AUTH_CRAM_MD5=yes -AUTH_PLAINTEXT=yes +# AUTH_CRAM_MD5=yes +# AUTH_PLAINTEXT=yes # The binary directory: This variable defines where the exim binary will be @@ -514,7 +514,7 @@ SPOOL_DIRECTORY=/var/spool/exim # support, which is intended for use in conjunction with the SMTP AUTH # facilities, is included only when requested by the following setting: -SUPPORT_PAM=yes +# SUPPORT_PAM=yes # You probably need to add -lpam to EXTRALIBS, and in some releases of # GNU/Linux -ldl is also needed. |