Uklonjen dio za modificiranje change_pass konfiguracije.
[squirrelmail-change-pass-cn.git] / debian / postinst
index 8319893..3717821 100644 (file)
@@ -50,60 +50,6 @@ if [ $done_backup -eq 1 ]; then
 fi
 
 
-# Remove change_pass configuration files if earlier version is
-# older than 3.0-1.
-#
-if [ "$2" ] && dpkg --compare-versions $2 lt 3.0-1; then
-
-    cp_echo "CN: This version of change_pass plugin contains major changes."
-    for cpconf_file in $SQCPCONF $CPCONF; do
-        if [ -f "$cpconf_file" ] || [ -L "$cpconf_file" ]; then
-            rm -f $cpconf_file
-            cp_echo "CN: Removed old $cpconf_file"
-        fi
-    done
-fi
-
-
-# Check for change_pass configuration files and notify user about
-# minimum password length configuration.
-#
-if egrep -q '^\$plugins\[[0-9]+\][\ ]*=[\ ]*'\''change_pass'\' "$SQCONF"; then
-    /usr/sbin/squirrelmail-configure --remove-plugin change_pass
-fi
-
-if [ ! -f "$SQCPCONF" ]; then
-
-    if [ -f "$CPCONF" ]; then
-        cp -f "$CPCONF" "$SQCPCONF"
-        cp_echo "CN: $CPCONF copied to $SQCPCONF"
-    else
-
-        # Configuration file does not exist.
-        cp_echo "CN: Generating new file $SQCPCONF"
-        cat > "$SQCPCONF" <<EOF
-<?php
-    // The default server is the configured IMAP server
-    #\$poppass_server = 'localhost';
-
-    // The default port is 106
-    #\$poppass_port = 106;
-
-    \$min_pass_length = 8;
-    \$max_pass_length = 9999999;
-EOF
-        min_pass_changed=1
-    fi
-fi
-
-# Just to be sure.
-ln -sf "$SQCPCONF" "$CPCONF"
-
-if [ $min_pass_changed -eq 1 ]; then
-    cp_echo "CN: Minimum password length has been set to 8 characters."
-fi
-
-
 # Enable change_pass plugin in SquirrelMail config.php.
 #
 if ! egrep -q '^\$plugins\[[0-9]+\][\ ]*=[\ ]*'\''change_pass'\' "$SQCONF"; then