This file is indexed.

/usr/lib/x86_64-linux-gnu/ejabberd-16.01/include/mod_offline.hrl is in ejabberd 16.01-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
-record(offline_msg,
	{us = {<<"">>, <<"">>} :: {binary(), binary()},
	 timestamp = now()     :: erlang:timestamp() | '_',
	 expire = now()        :: erlang:timestamp() | never | '_',
	 from = #jid{}         :: jid() | '_',
	 to = #jid{}           :: jid() | '_',
	 packet = #xmlel{}     :: xmlel() | '_'}).

-record(state,
	{host = <<"">> :: binary(),
	 access_max_offline_messages}).