X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=89bb37e6913cef5d681cb61ee4d69e8f923659dc;hb=55440d5d9d831151bca1534aa61369eee14e0f24;hp=2c4826f23b246eb9310c6151f6cfe831b1d5a012;hpb=d1ed4064c5bf89c8d61c1c5451a1a1b074e8a2ee;p=postfix-cn.git diff --git a/debian/postinst b/debian/postinst index 2c4826f..89bb37e 100755 --- a/debian/postinst +++ b/debian/postinst @@ -81,7 +81,7 @@ postconf -e mynetworks="$mynetworks" # obrisati $mydomain, ako je upgrade sa starije verzije # te srediti mydestination -if dpkg --compare-versions "$2" lt 2.3.8-1; then +if dpkg --compare-versions "$2" lt 2.3.8-2; then mydestination="`postconf -h mydestination`" if echo $mydestination | grep -q ", \$mydomain"; then mydestination="`echo $mydestination | sed 's/, \$mydomain//g'`" @@ -89,6 +89,9 @@ if dpkg --compare-versions "$2" lt 2.3.8-1; then if ! echo $mydestination | grep -q "localhost.\$mydomain"; then mydestination="$mydestination, localhost.\$mydomain" fi + if ! echo $mydestination | grep -q "\$myhostname"; then + mydestination="\$myhostname, $mydestination" + fi postconf -e mydestination="$mydestination" fi