Add conf fragment to configure XMPP accounts on Thunderbird via MCD

This commit is contained in:
Daniel Berteaud 2013-02-21 13:03:07 +01:00
parent edfa31a9eb
commit cfb5b9c99c
2 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
%define version 0.2.5
%define version 0.2.6
%define release 1
%define name ipasserelle-im
@ -31,6 +31,9 @@ Meta package to configure Instant Messaging features
on your iPasserelle.
%changelog
* Fri Nov 30 2012 Daniel Berteaud <daniel@firewall-services.com> 0.2.6-1
- Fix local users ACL
* Fri Sep 28 2012 Daniel Berteaud <daniel@firewall-services.com> 0.2.5-1
- Update the database if it already exist (create missing tables)
- Add SRV records for xmpp-server and xmpp-client

View File

@ -0,0 +1,6 @@
<?php echo $pref;?>("messenger.account.account1.alias", "<?php echo $user[0]['cn'][0]; ?>");
<?php echo $pref;?>("messenger.account.account1.autoLogin", true);
<?php echo $pref;?>("messenger.account.account1.name", "<?php echo $uid; ?>@<?php echo DOMAIN; ?>");
<?php echo $pref;?>("messenger.account.account1.prpl", "prpl-jabber");
<?php echo $pref;?>("messenger.account.account1.options.connection_security", "require_tls");
<?php echo $pref;?>("messenger.accounts", "account1");