mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-26 16:26:24 +01:00
17 lines
330 B
Erlang
17 lines
330 B
Erlang
|
-record(privacy, {us,
|
||
|
default = none,
|
||
|
lists = []}).
|
||
|
|
||
|
-record(listitem, {type = none,
|
||
|
value = none,
|
||
|
action,
|
||
|
order,
|
||
|
match_all = false,
|
||
|
match_iq = false,
|
||
|
match_message = false,
|
||
|
match_presence_in = false,
|
||
|
match_presence_out = false
|
||
|
}).
|
||
|
|
||
|
-record(userlist, {name = none, list = []}).
|