ページ ツリー

比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

つまり、利用者は「フルネーム」や「メール」を自由に変更できますが、次回ログイン時に、「フルネーム」は上記選択により常に、「メール」はIdPからmail属性が送信される場合に限り、自動的に上書きされます。

Shibboleth IdPのattribute-filter.xmlの設定例は以下を参照してください。設定例となっていますので、所属機関IdPの他の設定に合わせて修正してご利用ください。

コード ブロック
    <!-- Policy for meatwiki -->
    <AttributeFilterPolicy id="PolicyforMeatwiki">
        <PolicyRequirementRule xsi:type="Requester" value="https://meatwiki.nii.ac.jp/shibboleth-sp" />

        <AttributeRule attributeID="eduPersonPrincipalName">
            <PermitValueRule xsi:type="ANY" />
        </AttributeRule>
        <AttributeRule attributeID="displayName">
            <PermitValueRule xsi:type="ANY" />
        </AttributeRule>
        <AttributeRule attributeID="mail">
            <PermitValueRule xsi:type="ANY" />
        </AttributeRule>
    </AttributeFilterPolicy>

その他meatwikiに関する雑記

...