2006-02-23 15:26:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-04-29 23:28:01 +02:00
|
|
|
cd /usr/lib/postfix
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
/bin/sh post-install \
|
2012-04-29 23:28:01 +02:00
|
|
|
daemon_directory=/usr/lib/postfix \
|
2017-08-20 23:19:44 +02:00
|
|
|
manpage_directory=/usr/share/man \
|
2006-02-23 15:26:10 +00:00
|
|
|
command_directory=/usr/sbin \
|
|
|
|
config_directory=/etc/postfix \
|
|
|
|
setgid_group=postdrop \
|
|
|
|
mail_owner=mail \
|
|
|
|
upgrade-package
|
|
|
|
|
|
|
|
/bin/sh post-install \
|
2012-04-29 23:28:01 +02:00
|
|
|
daemon_directory=/usr/lib/postfix \
|
2006-02-23 15:26:10 +00:00
|
|
|
command_directory=/usr/sbin \
|
|
|
|
config_directory=/etc/postfix \
|
|
|
|
setgid_group=postdrop \
|
|
|
|
mail_owner=mail \
|
|
|
|
create-missing
|
|
|
|
|
|
|
|
/usr/sbin/postalias /etc/postfix/aliases
|
2017-01-25 23:36:46 +01:00
|
|
|
|
|
|
|
for hashfile in virtual relocated access transport; do
|
|
|
|
/usr/sbin/postmap hash:/etc/postfix/"$hashfile"
|
|
|
|
done
|