<?xml version="1.0" ?>
<domain-auth xmlns:tal="http://xml.zope.org/namespaces/tal"
       title="PLUGIN TITLE"
       tal:define="info options/info"
       tal:attributes="title info/title;
                      ">
 <user user_id="USERID"
       tal:repeat="user_id info/map"
       tal:attributes="user_id user_id"
       >
  <match username="USERNAME"
         match_type="MATCH_TYPE"
         match_string="MATCH_STRING"
         roles="ROLE1,ROLE2"
         tal:repeat="match info/map/?user_id"
         tal:attributes="username match/username;
                         match_type match/match_type;
                         match_string match/match_string;
                         roles match/roles
                        " />
 </user>
</domain-auth>
