X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=config.php.sample;h=5378ad973d319ba42f7ae35e1bfaa9ce1a31f9d7;hb=57198a74647f8350db4de03b0b7ef157091a4359;hp=5481ca539e591a10bb1ad0c6d94991bd9aeacb59;hpb=d57e1deaec7406c63f70b8a5664746d18c1125ff;p=quix0rs-gnu-social.git diff --git a/config.php.sample b/config.php.sample index 5481ca539e..5378ad973d 100644 --- a/config.php.sample +++ b/config.php.sample @@ -182,6 +182,29 @@ $config['sphinx']['port'] = 3312; // $config['memcached']['server'] = 'localhost'; // $config['memcached']['port'] = 11211; +// People tags +// Maximum number of tags a user can create: +// $config['peopletag']['maxtags'] = 100; +// Maximum number of people can have the same tag by the same user +// $config['peopletag']['maxpeople'] = 500; +// Types of users one can tag. +// Everyone. +// $config['peopletag']['allow_tagging']['all'] = true; +// Local only. +// $config['peopletag']['allow_tagging']['local'] = true; +// Subscriptions / Subscribers only (including remote) +// $config['peopletag']['allow_tagging']['subs'] = true; +// Remote. +// $config['peopletag']['allow_tagging']['remote'] = true; +// Examples: +// The following set of options allows tagging local users and +// remote subscribers / subscription. +// $config['peopletag']['allow_tagging']['all'] = false; +// $config['peopletag']['allow_tagging']['local'] = true; +// $config['peopletag']['allow_tagging']['subs'] = true; +// Or: +// $config['peopletag']['allow_tagging'] = array('local' => true, 'subs' =>true); + // Disable post-by-email // $config['emailpost']['enabled'] = false;