README 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. StatusNet AutoSandbox plugin 0.1 03/16/10
  2. =========================================
  3. Automatically sandboxes newly registered users as a spam-management technique.
  4. Only really suits small sites where all users can be hand-moderated. A moderator
  5. will then have to unbox legimate users, using the following built-in script:
  6. ./scripts/userrole.php -n username -r moderator
  7. (replace 'username' with the nickname of the user you wish to make a moderator).
  8. The following note will be added to the top of the Registration form:
  9. "Note you will initially be "sandboxed" so your posts will not appear in the
  10. public timeline."
  11. This can be followed by the following extra information if a contact user (denoted
  12. here by XXX) is specified:
  13. "Send a message to @XXX to speed up the unsandboxing process."
  14. If no contact user is specified, it will default to the "Default subscription" user
  15. who automatically subscribes to new users (set in Admin -> User).
  16. Use:
  17. 1. Add plugin:
  18. Default usage:
  19. addPlugin('AutoSandbox');
  20. Specify a contact user (replace 'someuser' with appropriate username):
  21. addPlugin('AutoSandbox', array('contact' => 'someuser'));
  22. Stop contact user from defaulting to the Defaul subscription:
  23. addPlugin('AutoSandbox', array('contact' => ''));
  24. Changelog
  25. =========
  26. 0.1 initial release