Article
Problem
A Forum reader recently asked:
"I'm trying to create a pushback rule on password changes on a eDir2eDir driver with a distribution password. I have pushback rules working on regular attributes, but I can't get it to work here. Is this possible to do?"
And here's the response from Jeff Johnson ...
Solution
Here is a rule I have on the publisher-matching of an eDir2eDir driver. If a certain criteria is met on this match, the password is pushed back. This may help you.
<rule>
<description>If match found on ADD force Vault password back to NOS if Staff or Faculty</description>
<conditions>
<or>
<if-op-attr mode="nocase" name="StudentADD" op="equal">true</if-op-attr>
</or>
<or>
<if-op-attr mode="nocase" name="eduPersonAffiliation" op="equal">staff</if-op-attr>
<if-op-attr mode="nocase" name="eduPersonAffiliation" op="equal">faculty</if-op-attr>
</or>
</conditions>
<actions>
<do-set-src-password>
<arg-string>
<token-dest-attr class-name="User" name="nspmDistributionPassword"/>
</arg-string>
</do-set-src-password>
<do-break/>
</actions>
</rule>
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
- Be the first to comment! To leave a comment you need to Login or Register
- 2795 reads


0