Add WITH_SHY_ENABLED knob which prevents qpopper from presenting

its version number within the POP3 session

Submitted by:	Alessandro de Manzano <ale@unixmania.net>
This commit is contained in:
Mario Sergio Fujikawa Ferreira 2003-10-01 13:04:59 +00:00
parent 47034bd47f
commit 8bfdbce892
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=89971

View file

@ -79,6 +79,8 @@ pre-everything::
@${ECHO_MSG} "WITHOUT_QPOPAUTH_SETUID=yes does not install qpopauth setuid to pop user"
@${ECHO_MSG} "WITH_SAMPLE_POPUSERS_FILE=yes builds a default (otherwise,"
@${ECHO_MSG} " use an empty file) reject file"
@${ECHO_MSG} "WITH_SHY_ENABLED=yes enables shy mode, don't present"
@${ECHO_MSG} " qpopper version number in POP3 session"
@${ECHO_MSG} "WITH_STANDALONE_MODE=yes builds qpopper to be run without inetd"
@${ECHO_MSG} "WITHOUT_U_OPTION=yes forbids daemon command line option"
@${ECHO_MSG} " -u which allows, after a user authenticates,"
@ -132,6 +134,12 @@ EPOPPASSD= ""
EPOPPASSD= "@comment "
.endif
# If WITH_SHY_ENABLED variable present, qpopper does not present
# its version number within the POP3 session
.if defined(WITH_SHY_ENABLED)
CONFIGURE_ARGS+= --enable-shy
.endif
# If WITH STANDALONE_MODE variable present qpopper is built so it runs
# without inetd
.if defined(WITH_STANDALONE_MODE)