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 /lib | |
parent | 1899d09cd11676d375814e6c80107d93748656a7 (diff) |
first pass at a daemon to receive XMPP messages
darcs-hash:20080623022710-84dde-bf3d3e3ce87957b9a91d38c16cf834d07b9933ea.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php index 2853c56e3..d2e7e2ed5 100644 --- a/lib/common.php +++ b/lib/common.php @@ -56,7 +56,14 @@ $config = array('backend' => 'mail', 'params' => NULL), 'nickname' => - array('blacklist' => array()) + array('blacklist' => array()), + 'xmpp' => + array('enabled' => false, + 'server' => 'INVALID SERVER', + 'port' => 5222, + 'user' => 'update', + 'resource' => 'uniquename', + 'password' => 'blahblahblah'), ); $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options'); |