OSDN Git Service

Ver1.5.30 Added code to remove cookie at deny.
[opengate/opengate.git] / opengate / conf / opengatesrv.conf.sample
index e0da257..3fed7d5 100644 (file)
        entered as [userID@extraID] in userID field on auth page.
        
        Each <ExtraSet> has conditions such as <.. ExtraId="aaa"> or 
-       <.. UserIdPattern="bbb">.
+       <.. UserIdPattern="bbb">, or etc.
        The conditions is compared with the string entered in 
        userID field.
 
        When you set the condition as <.. ExtraId="aaa">, 
-       the string [any_user@aaa] is matched and the ExtraSet is used.
+        [extraId] equal to [aaa] is matched (eg, xx@aaa).
                
        When you set the condition as <.. UserIdPattern="bbb">,
-       the string [any_bbb_any] is matched.
-       UserIdPattern has the form of "POSIX Extended Regular Expression".
+        [userId] including [bbb] is matched (eg, xbbbx@xx).
+
+       When you set the condition as <.. UserExtraPattern="bbb">,
+        [userId@extraId] including [bbb] is matched (eg, xbbbx@xx, aa@xbbbx).
+
+       When you set the condition as <.. UserExtraPatternNot="bbb">,
+        string NOT including [bbb] is matched.
+
+       Pattern has the form of "POSIX Extended Regular Expression".
        Matching is insensitive to upper/lower case.
        
-       The <ExtraSet> having both conditions is used when both are true.
+       The <ExtraSet> having multi-conditions is used when both are true.
        Omitted condition matched to every string. 
 
        The first matched <ExtraSet> is used, at existing many matched set.