A second qmail instance on SME Server, see https://wiki.contribs.org/AltQmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
279 B
10 lines
279 B
11 years ago
|
#!/bin/sh
|
||
|
|
||
|
PORT=$(/sbin/e-smith/db configuration getprop altqmail-smtpd TCPPort)
|
||
|
|
||
|
exec \
|
||
|
/usr/bin/env - PATH="/var/qmail/bin:/bin:/usr/bin:/usr/local/bin" \
|
||
|
tcpsvd -vv 127.0.0.1 ${PORT:-27} \
|
||
|
chpst -u qmails -/ ../altqmail/root /var/qmail/bin/qmail-smtpd \
|
||
|
2>&1
|