diff options
author | friendica <info@friendica.com> | 2013-08-06 17:15:41 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-06 17:15:41 -0700 |
commit | 99bd0712b6170b337de6d1c31db7c66ad8a18767 (patch) | |
tree | 88c84722833fa1deeea20efc4e1cac3e2f49a0bc /view/en/htconfig.tpl | |
parent | 687ea0ca249b20f790be2dcedc1ca8d60a76135d (diff) | |
download | volse-hubzilla-99bd0712b6170b337de6d1c31db7c66ad8a18767.tar.gz volse-hubzilla-99bd0712b6170b337de6d1c31db7c66ad8a18767.tar.bz2 volse-hubzilla-99bd0712b6170b337de6d1c31db7c66ad8a18767.zip |
Add a site access policy (to determine if this is really a public site or just an open site) and add an orphan flag to xchans in case all their hublocs go away. Get rid of a couple of DO NOT EDIT template messages which were still lurking in the tree.
Diffstat (limited to 'view/en/htconfig.tpl')
-rw-r--r-- | view/en/htconfig.tpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index 493cb5d00..0417e9af2 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -33,6 +33,7 @@ $a->config['system']['baseurl'] = '{{$siteurl}}'; $a->config['system']['sitename'] = "Red Matrix"; $a->config['system']['location_hash'] = '{{$site_id}}'; + // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. // Be certain to create your own personal account before setting // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on @@ -44,6 +45,19 @@ $a->config['system']['register_policy'] = REGISTER_OPEN; $a->config['system']['register_text'] = ''; $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. +// 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. + +$a->config['system']['access_policy'] = ACCESS_PRIVATE; + + // Maximum size of an imported message, 0 is unlimited $a->config['system']['max_import_size'] = 200000; |