1e3136a0d0
plugin dir, config dir, spool dir, all have different logic about where/how to find their config. The logic needs some untangling and unification before attempting this again.
24 lines
483 B
Bash
Executable File
24 lines
483 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
QPUSER=smtpd
|
|
# limit qpsmtpd to 300MB memory
|
|
MAXRAM=300000000
|
|
BIN=/usr/local/bin
|
|
PERL=/usr/bin/perl
|
|
IP=0.0.0.0
|
|
LANG=C
|
|
|
|
# See also: http://wiki.qpsmtpd.org/deploy:start
|
|
|
|
exec 2>&1 \
|
|
sh -c "
|
|
exec $BIN/softlimit -m $MAXRAM \
|
|
$PERL -T ./qpsmtpd-forkserver \
|
|
--listen-address $IP \
|
|
--port 25 \
|
|
--port 587 \
|
|
--limit-connections 15 \
|
|
--max-from-ip 5 \
|
|
--user $QPUSER
|
|
"
|