diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-22 22:27:10 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-22 22:27:10 -0400 |
commit | 7d9372ec502ef681637eb48dac7a4444c9a86640 (patch) | |
tree | 8272022b364fe4f3ea320732e903aaa0d8d471e8 /config.php.sample | |
parent | 1899d09cd11676d375814e6c80107d93748656a7 (diff) |
first pass at a daemon to receive XMPP messages
darcs-hash:20080623022710-84dde-bf3d3e3ce87957b9a91d38c16cf834d07b9933ea.gz
Diffstat (limited to 'config.php.sample')
-rw-r--r-- | config.php.sample | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample index 8253bdeed..82c1c44ea 100644 --- a/config.php.sample +++ b/config.php.sample @@ -36,3 +36,12 @@ $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica'; #Standard fancy-url clashes prevented by not allowing nicknames on a blacklist #Add your own here. Note: empty array by default #$config['nickname']['blacklist'][] = 'scobleizer'; + +# xmpp +#$config['xmpp']['enabled'] = false; +#$config['xmpp']['server'] = 'server.example.net'; +#$config['xmpp']['port'] = 5222; +#$config['xmpp']['user'] = 'update'; +#$config['xmpp']['resource'] = 'uniquename'; +#$config['xmpp']['password'] = 'blahblahblah'; + |