I have setup ejabber on a centos 5 system and it works pretty good. The only problem is with MUC. When new messages are received on a MUC, the client doesn t get notified. I m using Adium and Pidgin.
MUC的设立就是这样:
{mod_muc, [
%%{host, "conference.@HOST@"},
{access, muc},
{access_create, muc_admin},
{access_persistent, muc},
{access_admin, muc_admin},
{default_room_options,
[
{allow_change_subj, true},
{allow_private_messages, true},
{allow_user_invites, true},
{anonymous, true},
{logging, true},
{members_by_default, true},
{persistent, true},
{public, true},
{public_list, false}
]}
]},
如果在用户之间收到关于定期用户节点的信息,该通知就非常有效。
感谢!