diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-24 19:17:41 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-24 19:17:41 -0700 |
commit | 63f12c48a8dd7c75093587d78a8fd557330d202e (patch) | |
tree | 62346ec32145d1ef798cd57fd860cea5e5e0c818 /lib/common.php | |
parent | 5f1b97e2add1b525401deef290ba29937135d073 (diff) |
make stomp server work with username and password
Diffstat (limited to 'lib/common.php')
-rw-r--r-- | lib/common.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php index 8eb464d7d..bb1a4255d 100644 --- a/lib/common.php +++ b/lib/common.php @@ -125,7 +125,13 @@ $config = array('appname' => 'laconica', # for syslog 'priority' => 'debug'), # XXX: currently ignored 'queue' => - array('enabled' => false), + array('enabled' => false, + 'subsystem' => 'db', # default to database, or 'stomp' + 'stomp_server' => null, + 'queue_basename' => 'laconica', + 'stomp_username' => null, + 'stomp_password' => null, + ), 'license' => array('url' => 'http://creativecommons.org/licenses/by/3.0/', 'title' => 'Creative Commons Attribution 3.0', |