| 12345678910111213141516 | #!/bin/bashtrap "postfix stop" EXITsed -i "/^user/c\user = ${DBUSER}" /opt/postfix/conf/sql/*sed -i "/^password/c\password = ${DBPASS}" /opt/postfix/conf/sql/*sed -i "/^dbname/c\dbname = ${DBNAME}" /opt/postfix/conf/sql/*postconf -c /opt/postfix/confif [[ $? != 0 ]]; then	echo "Postfix configuration error, refusing to start."	exit 1else	postfix -c /opt/postfix/conf start	sleep infinityfi
 |