Ok Florian!
What I missed and didn't see were the sxconfig command you had run, if you refer to the
manual installation page, the three commands that you should have run were given as
example there.
So instead of the commands you used to add rules:
sxconfig --set -t general.usrl_cn_rule='Edlhuber, Florian'
sxconfig --set -t general.usrl_authid_rule='fe@'
sxconfig --set -t orniasys.name_part_1='"Florian Edlhuber" <Florian.Edlhuber>' -t orniasys.domain_part_1='edlhuber.net'
you had to create rules using the commands as below:
sxconfig --set -t general.usrl_cn_rule='S, G'
sxconfig --set -t general.usrl_authid_rule='gs@'
sxconfig --set -t orniasys.name_part_1='"C" <G.S>' -t orniasys.domain_part_1='edlhuber.net'
but, before you run the above three commands, you need to remove the rules that have
been already created for
general.usrl_cn_rule, general.usrl_authid_rule and
orniasys.name_part_1.
sxconfig creates generic rules for various system dependent properties, like what
would be the format for Comman Name (CN) display, what should be the AuthID creation
rule (general.usrl_authid_rule) etc. those are all standards. The details about the attribute
used as standards are as below:
The following is a list of user attributes you can use in those rules:
G represents the given name in mixed/original casing
S represents the surname in mixed/original casing
I represents the middle initial(s) in mixed/original casing
C represents the common name/display name in mixed/original casing (this cannot be used in the display name generation)
g, s, i and c represent the first character of the given name/surname/initials/common name in lower case
f and l represent the full given name/last name in lowercase
To see the rules that you currently have, use the commands below:
for general.usrl_cn_rule:
Code: Select all
sxconfig --get -t general.usrl_cn_rule
for general.usrl_authid_rule:
Code: Select all
sxconfig --get -t general.usrl_authid_rule
for orniasys.name_part_1:
Code: Select all
sxconfig --get -t orniasys.name_part_1
remove these, using the commands below, before you add the new rules:
for general.usrl_cn_rule:
Code: Select all
sxconfig --remove -t general.usrl_cn_rule
for general.usrl_authid_rule:
Code: Select all
sxconfig --remove -t general.usrl_authid_rule
for orniasys.name_part_1:
Code: Select all
sxconfig --remove -t orniasys.name_part_1
Please reply with the current result of the command "omshowmn", this command would
display the mailnode, on which the System users, groups or resources are dependent
this should result in only one value, it would be great if you delete all mailnodes using
omdelmn, and create only one that you want to set for your server, so for example
you can create a mailnode by the command:
Please feel free to reply for any further consultation or you want to clear any doubts.
Thanks,
Subir