Projects
Kolab:16
kolab-syncroton
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 69
View file
kolab-syncroton.spec
Changed
@@ -37,7 +37,7 @@ %global upstream_version 2.4.2 Name: kolab-syncroton -Version: 2.4.2.26 +Version: 2.4.2.28 Release: 1%{?dist} Summary: ActiveSync for Kolab Groupware @@ -106,6 +106,7 @@ cp -a lib %{buildroot}/%{_datadir}/%{name}/. cp -a index.php %{buildroot}/%{_datadir}/%{name}/. +cp -a bin %{buildroot}/%{_datadir}/%{name}/. %if 0%{?plesk} cp -a %SOURCE2 %{buildroot}/%{_sysconfdir}/roundcubemail/kolab_syncroton.inc.php
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -kolab-syncroton (2.4.2.26-0~kolab1) unstable; urgency=low +kolab-syncroton (2.4.2.28-0~kolab1) unstable; urgency=low * Release version 2.4.2
View file
debian.tar.gz/dirs
Changed
@@ -1,5 +1,6 @@ usr/share/kolab-syncroton/config usr/share/kolab-syncroton/lib +usr/share/kolab-syncroton/bin usr/share/kolab-syncroton/lib/ext usr/share/kolab-syncroton/lib/plugins var/lib/kolab-syncroton
View file
debian.tar.gz/install
Changed
@@ -2,6 +2,7 @@ index.php usr/share/kolab-syncroton/ lib/.htaccess usr/share/kolab-syncroton/lib/ lib/*.php usr/share/kolab-syncroton/lib/ +bin/*.php usr/share/kolab-syncroton/bin/ lib/ext/ usr/share/kolab-syncroton/lib/ logs/.htaccess var/log/kolab-syncroton/ temp/.htaccess var/lib/kolab-syncroton/
View file
kolab-syncroton-2.4.2.tar.gz/bin
Added
+(directory)
View file
kolab-syncroton-2.4.2.tar.gz/bin/inspect.php
Added
@@ -0,0 +1,235 @@ +#!/usr/bin/env php +<?php +/* + +--------------------------------------------------------------------------+ + | Kolab Sync (ActiveSync for Kolab) | + | | + | Copyright (C) 2024, Apheleia IT AG <contact@apheleia-it.ch> | + | | + | This program is free software: you can redistribute it and/or modify | + | it under the terms of the GNU Affero General Public License as published | + | by the Free Software Foundation, either version 3 of the License, or | + | (at your option) any later version. | + | | + | This program is distributed in the hope that it will be useful, | + | but WITHOUT ANY WARRANTY; without even the implied warranty of | + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | + | GNU Affero General Public License for more details. | + | | + | You should have received a copy of the GNU Affero General Public License | + | along with this program. If not, see <http://www.gnu.org/licenses/> | + +--------------------------------------------------------------------------+ + | Author: Christian Mollekopf <mollekopf@apheleia-it.ch> | + +--------------------------------------------------------------------------+ +*/ + + +define('RCUBE_INSTALL_PATH', realpath(dirname(__FILE__) . '/../') . '/'); +define('RCUBE_PLUGINS_DIR', RCUBE_INSTALL_PATH . 'lib/plugins/'); + +// Define include path +$include_path = RCUBE_INSTALL_PATH . 'lib' . PATH_SEPARATOR; +$include_path .= RCUBE_INSTALL_PATH . 'lib/ext' . PATH_SEPARATOR; +$include_path .= ini_get('include_path'); +set_include_path($include_path); + +// include composer autoloader (if available) +if (@file_exists(RCUBE_INSTALL_PATH . 'vendor/autoload.php')) { + require RCUBE_INSTALL_PATH . 'vendor/autoload.php'; +} + +// include global functions from Roundcube Framework +require_once 'Roundcube/bootstrap.php'; + +$opts = rcube_utils::get_opt( + 'e' => 'email', + 'p' => 'adminpassword', + 'd' => 'debug', +); + +if (empty($opts'email')) { + rcube::raise_error("Email address not specified (--email).", false, true); +} +$email = $opts'email'; +if (empty($opts'adminpassword')) { + rcube::raise_error("Admin password not specified (--adminpassword).", false, true); +} +$password = $opts'adminpassword'; + +$rcube = rcube::get_instance(); +$default_port = $rcube->config->get('default_port', 143); +$default_host = $rcube->config->get('default_host'); +$user = "cyrus-admin"; +$imap = new \rcube_imap_generic(); +$options'auth_cid' = $user; +$options'auth_pw' = $password; +$options'auth_type' = 'PLAIN'; +$options'port' = $default_port; +$options'socket_options' = + 'ssl' => + 'verify_peer_name' => false, + 'verify_peer' => false, + 'allow_self_signed' => true + +; + +ini_set('display_errors', 1); +error_reporting(E_ALL); + +$debug = !empty($opts'debug'); + +$imap->setDebug($debug); +if (!$imap->connect($default_host, $email, $password, $options)) { + rcube::raise_error("Failed to connect to imap.", false, true); +} + +$rcube = \rcube::get_instance(); +$db = $rcube->get_dbh(); + +$select = $db->query( + "SELECT `user_id` FROM `users`" + . " WHERE `username` = ?" + . " ORDER BY `user_id` DESC", + \strtolower($email) +); + +if ($data = $db->fetch_assoc($select)) { + $userid = $data'user_id'; +} else { + rcube::raise_error("User not found: $email.", false, true); +} + +print("Found the user with id: $userid\n"); + +$devicesSelect = $db->query( + "SELECT `id`, `deviceid`, `devicetype` FROM `syncroton_device`" + . " WHERE `owner_id` = ?", + $userid +); + +$result = ; +while ($data = $db->fetch_assoc($devicesSelect)) { + $deviceid = $data"deviceid"; + $device_id = $data"id"; + + $result$device_id'deviceid' = $deviceid; + $result$device_id'devicetype' = $data"devicetype"; + + $select = $db->limitquery( + "SELECT `counter`, `lastsync` FROM `syncroton_synckey`" + . " WHERE `device_id` = ? AND `type` = 'FolderSync'" + . " ORDER BY `counter` DESC", + 0, + 1, + $device_id + ); + + if ($data = $db->fetch_assoc($select)) { + $result$device_id'FolderSync' = + "counter" => $data'counter', + "lastsync" => $data'lastsync', + ; + } else { + echo("Synckey not found.\n"); + } + + $folderSelect = $db->query( + "SELECT * FROM `syncroton_folder`" + . " WHERE `device_id` = ?", + $device_id + ); + + while ($folder = $db->fetch_assoc($folderSelect)) { + $select = $db->limitquery( + "SELECT `counter`, `lastsync`, `extra_data` FROM `syncroton_synckey`" + . " WHERE `device_id` = ? AND `type` = ?" + . " ORDER BY `counter` DESC", + 0, + 1, + $device_id, + $folder'id' + ); + + if ($data = $db->fetch_assoc($select)) { + $result$device_id'folders'$folder'id' = + "counter" => $data'counter', + "lastsync" => $data'lastsync', + "lastfiltertype" => $data'lastfiltertype' ?? null, + "modseq" => $data'extra_data' ? json_decode($data'extra_data')->modseq : null, + ; + } + + $result$device_id'folders'$folder'id''name' = $folder'displayname'; + + $imap->select($folder'displayname'); + $result$device_id'folders'$folder'id''imapModseq' = $imap->data'HIGHESTMODSEQ' ?? null; + + $index = $imap->search($folder'displayname', 'ALL UNDELETED', false, 'COUNT'); + if (!$index->is_error()) { + $result$device_id'folders'$folder'id''imapMessagecount' = $index->count(); + } + + $select = $db->query( + "SELECT count(*) FROM `syncroton_content`" + . " WHERE `device_id` = ? AND `folder_id` = ?", + $device_id, + $folder'id' + ); + + if ($data = $db->fetch_assoc($select)) { + $result$device_id'folders'$folder'id''contentCount' = array_values($data)0; + } + } +} + +if ($debug) { + var_export($result); +} + +function println($output) { + print("{$output}\n"); +} + +function filterType($value) { + if (!$value) { + return "No filter"; + } + switch($value) { + case 0: return "No filter"; + case 1: return "1 day";
View file
kolab-syncroton.dsc
Changed
@@ -2,7 +2,7 @@ Source: kolab-syncroton Binary: kolab-syncroton Architecture: all -Version: 1:2.4.2.26-1~kolab1 +Version: 1:2.4.2.28-1~kolab1 Maintainer: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Uploaders: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Homepage: http://www.kolab.org/
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.