我将使用 LDAP 为我的电子邮件发布证书。我已经在 Windows 2012 上启动并运行了 LDAP (AD LDS)。我将使用 ldif 文件添加记录。
这里是它的内容
dc: dc=mysubdomain,dc=mydomain,dc=com
dn: dc=mysubdomain,dc=mydomain,dc=com
objectClass: top
objectClass: domain
dc: mydomain
dc: mysubdomain
description: Some root stuff
dn: ou=mysubdomaincertificates,dc=mysubdomain,dc=mydomain,dc=com
objectClass: top
objectClass: organizationalUnit
ou: mysubdomaincertificates
dn: Mail=test@mysubdomain.mydomain.com,ou=mysubdomaincertificates,dc=mysubdomain,dc=mydomain,dc=com
objectClass: top
objectClass: person
objectClass: inetOrgPerson
cn: Test Test
sn: Test
Mail: test@mysubdomain.mydomain.com
userSMIMECertificate: #<What to put?>
我一直在编译我的 ldif 文件。据我了解,我需要在 Base64 中添加一些二进制编码,并带有一些前缀 {CERT} 或其他东西。
我的问题是
- 这个 ldif 文件会对目录进行修改吗?
userSMIMECertificate
除了领域 ,我有问题吗?- 例如,我在域对象中使用了 dc 两次,可以吗?
- 我错过了其他重要的线路吗?
- 将证书内容放入的确切语法是什么
userSMIMECertificate
?(我已经进行了搜索,但找不到示例)