1 This is a plugin to automatically load notices in the browser no
2 matter who creates them -- the kind of thing we see with
3 search.twitter.com, rejaw.com, or FriendFeed's "real time" news.
5 It requires a meteor server.
7 http://meteorserver.org/
9 Note that the controller interface needs to be accessible by the Web
10 server, and the subscriber interface needs to be accessible by your
11 Web users. You MUST firewall the controller interface from users;
12 otherwise anyone will be able to push any message to your subscribers.
15 You can enable the plugin with this line in config.php:
17 addPlugin('Meteor', array('webserver' => 'meteor server address'));
21 * webserver: Web server address. Defaults to site server.
22 * webport: port to connect to for Web access. Defaults to 4670.
23 * controlserver: Control server address. Defaults to webserver.
24 * controlport: port to connect to for control. Defaults to 4671.
25 * channelbase: a base string to use for channels. Good if you have
26 multiple sites using the same meteor server.