Mercurial > masqmail
comparison configure.ac @ 204:5745edd5b769
removed the --disable-smtp-server configure option
masqmail will now always have the possibility to listen on a port compiled in
if you don't want it to listen on a port add this to your masqmail.conf:
listen_addresses = ""
also, if you don't start it as daemon it will not listen neither
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 15:38:53 +0200 |
parents | 45acc5727493 |
children | 4fd237550525 |
comparison
equal
deleted
inserted
replaced
203:45acc5727493 | 204:5745edd5b769 |
---|---|
120 | 120 |
121 dnl optional features | 121 dnl optional features |
122 MD5_LIBS='' | 122 MD5_LIBS='' |
123 BASE64_LIBS='' | 123 BASE64_LIBS='' |
124 | 124 |
125 dnl smtp server support (default is use it) | |
126 AC_ARG_ENABLE(smtp_server, | |
127 [ --disable-smtp-server disable smtp server support], | |
128 if test "x$enable_smtp_server" != 'xno'; then | |
129 smtp_server_enabled='yes' | |
130 fi, | |
131 smtp_server_enabled='yes' | |
132 ) | |
133 if test "x$smtp_server_enabled" = xyes; then | |
134 AC_DEFINE(ENABLE_SMTP_SERVER, 1, [If the SMTP server is enabled]) | |
135 fi | |
136 | |
137 dnl auth support (default is to not use it) | 125 dnl auth support (default is to not use it) |
138 AC_ARG_ENABLE(auth, | 126 AC_ARG_ENABLE(auth, |
139 [ --enable-auth enable AUTH (RFC 2554) client support], | 127 [ --enable-auth enable AUTH (RFC 2554) client support], |
140 if test "x$enable_auth" != 'xno'; then | 128 if test "x$enable_auth" != 'xno'; then |
141 auth_enabled='yes' | 129 auth_enabled='yes' |