README 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. Configuration options available:
  9. $config['ostatus']['hub']
  10. (default internal hub)
  11. Set to URL of an external WebSub hub to use it instead of our internal hub
  12. for sending outgoing updates in user and group feeds.
  13. $config['ostatus']['hub_retries']
  14. (default 0)
  15. Number of times to retry a WebSub send to consumers if using internal hub
  16. Settings controlling incoming feed subscription:
  17. $config['feedsub']['fallback_hub']
  18. To subscribe to feeds that don't have a hub, an external WebSub proxy hub
  19. such as Superfeedr may be used. Any feed without a hub of its own will
  20. be subscribed through the specified hub URL instead. If the external hub
  21. has usage charges, be aware that there is no restriction placed to how
  22. many feeds may be subscribed!
  23. $config['feedsub']['fallback_hub'] = 'https://superfeedr.com/hubbub';
  24. $config['feedsub']['hub_user']
  25. $config['feedsub']['hub_password']
  26. If using the fallback hub mode, these settings may be used to provide
  27. HTTP authentication credentials for contacting the hub. Default hubs
  28. specified from feeds are assumed to not require
  29. For testing, shouldn't be used in production:
  30. $config['ostatus']['skip_signatures']
  31. (default use signatures)
  32. Disable generation and validation of Salmon magicenv signatures
  33. $config['feedsub']['nohub']
  34. (default require hub)
  35. Allow low-level feed subscription setup for feeds without hubs.
  36. Not actually usable at this stage, OStatus will check for hubs too
  37. and we have no polling backend. (The fallback hub option can be used
  38. with a 3rd-party service to provide such polling.)
  39. Todo:
  40. * better support for feeds that aren't natively oriented at social networking
  41. * make use of tags/categories from feeds
  42. * better repeat handling