I would like to use internet email address as unique identified. For eg CN=abc@yahoo.com/o=sandbox. The LDAP authentication works fine. But NAB does not interpret the full name. Instead if I remove the “@” then it appears under proper organization. this is my code. How do I make Notes to recognize the name with @.
@If(@TextToNumber(@Version)< 171 ; @Trim(FullName);
@If( @IsVirtualizedDirectory;
@If(@Name([O];@Subset(FullName;1)) = "";
@Explode(@Subset(FullName;1) + "/" + @Name([O];FullName) + ";" + @Subset(FullName;-(@Elements(FullName) - 1));";" );
@Trim(FullName)
);
@Trim(FullName)
)
)
Thanks
Sumana
Subject: NAB - Using Internet Email Address as CN
I would like to use internet email address as unique identified. For eg CN=abc@yahoo.com/o=sandbox. The LDAP authentication works fine. But NAB does not interpret the full name. Instead if I remove the “@” then it appears under proper organization. this is my code. How do I make Notes to recognize the name with @.
The name must be properly escaped in your directory’s NAME fields. Please see the special characters table in the"Domino Directory FAQ" (google it)
@If(@TextToNumber(@Version)< 171 ; @Trim(FullName);
@If( @IsVirtualizedDirectory;
@If(@Name([O];@Subset(FullName;1)) = "";
@Explode(@Subset(FullName;1) + "/" + @Name([O];FullName) + ";" + @Subset(FullName;-(@Elements(FullName) - 1));";" );
@Trim(FullName)
);
@Trim(FullName)
)
)
Don’t mess with the $Users view if that is what you are doing.
Subject: NAB - Using Internet Email Address as CN
from admin help when naming users:
- This name may include alpha characters (A - Z), numbers (0 - 9), and the ampersand (&), dash (-), period (.), space ( ) , and underscore (_).
Subject: RE: NAB - Using Internet Email Address as CN
Paul,Thanks. But does it mean I cant use email address as login? We cant change the user login for all the webusers. My fullname is name including @.
Thanks
Sumana