https://bugzilla.novell.com/show_bug.cgi?id=476990 Summary: Domain users home is allways in uppercase Classification: openSUSE Product: openSUSE 11.1 Version: Final Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Samba AssignedTo: samba-maintainers@SuSE.de ReportedBy: Joachim.Reichelt@helmholtz-hzi.de QAContact: samba-maintainers@SuSE.de Found By: --- User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.9.1b3pre) Gecko/20090216 Shiretoko/3.1b3pre All former samba servers in ADS mode used for user jo in ADS domain ads ads\jo as login now I have ADS\JO and as this was /is the LINUX user jo, the home is not found any longer. I only can translate JO -> jo by a small script mapuser.sh #!/bin/bash # IMPORTANT: Do not use /bin/sh - its 'echo' will interpret backslash # escapes, and it cannot be used for this script. Bash's echo with '-E' # or GNU's /bin/echo, also with -E, will work. # Uncomment this line for debugging. #logger $0 received $@ echo $0 received "$@" >> /tmp/`basename $0` if [ "x$1" != "x" ]; then # The goal is to remove domain identifiers and leave only the username. # Examples: # # jswink => jswink # UCMERCED\jswink => jswink # UCMERCED\jswink@ucmerced.edu => jswink (Note: Macintosh sends this) # jswink@ucmerced.edu => jswink USERNAME=`/bin/echo -E $1 | sed -e 's/^.*+//' | sed -e 's/@.*$//'| tr '[A-Z]' '[a-z]'` case ${USERNAME} in administrator) echo root ;; *) echo ${USERNAME} esac fi But that does not affect the dir Reproducible: Always Steps to Reproduce: see datails Actual Results: '/nero/JO' does not exist or permission denied when connecting to [JO] Error was Datei oder Verzeichnis nicht gefunden -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.