README 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Plugin to support importing and exporting notices through Atom and RSS feeds.
  2. The OStatus plugin concentrates on user-to-user cases for federating StatusNet
  3. and similar social networking / microblogging / blogging sites, but includes
  4. low-level feed subscription systems which are used by some other plugins.
  5. Uses WebSub (previously named PubSubHubbub or PuSH) for push feed updates;
  6. currently non-WebSub feeds cannot be subscribed unless an external
  7. WebSub hub proxy is used.
  8. Additional functionality:
  9. The RemoteFollow plugin is highly recommended as it is the only way to remote
  10. follow a user in OStatus, it adds a remote follow button to user profiles.
  11. Configuration options available:
  12. $config['ostatus']['hub']
  13. (default internal hub)
  14. Set to URL of an external WebSub hub to use it instead of our internal hub
  15. for sending outgoing updates in user and group feeds.
  16. $config['ostatus']['hub_retries']
  17. (default 0)
  18. Number of times to retry a WebSub send to consumers if using internal hub
  19. Settings controlling incoming feed subscription:
  20. $config['feedsub']['fallback_hub']
  21. To subscribe to feeds that don't have a hub, an external WebSub proxy hub
  22. such as Superfeedr may be used. Any feed without a hub of its own will
  23. be subscribed through the specified hub URL instead. If the external hub
  24. has usage charges, be aware that there is no restriction placed to how
  25. many feeds may be subscribed!
  26. $config['feedsub']['fallback_hub'] = 'https://superfeedr.com/hubbub';
  27. $config['feedsub']['hub_user']
  28. $config['feedsub']['hub_password']
  29. If using the fallback hub mode, these settings may be used to provide
  30. HTTP authentication credentials for contacting the hub. Default hubs
  31. specified from feeds are assumed to not require
  32. For testing, shouldn't be used in production:
  33. $config['ostatus']['skip_signatures']
  34. (default use signatures)
  35. Disable generation and validation of Salmon magicenv signatures
  36. $config['feedsub']['nohub']
  37. (default require hub)
  38. Allow low-level feed subscription setup for feeds without hubs.
  39. Not actually usable at this stage, OStatus will check for hubs too
  40. and we have no polling backend. (The fallback hub option can be used
  41. with a 3rd-party service to provide such polling.)
  42. Todo:
  43. * better support for feeds that aren't natively oriented at social networking
  44. * make use of tags/categories from feeds
  45. * better repeat handling