mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-29 04:17:07 +00:00
9 lines
162 B
Bash
9 lines
162 B
Bash
#!/bin/bash
|
|
|
|
# Read config file if it is present.
|
|
if [ -r /etc/default/postgrey ]
|
|
then
|
|
. /etc/default/postgrey
|
|
fi
|
|
|
|
exec /usr/sbin/postgrey $POSTGREY_OPTS 2>&1 |