- spajanje konfiguracije sa Postfix listom iz mynetworks
[spamassassin-cn.git] / debian / postinst
index c6e4e1c..e931e54 100755 (executable)
@@ -211,6 +211,14 @@ if [ -f $examdir/local.cf ]; then
             trusted_networks="$trusted_networks $i"
         fi
     done
+    # ... merge with Postfix ranges
+    if [ -x /usr/sbin/postconf ]; then
+        for i in $(postconf -h mynetworks); do
+            if ! echo "$trusted_networks" | grep -q "$i"; then
+                trusted_networks="$trusted_networks $i"
+            fi
+        done
+    fi
     # ... strip 127/8 range
     for i in $trusted_networks; do
         if ! echo "$i" | grep -q "127.0.0.0/8"; then