Hi, I have a similar setup and got it to work with 0.9.22-3 and a patch against /sbin/mount.crypt. The problem is that mount calls mount.crypt dev mntpt -o options but mount.crypt only recognizes options if -o is the first argument. Maybe you can try this fix until JÃrg's patch is up again. This is not the best solution, but it works for me.
--- mount.crypt.org 2005-03-05 03:38:23.000000000 +0100 +++ mount.crypt 2005-03-06 16:14:04.000000000 +0100 @@ -76,6 +76,10 @@ exit 1 fi +if [ "$3" = -o ]; then + options=$4 +fi + cipher="" keysize="" hash="" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]