Hello community,
here is the log from the commit of package evolution-data-server for
openSUSE:Factory checked in at 2014-10-16 14:53:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/evolution-data-server (Old)
and /work/SRC/openSUSE:Factory/.evolution-data-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "evolution-data-server"
Changes:
--------
---
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes
2014-10-14 07:10:13.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
2014-10-16 14:53:26.000000000 +0200
@@ -1,0 +2,8 @@
+Tue Oct 14 12:45:06 UTC 2014 - [email protected]
+
+- Update to version 3.12.7.1:
+ + SMTP: Fails to send message after a change for bgo#737903.
+ + bgo#737951: AMEL_DEBUG=smtp should provide information about
+ SMTP server.
+
+-------------------------------------------------------------------
Old:
----
evolution-data-server-3.12.7.tar.xz
New:
----
evolution-data-server-3.12.7.1.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ evolution-data-server.spec ++++++
--- /var/tmp/diff_new_pack.rjWMXO/_old 2014-10-16 14:53:29.000000000 +0200
+++ /var/tmp/diff_new_pack.rjWMXO/_new 2014-10-16 14:53:29.000000000 +0200
@@ -32,7 +32,7 @@
Name: evolution-data-server
%define _evo_version 3.12
-Version: 3.12.7
+Version: 3.12.7.1
Release: 0
Summary: Evolution Data Server
License: LGPL-2.1+
++++++ evolution-data-server-3.12.7.tar.xz ->
evolution-data-server-3.12.7.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.12.7/NEWS
new/evolution-data-server-3.12.7.1/NEWS
--- old/evolution-data-server-3.12.7/NEWS 2014-10-13 08:39:51.000000000
+0200
+++ new/evolution-data-server-3.12.7.1/NEWS 2014-10-14 15:48:13.000000000
+0200
@@ -1,3 +1,12 @@
+Evolution-Data-Server 3.12.7.1 2014-10-14
+-----------------------------------------
+
+Bug Fixes:
+ Bug 737951 - CAMEL_DEBUG=smtp should provide information about SMTP
server (Milan Crha)
+
+Miscellaneous:
+ [SMTP] Fails to send message after a change for bug 737903 (Milan Crha)
+
Evolution-Data-Server 3.12.7 2014-10-13
---------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.12.7/camel/providers/smtp/camel-smtp-transport.c
new/evolution-data-server-3.12.7.1/camel/providers/smtp/camel-smtp-transport.c
---
old/evolution-data-server-3.12.7/camel/providers/smtp/camel-smtp-transport.c
2014-10-09 18:58:24.000000000 +0200
+++
new/evolution-data-server-3.12.7.1/camel/providers/smtp/camel-smtp-transport.c
2014-10-14 15:32:01.000000000 +0200
@@ -166,6 +166,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("Welcome response error: "));
transport->connected = FALSE;
@@ -218,7 +219,7 @@
goto exit;
}
- d (fprintf (stderr, "sending : STARTTLS\r\n"));
+ d (fprintf (stderr, "[SMTP] sending: STARTTLS\r\n"));
if (camel_stream_write (
stream, "STARTTLS\r\n", 10, cancellable, error) == -1) {
g_prefix_error (error, _("STARTTLS command failed: "));
@@ -234,6 +235,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("STARTTLS command failed: "));
transport->connected = FALSE;
@@ -364,6 +366,31 @@
return name;
}
+static void
+smtp_debug_print_server_name (CamelService *service,
+ const gchar *what)
+{
+ CamelNetworkSettings *network_settings;
+ CamelSettings *settings;
+ gchar *host;
+ gint port;
+
+ if (d(1) + 0 == 0)
+ return;
+
+ settings = camel_service_ref_settings (service);
+
+ network_settings = CAMEL_NETWORK_SETTINGS (settings);
+ host = camel_network_settings_dup_host (network_settings);
+ port = camel_network_settings_get_port (network_settings);
+
+ g_object_unref (settings);
+
+ fprintf (stderr, "[SMTP] %s server %s:%d from account %s\r\n", what,
host, port, camel_service_get_uid (service));
+
+ g_free (host);
+}
+
static gboolean
smtp_transport_connect_sync (CamelService *service,
GCancellable *cancellable,
@@ -377,6 +404,8 @@
gboolean auth_required;
gboolean success = TRUE;
+ smtp_debug_print_server_name (service, "Connecting to");
+
settings = camel_service_ref_settings (service);
network_settings = CAMEL_NETWORK_SETTINGS (settings);
@@ -498,6 +527,7 @@
CamelSasl *sasl;
gchar *cmdbuf, *respbuf = NULL, *challenge;
gboolean auth_challenge = FALSE;
+ GError *local_error = NULL;
if (mechanism == NULL) {
g_set_error (
@@ -517,18 +547,23 @@
}
challenge = camel_sasl_challenge_base64_sync (
- sasl, NULL, cancellable, error);
+ sasl, NULL, cancellable, &local_error);
if (challenge) {
auth_challenge = TRUE;
cmdbuf = g_strdup_printf (
"AUTH %s %s\r\n", mechanism, challenge);
g_free (challenge);
- } else {
+ } else if (local_error) {
+ d (fprintf (stderr, "[SMTP] SASL challenge failed: %s",
local_error->message));
+ g_propagate_error (error, local_error);
g_object_unref (sasl);
return CAMEL_AUTHENTICATION_ERROR;
+ } else {
+ cmdbuf = g_strdup_printf (
+ "AUTH %s\r\n", mechanism);
}
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf,
cancellable, error) == -1) {
@@ -541,6 +576,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf :
"(null)"));
while (!camel_sasl_get_authenticated (sasl)) {
if (!respbuf) {
@@ -564,7 +600,7 @@
if (FALSE) {
broken_smtp_server:
d (fprintf (
- stderr, "Your SMTP server's implementation "
+ stderr, "[SMTP] Your SMTP server's
implementation "
"of the %s SASL\nauthentication mechanism is "
"broken. Please report this to the\n"
"appropriate vendor and suggest that they "
@@ -586,7 +622,7 @@
/* send our challenge */
cmdbuf = g_strdup_printf ("%s\r\n", challenge);
g_free (challenge);
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf,
cancellable, error) == -1) {
@@ -599,6 +635,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
}
if (respbuf == NULL)
@@ -627,11 +664,11 @@
break_and_lose:
/* Get the server out of "waiting for continuation data" mode. */
- d (fprintf (stderr, "sending : *\n"));
+ d (fprintf (stderr, "[SMTP] sending: *\n"));
camel_stream_write (transport->ostream, "*\r\n", 3, cancellable, NULL);
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream), cancellable, NULL);
- d (fprintf (stderr, "received: %s\n", respbuf ? respbuf : "(null)"));
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf :
"(null)"));
lose:
result = CAMEL_AUTHENTICATION_ERROR;
@@ -694,6 +731,8 @@
const gchar *addr;
gint i, len;
+ smtp_debug_print_server_name (CAMEL_SERVICE (transport), "Sending
with");
+
if (!smtp_transport->connected) {
g_set_error (
error, CAMEL_SERVICE_ERROR,
@@ -1104,6 +1143,7 @@
buffer = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, NULL);
+ d (fprintf (stderr, "[SMTP] received: %s\n", buffer ?
buffer : "(null)"));
g_string_append_c (string, '\n');
} else {
g_free (buffer);
@@ -1210,7 +1250,7 @@
cmdbuf = g_strdup_printf ("%s %s\r\n", token, name);
g_free (name);
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
g_free (cmdbuf);
@@ -1227,6 +1267,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("HELO command failed: "));
transport->connected = FALSE;
@@ -1306,7 +1347,7 @@
else
cmdbuf = g_strdup_printf ("MAIL FROM:<%s>\r\n", sender);
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
@@ -1325,6 +1366,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("MAIL FROM command failed: "));
camel_service_disconnect_sync (
@@ -1358,7 +1400,7 @@
cmdbuf = g_strdup_printf ("RCPT TO:<%s>\r\n", recipient);
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
@@ -1378,6 +1420,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (
error, _("RCPT TO <%s> failed: "), recipient);
@@ -1428,7 +1471,7 @@
cmdbuf = g_strdup ("DATA\r\n");
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
@@ -1443,6 +1486,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream), cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf :
"(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("DATA command failed: "));
camel_service_disconnect_sync (
@@ -1529,7 +1573,7 @@
/* terminate the message body */
- d (fprintf (stderr, "sending : \\r\\n.\\r\\n\n"));
+ d (fprintf (stderr, "[SMTP] sending: \\r\\n.\\r\\n\n"));
if (camel_stream_write (
transport->ostream, "\r\n.\r\n", 5,
@@ -1547,6 +1591,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("DATA command failed: "));
camel_service_disconnect_sync (
@@ -1577,7 +1622,7 @@
cmdbuf = g_strdup ("RSET\r\n");
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
@@ -1596,6 +1641,7 @@
respbuf = camel_stream_buffer_read_line (
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("RSET command failed: "));
camel_service_disconnect_sync (
@@ -1626,7 +1672,7 @@
cmdbuf = g_strdup ("QUIT\r\n");
- d (fprintf (stderr, "sending : %s", cmdbuf));
+ d (fprintf (stderr, "[SMTP] sending: %s", cmdbuf));
if (camel_stream_write_string (
transport->ostream, cmdbuf, cancellable, error) == -1) {
@@ -1643,7 +1689,7 @@
CAMEL_STREAM_BUFFER (transport->istream),
cancellable, error);
- d (fprintf (stderr, "received: %s\n", respbuf ? respbuf :
"(null)"));
+ d (fprintf (stderr, "[SMTP] received: %s\n", respbuf ? respbuf
: "(null)"));
if (respbuf == NULL) {
g_prefix_error (error, _("QUIT command failed: "));
transport->connected = FALSE;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.12.7/configure
new/evolution-data-server-3.12.7.1/configure
--- old/evolution-data-server-3.12.7/configure 2014-10-13 08:40:09.000000000
+0200
+++ new/evolution-data-server-3.12.7.1/configure 2014-10-14
15:48:40.000000000 +0200
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for evolution-data-server 3.12.7.
+# Generated by GNU Autoconf 2.69 for evolution-data-server 3.12.7.1.
#
# Report bugs to
<http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server>.
#
@@ -651,8 +651,8 @@
# Identity of this package.
PACKAGE_NAME='evolution-data-server'
PACKAGE_TARNAME='evolution-data-server'
-PACKAGE_VERSION='3.12.7'
-PACKAGE_STRING='evolution-data-server 3.12.7'
+PACKAGE_VERSION='3.12.7.1'
+PACKAGE_STRING='evolution-data-server 3.12.7.1'
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server'
PACKAGE_URL=''
@@ -1750,7 +1750,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures evolution-data-server 3.12.7 to adapt to many kinds of
systems.
+\`configure' configures evolution-data-server 3.12.7.1 to adapt to many kinds
of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1821,7 +1821,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of evolution-data-server
3.12.7:";;
+ short | recursive ) echo "Configuration of evolution-data-server
3.12.7.1:";;
esac
cat <<\_ACEOF
@@ -2078,7 +2078,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-evolution-data-server configure 3.12.7
+evolution-data-server configure 3.12.7.1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2664,7 +2664,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by evolution-data-server $as_me 3.12.7, which was
+It was created by evolution-data-server $as_me 3.12.7.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3527,7 +3527,7 @@
# Define the identity of the package.
PACKAGE='evolution-data-server'
- VERSION='3.12.7'
+ VERSION='3.12.7.1'
cat >>confdefs.h <<_ACEOF
@@ -26741,7 +26741,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by evolution-data-server $as_me 3.12.7, which was
+This file was extended by evolution-data-server $as_me 3.12.7.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -26807,7 +26807,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //;
s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-evolution-data-server config.status 3.12.7
+evolution-data-server config.status 3.12.7.1
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/evolution-data-server-3.12.7/configure.ac
new/evolution-data-server-3.12.7.1/configure.ac
--- old/evolution-data-server-3.12.7/configure.ac 2014-09-08
09:07:35.000000000 +0200
+++ new/evolution-data-server-3.12.7.1/configure.ac 2014-10-14
15:43:08.000000000 +0200
@@ -5,7 +5,7 @@
m4_define([eds_micro_version], [7])
m4_define([eds_version],
- [eds_major_version.eds_minor_version.eds_micro_version])
+ [eds_major_version.eds_minor_version.eds_micro_version.1])
dnl Base Version: This is for API/version tracking for things like
dnl Bonobo server files. This should always be the major/minor of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.12.7/docs/reference/eds/html/api-index-full.html
new/evolution-data-server-3.12.7.1/docs/reference/eds/html/api-index-full.html
---
old/evolution-data-server-3.12.7/docs/reference/eds/html/api-index-full.html
2014-10-13 08:45:14.000000000 +0200
+++
new/evolution-data-server-3.12.7.1/docs/reference/eds/html/api-index-full.html
2014-10-14 15:52:32.000000000 +0200
@@ -2131,11 +2131,11 @@
</dt>
<dd></dd>
<dt>
-ECalObjModType, enum in e-cal-types
+CalObjModType, typedef in e-cal-types
</dt>
<dd></dd>
<dt>
-CalObjModType, typedef in e-cal-types
+ECalObjModType, enum in e-cal-types
</dt>
<dd></dd>
<dt>
@@ -5924,19 +5924,19 @@
</dt>
<dd></dd>
<dt>
-<a class="link" href="eds-Version-Checking.html#EDS-MAJOR-VERSION:CAPS"
title="EDS_MAJOR_VERSION">EDS_MAJOR_VERSION</a>, macro in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
+<a class="link" href="eds-Version-Checking.html#eds-major-version"
title="eds_major_version">eds_major_version</a>, variable in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
</dt>
<dd></dd>
<dt>
-<a class="link" href="eds-Version-Checking.html#eds-major-version"
title="eds_major_version">eds_major_version</a>, variable in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
+<a class="link" href="eds-Version-Checking.html#EDS-MAJOR-VERSION:CAPS"
title="EDS_MAJOR_VERSION">EDS_MAJOR_VERSION</a>, macro in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
</dt>
<dd></dd>
<dt>
-<a class="link" href="eds-Version-Checking.html#EDS-MICRO-VERSION:CAPS"
title="EDS_MICRO_VERSION">EDS_MICRO_VERSION</a>, macro in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
+<a class="link" href="eds-Version-Checking.html#eds-micro-version"
title="eds_micro_version">eds_micro_version</a>, variable in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
</dt>
<dd></dd>
<dt>
-<a class="link" href="eds-Version-Checking.html#eds-micro-version"
title="eds_micro_version">eds_micro_version</a>, variable in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
+<a class="link" href="eds-Version-Checking.html#EDS-MICRO-VERSION:CAPS"
title="EDS_MICRO_VERSION">EDS_MICRO_VERSION</a>, macro in <a class="link"
href="eds-Version-Checking.html" title="Version Checking">Version Checking</a>
</dt>
<dd></dd>
<dt>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.12.7/docs/reference/eds/html/index.html
new/evolution-data-server-3.12.7.1/docs/reference/eds/html/index.html
--- old/evolution-data-server-3.12.7/docs/reference/eds/html/index.html
2014-10-13 08:45:14.000000000 +0200
+++ new/evolution-data-server-3.12.7.1/docs/reference/eds/html/index.html
2014-10-14 15:52:32.000000000 +0200
@@ -15,7 +15,7 @@
<div class="titlepage">
<div>
<div><table class="navigation" id="top" width="100%" cellpadding="2"
cellspacing="0"><tr><th valign="middle"><p class="title">Evolution-Data-Server
Reference Manual</p></th></tr></table></div>
-<div><p class="releaseinfo">Reference Manual for evolution-data-server 3.12.7
+<div><p class="releaseinfo">Reference Manual for evolution-data-server 3.12.7.1
</p></div>
<div><div class="abstract">
<p class="title"><b>Abstract</b></p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.12.7/docs/reference/eds/version.xml
new/evolution-data-server-3.12.7.1/docs/reference/eds/version.xml
--- old/evolution-data-server-3.12.7/docs/reference/eds/version.xml
2014-10-13 08:40:22.000000000 +0200
+++ new/evolution-data-server-3.12.7.1/docs/reference/eds/version.xml
2014-10-14 15:48:51.000000000 +0200
@@ -1 +1 @@
-evolution-data-server 3.12.7
+evolution-data-server 3.12.7.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/evolution-data-server-3.12.7/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
new/evolution-data-server-3.12.7.1/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
---
old/evolution-data-server-3.12.7/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
2014-10-13 08:45:04.000000000 +0200
+++
new/evolution-data-server-3.12.7.1/modules/ubuntu-online-accounts/evolution-data-server-uoa.desktop
2014-10-14 15:52:31.000000000 +0200
@@ -89,4 +89,4 @@
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=evolution-data-server
X-GNOME-Bugzilla-Component=General
-X-GNOME-Bugzilla-Version=3.12.7
+X-GNOME-Bugzilla-Version=3.12.7.1
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]