-
Notifications
You must be signed in to change notification settings - Fork 0
/
tavurc
29 lines (27 loc) · 1.09 KB
/
tavurc
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
[Jabber]
;; This is usually defined on a per-user basis, but you might want to do it here.
;;
;jid = foo@server/Resource
;jid = foo@server
;password = secret
[Event information]
;; Here you can customize how Tavu will generate a DBus notification when a new
;; message arrives. A DBus notification is mainly described by 3 parameters:
;; application name, summary, and body.
;; In addition to normal text, the following variables are available:
;; - $sender: the name of the sender (from the roster). Fallbacks to the bare
;; JID if there is no name or if the sender is not in the roster.
;; - $senderjid: the bare JID (without resource) of the sender.
;; - $senderresource: the resource of the sender.
;; - $subject: the message subject.
;; - $body: the message body.
;;
;app name = $senderresource
;summary = $subject
;body = $body
[Message filters]
;; Values for 'accept':
;; self, roster, roster+self, list, roster+list, all, none
;accept = roster+self
;; Comma-separated list of jids. Used if accept=list or accept=roster+list.