使用收件人过滤器将联系人添加到多个地址列表

Adding contact to multiple address lists with recipientfilter

是否有正确的方法将用户添加到多个地址列表,只对用户使用一个 extensionAttribute?

我目前正在创建一些地址列表供我们的员工使用。

假设我有一个名为“CompanyA”和“CompanyB”的地址列表 然后我有一个用户需要在“CompanyA”和“CompanyB”中显示。

我目前已经为每个地址列表创建了一个收件人过滤器

公司A:

-RecipientFilter "(CustomAttribute14 -like 'CompanyA')"

公司 B:

-RecipientFilter "(CustomAttribute14 -like 'CompanyB')"

然后我在 AD 中找到了用户,找到了 extentionAttribute14 并添加了值 CompanyA; CompanyB 希望分隔符 ;将使它读取每个列表的两个值。

我发现这不起作用,我想我需要重做地址列表上的过滤器,但我找不到任何关于从哪里开始或如何处理这些过滤器的提示。

我当然可以

-RecipientFilter "(CustomAttribute14 -like 'CompanyB') or (CustomAttribute14 -like 'CompanyA')"

然而,这会将具有任一值的所有用户都纳入此列表。

正如 Mathias 所写,我缺少要过滤的名称前后的通配符标签。

Filter would have to be -like '*CompanyA*' since the attribute now contains more than just the single string – Mathias R. Jessen