generated from smedev/Template-for-SMEServer-Core-Package
Jean-Philippe Pialasse
23c9a3a595
- fix catch-all behaviour [SME: 12382] myorigin now is hostname in case email sent outside by deamon generic rewrite occurs
16 lines
667 B
Bash
Executable File
16 lines
667 B
Bash
Executable File
#!/bin/bash
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/virtual
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/sasl_passwd
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/transport
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/generic
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/main.cf
|
|
/usr/sbin/e-smith/expand-template /etc/postfix/master.cf
|
|
# sensitive file, we want to be sure.
|
|
touch /etc/postfix/sasl_passwd.db
|
|
chmod 0600 /etc/postfix/sasl_passwd.db
|
|
chown root:root /etc/postfix/sasl_passwd.db
|
|
/usr/sbin/postmap /etc/postfix/virtual
|
|
/usr/sbin/postmap /etc/postfix/sasl_passwd
|
|
/usr/sbin/postmap /etc/postfix/transport
|
|
/usr/sbin/postmap /etc/postfix/generic
|