mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
42cdf80cd4
login as long as they have not been answered. mod_roster do no more depends on mod_offline. * src/ejabberd_sm.erl: Likewise. * src/ejabberd_c2s.erl: Likewise. * src/mod_roster_odbc.erl: Likewise (The ODBC/relational support has not yet been tested). * src/mod_roster.hrl: Likewise. * src/mod_offline.erl: Likewise. * src/mod_offline_odbc.erl: Likewise. * odbc/pg.sql: Likewise. * odbc/mysql.sql: Likewise. SVN Revision: 569
19 lines
533 B
Erlang
19 lines
533 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : mod_roster.hrl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose : Roster management
|
|
%%% Created : 5 Mar 2005 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id: mod_roster.hrl 11 2005-03-06 22:36:15Z alexey $
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-record(roster, {usj,
|
|
us,
|
|
jid,
|
|
name = "",
|
|
subscription = none,
|
|
ask = none,
|
|
groups = [],
|
|
askmessage = [],
|
|
xs = []}).
|
|
|