if module_installed postfix 
then
   if [ -e /tmp/postfix/main.cf ]; then
        rm -Rf /tmp/postfix
   fi
   cp -a /etc/postfix /tmp
   /etc/init.d/postfix stop
   true
fi
