[SyncEvolution] Mobical username/password
by Patrick Ohly
Hello!
A while ago Mobical switched to a password scheme where they generate a
per-device password. The web password no longer works on devices. It is
possible to have such a password generated in Mobical's web interface
via the "manual setup" link in the "add device" dialog.
With hindsight it is obvious, but it took a while for the coin to drop
for me: that new password is associated with the first password
connecting to the server and then tied to the device's ID. No other
device can reuse these credentials.
This explains the continued problems we had in the nightly testing
(okay, besides the large number of network problems). We had valid
credentials for one virtual device, but not for the other.
--
Best Regards, Patrick Ohly
The content of this message is my personal opinion only and although
I am an employee of Intel, the statements I make here in no way
represent Intel's position on the issue, nor am I authorized to speak
on behalf of Intel on this matter.
11 years, 8 months
[SyncEvolution] Scheduleworld replacement
by Frederik Elwert
Hello everybody!
For some days now, scheduleworld.com is down. Unfortunately, I have not
received any information about this, and all I found was one tweet [1]
stating that scheduleworld shut down.
So I just wanted to ask if anyone on this list has further information
about the status and future of scheduleworld.
Since I do depend quite much on a reliable sync of my PIM data, I also
wanted to evaluate other options. So I wanted to ask about your
experience and recommendations:
* Which other service works well with SyncEvolution (calendar,
contacts and tasks)?
* What are your experiences with SyncEvolution as a server? (Since
my machines are at different places, a local-only solution would
not work for me. But is it advisable to run SyncEvolution over
the internet?)
* Other recommendations?
Thanks,
Frederik
[1] http://twitter.com/arpadszasz/statuses/11874246754041856
11 years, 8 months
[SyncEvolution] Calendar sync information not showing in Sync-ui
by jea62q@xtra.co.nz
As I can't log onto bugs.meego.com for some reason, I'm reporting this here.
When I first ran SyncEvolution from Sync-ui, I thought that only
addressbook sync was working. However, it seems after testing that
everything is transferring correctly - it's just not showing any
messages in the Sync-ui window.
I launched Sync-ui from terminal.
Added appointment on Nokia 6120c. It migrated successfully to Evolution,
but the Appointments and Tasks field in Sync-ui shows no notification
text. (The other fields show "Last time: No changes" or whatever is
relevant.) In the terminal, the following message appeared:
** (sync-ui:1452): WARNING **: Unidentified sync report item:
source-todo-virtualsource=calendar+todo
** (sync-ui:1452): WARNING **: Unidentified sync report item:
source-calendar-virtualsource=calendar+todo
A new appointment added to evolution also migrated correctly to the
6120c, but no notification text appeared in the Appointment and Tasks area.
----
In the process of testing, I discovered I'm being affected by another bug.
I edited the new appointment in evolution (just changed the finish
time), ran Sync-ui again and got Error 22001.
I also got an error when syncing from command line.
In both cases, the modified appointment refused to migrate to the phone.
Cutting and then pasting the offending contact in the same place fixes
it. Sync is then OK.
I had same problem with OpenSync (over USB), in Lucid but not Hardy or
Debian Stable. I can't confirm that SyncEvolution behaves differently in
Hardy (it doesn't find the phone) but I may be able to test in Debian
Stable.
Irihapeti
11 years, 8 months
[SyncEvolution] ScheduleWorld
by Ian Reid
There seems to be some confusion about the status of ScheduleWorld. About
six weeks ago I received a message from ScheduleWorld to its
subscribers stating that the service would be shuttered at the end of
November. No explanation given.
11 years, 8 months
[SyncEvolution] Sony Ericsson C510: No idea to get it working
by knipp@m-otion.com
Hi all, hi Patrick,
I tried to use my phone with SyncEvolution, but I wasn't very sucessful.
The operating system is Ubuntu 10.10. I installed SyncEvolution from the
http://downloads.syncevolution.org/apt repository.
knipp@franz-mobile:~$ syncevolution --version
SyncEvolution 1.1
using libedataserver-1.2.so.13 - might not be compatible!
using libebook-1.2.so.9
using libecal-1.2.so.7
using libecal-1.2.so.7
using libbluetooth.so.3
[…]
I tried the SonyEricsson Template for SyncML 1.2 as well as the one for
SyncML 1.1, configured using sync-ui.
As I didn't succeed, I switched to use the command-line client.
syncevo-phone-config did not find a working configuration.
I attached the log files of one of the last tries as well as the
configuration.
Which settings did I change during my tests (restricted to the
addressbook):
* SyncMLVersion = 1.2 | 1.1 | 1.0
Only 1.2 brought up the „Synchronisation” screen on the phone, the other
settings hung up the phone and made a bluetooth restart necessary.
* remoteIdentifier = PC Suite | Sony Ericss | <empty>
No configuration worked.
* uri = Contact | Contacts | card3
No configuration worked.
The integration with the Evolution addressbook works, I could export it
without problems.
Maybe someone can give me a hint, what to try next.
What does the Status 404 mean, which seems to be sent by SyncEvolution?
Maybe the phone cannot treat this answer, resolving in the Internal Server
Error.
Kind regards,
Franz Knipp
11 years, 8 months
[SyncEvolution] [PATCH] Have realpath allocate its own buffer.
by bremner@debian.org
From: David Bremner <bremner(a)debian.org>
According to the docs for realpath, it will allocate its own buffer
(of up to size PATH_MAX) using malloc. This may incur a small performance
penalty, but avoids a build problem on Debian GNU/Hurd, where PATH_MAX is not
available.
---
This patch should apply to syncevolution 1.1
src/syncevo/util.cpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/syncevo/util.cpp b/src/syncevo/util.cpp
index b4dfd18..e492941 100644
--- a/src/syncevo/util.cpp
+++ b/src/syncevo/util.cpp
@@ -117,9 +117,10 @@ void splitPath(const string &path, string &dir, string &file)
bool relToAbs(string &path)
{
- char buffer[PATH_MAX+1];
- if (realpath(path.c_str(), buffer)) {
+ char *buffer=NULL;
+ if (buffer = realpath(path.c_str(), NULL)) {
path = buffer;
+ free(buffer);
return true;
} else {
return false;
--
1.7.2.3
11 years, 8 months
[SyncEvolution] [PATCH] improve detection of MacOS X, to avoid confusion on other Mach systems
by david@tethera.net
From: David Bremner <bremner(a)unb.ca>
This fixes a build problem on Debian Hurd i386
---
This is really an upstream issue in libsynthesis. Can I bother you
with how to send that on?
src/Targets/ReleasedProducts/SDK/target_options.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/Targets/ReleasedProducts/SDK/target_options.h b/src/Targets/ReleasedProducts/SDK/target_options.h
index 4072c0a..7d153e2 100644
--- a/src/Targets/ReleasedProducts/SDK/target_options.h
+++ b/src/Targets/ReleasedProducts/SDK/target_options.h
@@ -19,7 +19,7 @@
/* - find out target platform */
-#ifdef __MACH__
+#if defined (__MACH__) && defined(__APPLE__)
#define MACOSX
#else
#if defined __MWERKS__ || defined _MSC_VER
--
1.7.2.3
11 years, 8 months
[SyncEvolution] Syncing with mobical, missing phone numbers?
by Ng Oon-Ee
Hi all, first time poster,
I've been using syncevolution without issues till recently with
mobical.net. However just today I realized one of my contacts was
missing its phone numbers. They are present on the mobical interface,
a refresh-from-server does not change things.
What information/debugging do I need to do (could not find a debug
guide on the syncevolution site, sorry).
11 years, 8 months
[SyncEvolution] Woes. Too many damn woes. (Nokia N86 8MP)
by Jörg
" You have lines longer than 80 characters. Fix that." What??
I just spilled my guts out about the horrendous problems that syncing (or
rather, the absence of) is causing me and, I get the above Error Message. What
is this?? I've many more Error Messages than I can already handle!
Can somebody help me here so that I can eventually post my original message?
Thanks
11 years, 8 months