generated from smedev/Template-for-SMEServer-Core-Package
Jean-Philippe Pialasse
aa8479eaa9
- listen only via sockets - use both unix user and virtual users - groups and pseudonyms implemented in virtual maps - support smarthost with and without auth - support global and per domain delegated mail server - support ssl - uses qmail - recipient delimiter in left part of email. - all domains set as local domains in mydestination - message_size_limit - local and remote concurency limit
13 lines
486 B
Bash
Executable File
13 lines
486 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
|
|
# 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/postfix reload
|