Logged In: YES
user_id=536689

The module does not alow $ in share name, can fix it with adding \$ in share validation check.

($opt_s) || ($opt_s = shift) || usage("Share volume not specified\n");
my $share = $1 if ($opt_s =~ /([-_.A-Za-z0-9\$]+)/);
($share) || usage("Invalid share: $opt_s\n");

This did the trick for me :)