diff options
author | friendica <info@friendica.com> | 2013-09-18 17:47:26 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-18 17:47:26 -0700 |
commit | e4d2e2200e04c8df699d9a8efade661123ef7ac8 (patch) | |
tree | eb97cdeb19f72ef9dbddf5074510bf9f82f50632 /view/en/htconfig.tpl | |
parent | e06b4c6dfc0b3419f35dd8d42770d1c983523830 (diff) | |
download | volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.gz volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.bz2 volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.zip |
add "tiered" access policy, add tagcloud to directory pages
Diffstat (limited to 'view/en/htconfig.tpl')
-rw-r--r-- | view/en/htconfig.tpl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index 3e1269441..4896376e5 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -47,16 +47,22 @@ $a->config['system']['admin_email'] = '{{$adminmail}}'; // Site access restrictions. By default we will create private sites. -// Your choices are ACCESS_PRIVATE, ACCESS_PAID, and ACCESS_FREE. +// Your choices are ACCESS_PRIVATE, ACCESS_PAID, ACCESS_TIERED, and ACCESS_FREE. // If you leave REGISTER_OPEN above, anybody may register on your // site, however your site will not be listed anywhere as an open // registration hub. We will use the system access policy (below) // to determine whether or not to list your site in the directory // as an open hub where anybody may create accounts. Your choice of -// paid or free determines how these listings will be presented. +// paid, tiered, or free determines how these listings will be presented. + $a->config['system']['access_policy'] = ACCESS_PRIVATE; +// If you operate a public site, you might wish that people are directed +// to a "sellpage" where you can describe for features or policies or service plans in depth. +// This must be an absolute URL beginning with http:// or https:// . + +$a->config['system']['sellpage'] = ''; // Maximum size of an imported message, 0 is unlimited |