-
Notifications
You must be signed in to change notification settings - Fork 23
/
accounts.html
75 lines (68 loc) · 1.92 KB
/
accounts.html
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
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Profanity, a console based XMPP client - Account Configuration</title>
<meta charset="utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<link href="css/profanity.css" type="text/css" rel="stylesheet">
</head>
<body id="article">
<img class="overlay" src="images/profanity_mouth-only.png" alt="Profanity Illustration">
<header>
<h1>
<a href="index.html">
Profani<span class="kern-ty">ty</span>
</a>
</h1>
<h2>Account Configuration</h2>
</header>
<article id="manual">
<section>
<h3>Contents</h3>
<ul>
<li><a href="#configuring-accounts">Configuring Accounts</a>
</ul>
</section>
<section>
<a name="configuring-accounts"></a>
<h3>Configuring Accounts</h3>
<p>The <a href="reference.html#account"><code>/account</code></a> command should be used to modify the
settings below.</p>
<p>The following is an example account configuration file with two configured accounts.</p>
<pre><code>[jabber]
enabled=true
priority.online=10
priority.chat=20
priority.away=0
priority.xa=0
priority.dnd=-10
resource=laptop
presence.last=xa
presence.login=online
muc.service=conference.jabber.org
muc.nick=aperson
[work]
enabled=true
priority.online=2
priority.chat=1
priority.away=0
priority.xa=-5
priority.dnd=-10
server=talk.mycompany.org
resource=office
presence.last=online
presence.login=away
muc.service=rooms.mycompany.org
muc.nick=smithy
</code></pre>
</section>
</article>
<footer>
<p class="matty">site designed by <a href="http://www.matthewbalaam.co.uk">Matthew Balaam</a></p>
</footer>
</body>
</html>