Remove all bashisms; drop grml-muttng
[grml-scripts-core.git] / usr_bin / grml-config-user
index db261be..6882a31 100755 (executable)
@@ -4,7 +4,6 @@
 # Authors:       grml-team (grml.org), (c) Nico Golde <nico@grml.org>, (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Mon Dec 05 11:12:49 CET 2005 [mika]
 ################################################################################
 
 PATH=${PATH:-'/bin/:/sbin/:/usr/bin:/usr/sbin'}
@@ -17,7 +16,6 @@ allover() {
 MENU=$($DIALOG --stdout --clear --title "$PN" --menu \
 "Configure userland tools." 0 0 0 \
 "grml-mutt" "Configure the mutt MUA" \
-"grml-muttng" "Configuration of mutt next generation" \
 "grml-slrn" "Configure the slrn newsreader" \
 "exit" "Exit this program")
 
@@ -25,16 +23,13 @@ retval=$?
 
 case $retval in
   0)
-        if [ $MENU == grml-mutt ]; then
+        if [ "$MENU" = "grml-mutt" ]; then
           exec grml-mutt
         fi
-        if [ $MENU == grml-muttng ]; then
-          exec grml-muttng
-        fi
-        if [ $MENU == grml-slrn ]; then
+        if [ "$MENU" = "grml-slrn" ]; then
           exec grml-slrn
         fi
-        if [ $MENU == exit ]; then
+        if [ "$MENU" = "exit" ]; then
           exit
         fi
         ;;