-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdjabberd.conf
76 lines (54 loc) · 1.84 KB
/
djabberd.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
OldSSL enable
# health checks from this IP (directive can be repeated) won't log and
# won't allocate a connection id
DeclareMonitor 127.0.0.1
AdminPort 5200
# defaults:
ClientPort 5222
ServerPort 5269
SSLCertificateFile /etc/djabberd/snakeoil-server-crt.pem
SSLCertificateKeyFile /etc/djabberd/snakeoil-server-key.pem
PidFile /var/run/djabberd/djabberd.pid
<VHost jabber.localhost.localdomain>
S2S enable
RequireSSL yes
<Plugin DJabberd::SASL::AuthenSASL>
Optional no
Mechanisms PLAIN LOGIN
</Plugin>
<Plugin DJabberd::RosterStorage::SQLite>
Database /var/lib/djabberd/roster.sqlite
</Plugin>
<Plugin DJabberd::Authen::HTDigest>
Realm djabberd
HtDigest /var/lib/djabberd/djabberd.htdigest
</Plugin>
<Plugin DJabberd::Plugin::VCard::SQLite>
Storage /var/lib/djabberd/vcards.sqlite
</Plugin>
# This needs the package libdjabberd-authen-userlimit-perl
# <Plugin DJabberd::Authen::UserLimit>
# UserLimit 150
# </Plugin>
# This needs the package libdjabberd-entitytime-perl
# <Plugin DJabberd::Plugin::EntityTime />
# This needs the package libdjabberd-plugin-balancer-perl
# <Plugin DJabberd::Plugin::Balancer />
# This needs the package libdjabberd-plugin-jabberiqversion-perl
# <Plugin DJabberd::Plugin::JabberIqVersion>
# OS Debian GNU/Linux
# Name A poorly maintained Jabber Server
# Version Beta
# </Plugin>
# This needs the package libdjabberd-plugin-ping-perl
# <Plugin DJabberd::Plugin::Ping />
<Plugin DJabberd::PresenceChecker::Local />
<Plugin DJabberd::Delivery::Local />
<Plugin DJabberd::Delivery::S2S />
# This needs the package libdjabberd-delivery-offlinestorage-perl
# IMPORTANT: This plugin MUST be loaded last!
# <Plugin DJabberd::Delivery::OfflineStorage::SQLite>
# Database /var/lib/djabberd/offline.sqlite
# Types Message
# </Plugin>
</VHost>