New user config options for sqwebmail
PR: 44888 Submitted by: Scott Lampert <scott@lampert.org>
This commit is contained in:
parent
7e3ac56c12
commit
94972d6fdb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72806
1 changed files with 17 additions and 0 deletions
|
@ -43,6 +43,11 @@ IMAGEURL?= ${WEBDATASUBDIR}
|
|||
# set WITH_TIMEOUTSOFT to something other than 1200 seconds (20m)
|
||||
# set VCHKPW to the home of the vpopmail user, if necessary
|
||||
#
|
||||
# The following settings are in bytes:
|
||||
# set WITH_MAXMSGSIZE to max size of messages (including attachments)
|
||||
# set WITH_MAXARGSIZE to max size of a text message (excluding attachments)
|
||||
# set WITH_MAXFORMARGSIZE to max size of attachments
|
||||
|
||||
|
||||
CACHEDIR?= /var/sqwebmail/cache
|
||||
CACHEOWNER?= bin
|
||||
|
@ -128,6 +133,18 @@ CONFIGURE_ARGS+= --enable-hardtimeout=${WITH_TIMEOUTHARD}
|
|||
CONFIGURE_ARGS+= --enable-softtimeout=${WITH_TIMEOUTSOFT}
|
||||
.endif
|
||||
|
||||
.if defined(WITH_MAXMSGSIZE)
|
||||
CONFIGURE_ARGS+= --with-maxmsgsize=${WITH_MAXMSGSIZE}
|
||||
.endif
|
||||
|
||||
.if defined(WITH_MAXARGSIZE)
|
||||
CONFIGURE_ARGS+= --with-maxargsize=${WITH_MAXARGSIZE}
|
||||
.endif
|
||||
|
||||
.if defined(WITH_MAXFORMARGSIZE)
|
||||
CONFIGURE_ARGS+= --with-maxformargsize=${WITH_MAXFORMARGSIZE}
|
||||
.endif
|
||||
|
||||
MANPREFIX= ${PREFIX}/share/sqwebmail
|
||||
MAN1= maildirmake.1
|
||||
MAN7= authlib.7
|
||||
|
|
Loading…
Reference in a new issue