aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rwxr-xr-xpostfix/update_aliases.sh7
2 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 75b4d3a..adb4860 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,7 @@ postfix
|- aliases address aliases
|- protected_destinations destionations only reachable by insiders
|- insiders insider addresses
+|- update_aliases.sh script to compile aliases, insiders and protected_destinations, load them and reload postfix
dovecot
|- dovecot.conf dovecot config
gnu-mailutils
diff --git a/postfix/update_aliases.sh b/postfix/update_aliases.sh
new file mode 100755
index 0000000..35b9ace
--- /dev/null
+++ b/postfix/update_aliases.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+postmap /etc/postfix/insiders
+postmap /etc/postfix/protected_destinations
+postalias /etc/aliases
+newaliases
+postfix reload
+