Skip to content

Commit

Permalink
Add "Page size" setting for two-level LDAP data source
Browse files Browse the repository at this point in the history
  • Loading branch information
farialima committed Nov 18, 2023
1 parent 993d819 commit c428181
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/lib/Sympa/Config/Schema.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3471,11 +3471,11 @@ our %pinfo = (
context => [qw(list)],
order => 12,
gettext_comment =>
'Number of records to fetch per page, for a LDAP server that supports paging. If not set or set to zero, do not use paging. Typically 1000 for an Active Directory server, to avoid "SizeLimit" errors if there are more than 1000 records',
'Number of records to fetch per batch (paging), for a LDAP server that supports paging. If not set or set to zero, do not use paging. Typically 1000 for an Active Directory server, to avoid "SizeLimit" errors',
gettext_id => "Page size",
format => '\d*',
length => 6,
}
},
},
occurrence => '0-n'
},
Expand Down Expand Up @@ -3700,7 +3700,16 @@ our %pinfo = (
format_s => '$time_ranges',
occurrence => '0-1',
not_before => '6.2a.16',
}
},
pagesize => {
context => [qw(list)],
order => 12,
gettext_comment =>
'Number of records to fetch per batch (paging), for a LDAP server that supports paging. If not set or set to zero, do not use paging. Typically 1000 for an Active Directory server, to avoid "SizeLimit" errors',
gettext_id => "Page size",
format => '\d*',
length => 6,
},
},
occurrence => '0-n'
},
Expand Down

0 comments on commit c428181

Please sign in to comment.