diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/qpopper/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index 35b43b14f715..339a26c2c74e 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -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) |