gitextract_3ldssbmk/ ├── .gitignore ├── .tx/ │ └── config ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── Makefile.mingw ├── NEWS ├── README ├── TODO ├── VERSION ├── autogen.sh ├── configure.ac ├── contrib/ │ ├── dbus/ │ │ ├── SipeHelper.pm │ │ ├── sipe-call-phone-number.pl │ │ ├── sipe-join-conference-with-organizer-and-id.pl │ │ ├── sipe-join-conference-with-uri.pl │ │ ├── sipe-republish-calendar.pl │ │ └── sipe-reset-status.pl │ ├── debian/ │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ └── rules │ ├── debug/ │ │ ├── parse_log.pl │ │ └── parse_valgrind.pl │ ├── mingw-cross-compile/ │ │ ├── README.txt │ │ ├── fetch.sh │ │ └── local.mak │ ├── opensuse-build-service/ │ │ ├── PKGBUILD │ │ ├── generate_debian.sh │ │ ├── generate_nsi.pl │ │ ├── pidgin-sipe-freerdp2.dsc │ │ ├── pidgin-sipe-gstreamer1.dsc │ │ ├── pidgin-sipe-telepathy.dsc │ │ ├── pidgin-sipe.changes │ │ ├── pidgin-sipe.nsi.template │ │ └── pidgin-sipe.spec │ └── rpm/ │ └── pidgin-sipe.spec ├── git-build.sh ├── git-snapshot.sh ├── pidgin-sipe.nsi ├── pidgin-sipe.wxs ├── pixmaps/ │ ├── 16/ │ │ └── Makefile.am │ ├── 22/ │ │ └── Makefile.am │ ├── 24/ │ │ └── Makefile.am │ ├── 32/ │ │ └── Makefile.am │ ├── 48/ │ │ └── Makefile.am │ ├── Makefile.am │ ├── Makefile.common.am │ ├── Makefile.mingw │ └── scalable/ │ └── Makefile.am ├── po/ │ ├── LINGUAS │ ├── Makefile.mingw │ ├── POTFILES.in │ ├── ar.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── fi.po │ ├── fr.po │ ├── fr_CA.po │ ├── hi.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── lt.po │ ├── nb.po │ ├── nl.po │ ├── pidgin-sipe.pot │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sv.po │ ├── ta.po │ ├── te.po │ ├── tr.po │ ├── transifex-pot-fixup.pl │ ├── zh_CN.po │ └── zh_TW.po ├── siplcs.vcxproj ├── siplcs.vcxproj.filters └── src/ ├── Makefile.am ├── Makefile.mingw ├── adium/ │ ├── DCPurpleSIPEJoinChatViewController.h │ ├── DCPurpleSIPEJoinChatViewController.m │ ├── ESPurpleSIPEAccount.h │ ├── ESPurpleSIPEAccount.m │ ├── ESSIPEAccountViewController.h │ ├── ESSIPEAccountViewController.m │ ├── ESSIPELibpurpleServicePlugin.h │ ├── ESSIPELibpurpleServicePlugin.m │ ├── ESSIPEService.h │ ├── ESSIPEService.m │ ├── English.lproj/ │ │ ├── DCPurpleSIPEJoinChatView.xib │ │ ├── ESSIPEAccountView.xib │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── PurpleDefaultsSIPE.plist │ ├── README.Adium │ ├── SIPEAdiumPlugin.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── SIPEAdiumPlugin.xcscheme │ │ └── pidgin-sipe.xcscheme │ ├── SIPEAdiumPlugin_Prefix.pch │ ├── check_release.sh │ ├── find_adium_build.sh │ ├── openssl/ │ │ ├── libcrypto.0.9.8.tbd │ │ └── opensslconf.h │ └── xcconfigs/ │ ├── Base.xcconfig │ ├── Debug-Release.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ ├── SIPEAdiumPlugin.xcconfig │ └── libpidgin-sipe.xcconfig ├── api/ │ ├── Makefile.am │ ├── sipe-backend.h │ ├── sipe-common.h │ ├── sipe-core.h │ ├── sipe-mime.h │ └── sipe-nls.h ├── core/ │ ├── Makefile.am │ ├── Makefile.mingw │ ├── libsiperc.rc.in │ ├── md4.c │ ├── md4.h │ ├── sdpmsg.c │ ├── sdpmsg.h │ ├── sip-csta.c │ ├── sip-csta.h │ ├── sip-sec-basic.c │ ├── sip-sec-basic.h │ ├── sip-sec-digest-tests.c │ ├── sip-sec-digest.c │ ├── sip-sec-digest.h │ ├── sip-sec-gssapi.c │ ├── sip-sec-gssapi.h │ ├── sip-sec-mech.h │ ├── sip-sec-negotiate.c │ ├── sip-sec-negotiate.h │ ├── sip-sec-ntlm-analyzer.c │ ├── sip-sec-ntlm-tests.c │ ├── sip-sec-ntlm.c │ ├── sip-sec-ntlm.h │ ├── sip-sec-sspi.c │ ├── sip-sec-sspi.h │ ├── sip-sec-tls-dsk.c │ ├── sip-sec-tls-dsk.h │ ├── sip-sec.c │ ├── sip-sec.h │ ├── sip-soap.c │ ├── sip-soap.h │ ├── sip-transport.c │ ├── sip-transport.h │ ├── sipe-appshare-client.h │ ├── sipe-appshare-remmina.c │ ├── sipe-appshare-xfreerdp.c │ ├── sipe-appshare.c │ ├── sipe-appshare.h │ ├── sipe-buddy.c │ ├── sipe-buddy.h │ ├── sipe-cal.c │ ├── sipe-cal.h │ ├── sipe-cert-crypto-nss.c │ ├── sipe-cert-crypto-openssl.c │ ├── sipe-cert-crypto.h │ ├── sipe-certificate.c │ ├── sipe-certificate.h │ ├── sipe-chat.c │ ├── sipe-chat.h │ ├── sipe-conf.c │ ├── sipe-conf.h │ ├── sipe-core-private.h │ ├── sipe-core.c │ ├── sipe-crypt-nss.c │ ├── sipe-crypt-openssl.c │ ├── sipe-crypt.h │ ├── sipe-dialog.c │ ├── sipe-dialog.h │ ├── sipe-digest-nss.c │ ├── sipe-digest-openssl.c │ ├── sipe-digest.h │ ├── sipe-domino.c │ ├── sipe-domino.h │ ├── sipe-ews-autodiscover.c │ ├── sipe-ews-autodiscover.h │ ├── sipe-ews.c │ ├── sipe-ews.h │ ├── sipe-ft-lync.c │ ├── sipe-ft-lync.h │ ├── sipe-ft-tftp.c │ ├── sipe-ft-tftp.h │ ├── sipe-ft.c │ ├── sipe-ft.h │ ├── sipe-generic-tests.c │ ├── sipe-group.c │ ├── sipe-group.h │ ├── sipe-groupchat.c │ ├── sipe-groupchat.h │ ├── sipe-http-request.c │ ├── sipe-http-request.h │ ├── sipe-http-transport.c │ ├── sipe-http-transport.h │ ├── sipe-http.c │ ├── sipe-http.h │ ├── sipe-im.c │ ├── sipe-im.h │ ├── sipe-incoming.c │ ├── sipe-incoming.h │ ├── sipe-lync-autodiscover.c │ ├── sipe-lync-autodiscover.h │ ├── sipe-media.c │ ├── sipe-media.h │ ├── sipe-mime-common.c │ ├── sipe-mime.c │ ├── sipe-msrtp.c │ ├── sipe-notify.c │ ├── sipe-notify.h │ ├── sipe-ocs2005.c │ ├── sipe-ocs2005.h │ ├── sipe-ocs2007.c │ ├── sipe-ocs2007.h │ ├── sipe-rtf-tests.c │ ├── sipe-rtf.h │ ├── sipe-rtf.l │ ├── sipe-schedule.c │ ├── sipe-schedule.h │ ├── sipe-session.c │ ├── sipe-session.h │ ├── sipe-sign.c │ ├── sipe-sign.h │ ├── sipe-sipmsg-tests.c │ ├── sipe-status.c │ ├── sipe-status.h │ ├── sipe-subscriptions.c │ ├── sipe-subscriptions.h │ ├── sipe-svc.c │ ├── sipe-svc.h │ ├── sipe-tls-analyzer.c │ ├── sipe-tls-tester.c │ ├── sipe-tls.c │ ├── sipe-tls.h │ ├── sipe-ucs.c │ ├── sipe-ucs.h │ ├── sipe-user.c │ ├── sipe-user.h │ ├── sipe-utils.c │ ├── sipe-utils.h │ ├── sipe-webticket.c │ ├── sipe-webticket.h │ ├── sipe-win32dep.c │ ├── sipe-win32dep.h │ ├── sipe-xml-tests.c │ ├── sipe-xml.c │ ├── sipe-xml.h │ ├── sipmsg.c │ ├── sipmsg.h │ ├── uuid.c │ └── uuid.h ├── miranda/ │ ├── INSTALL │ ├── miranda-buddy.c │ ├── miranda-chat.c │ ├── miranda-connection.c │ ├── miranda-debug.c │ ├── miranda-dnsquery.c │ ├── miranda-ft.c │ ├── miranda-groupchat.c │ ├── miranda-im.c │ ├── miranda-input.c │ ├── miranda-markup.c │ ├── miranda-media.c │ ├── miranda-network.c │ ├── miranda-notify.c │ ├── miranda-plugin.c │ ├── miranda-private.h │ ├── miranda-resource.h │ ├── miranda-schedule.c │ ├── miranda-search.c │ ├── miranda-setting.c │ ├── miranda-status.c │ ├── miranda-transport.c │ ├── miranda-user.c │ ├── miranda-utils.c │ ├── miranda-version.h │ ├── miranda.rc │ ├── sipe-miranda.c │ └── vlc.c ├── purple/ │ ├── Makefile.am │ ├── pidgin-sipe.metainfo.xml │ ├── purple-buddy.c │ ├── purple-chat.c │ ├── purple-connection.c │ ├── purple-dbus-bindings.c │ ├── purple-dbus.c │ ├── purple-dbus.h │ ├── purple-debug.c │ ├── purple-dnsquery.c │ ├── purple-ft.c │ ├── purple-groupchat.c │ ├── purple-im.c │ ├── purple-markup.c │ ├── purple-media.c │ ├── purple-mime.c │ ├── purple-network.c │ ├── purple-notify.c │ ├── purple-plugin-common.c │ ├── purple-plugin.c │ ├── purple-plugin3.c │ ├── purple-private.h │ ├── purple-schedule.c │ ├── purple-search.c │ ├── purple-setting.c │ ├── purple-status.c │ ├── purple-transport.c │ ├── purple-user.c │ ├── tests-load.c │ └── tests.c └── telepathy/ ├── Makefile.am ├── data/ │ ├── Makefile.am │ ├── org.freedesktop.Telepathy.ConnectionManager.sipe.service.in │ └── sipe.profile ├── telepathy-buddy.c ├── telepathy-connection.c ├── telepathy-debug.c ├── telepathy-dnsquery.c ├── telepathy-main.c ├── telepathy-private.h ├── telepathy-protocol.c ├── telepathy-schedule.c ├── telepathy-search.c ├── telepathy-status.c ├── telepathy-stubs.c ├── telepathy-tls.c └── telepathy-transport.c