Your message dated Sat, 24 Dec 2016 21:02:11 +0000
with message-id <e1cktsf-000f8u...@fasolo.debian.org>
and subject line Bug#787398: fixed in evolution-data-server
3.12.9~git20141128.5242b0-2+deb8u3
has caused the Debian Bug report #787398,
regarding evolution-data-server: SMTP connection lost while reading message data
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
787398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: evolution-data-server
Version: 3.12.9~git20141128.5242b0-2+deb8u2
Severity: critical
Tags: patch
Justification: causes serious data loss
Hi there,
there is a serious bug in libcamel 3.12.3. This bug is not fixed in
3.12.11 and since 3.12.11 is the last upstream release of that
branch, it will not get fixed in any 3.12.x version ever.
It happens that you when send a mail in Evolution, the program reports no
error message at all and moves your mail to the Sent folder, whereas
the mail has not been sent at all! On the SMTP server side an error
like "SMTP connection lost while reading message data" is logged.
This happens especially with mails with attachments. The bug has been
identified upstream and is fixed in the 3.16 series, but not in 3.12 as
mentioned before:
https://bugzilla.gnome.org/show_bug.cgi?id=749292
The patch is simple and replaces a call to g_output_stream_write()
aith one to g_output_stream_write_all(). I have applied this patch to
a local copy I rebuilt of e-d-s and confirm that it fixes the issue
for me.
Since this issue caused silent loss of important data for me, I'd like
to ask for the patch to get applied to the 3.12 version in unstable
ASAP. Also, I believe this must definitely get applied to the version
in stable as well.
Thank you very much already,
- Fabian
-- System Information:
Debian Release: stretch/sid
APT prefers testing
APT policy: (990, 'testing'), (500, 'experimental'), (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
Versions of packages evolution-data-server depends on:
ii evolution-data-server-common 3.12.9~git20141128.5242b0-2+deb8u2
ii gnome-keyring 3.16.0-2
ii libc6 2.19-18
ii libcamel-1.2-49 3.12.9~git20141128.5242b0-2+deb8u2
ii libdb5.3 5.3.28-9
ii libebackend-1.2-7 3.12.9~git20141128.5242b0-2+deb8u2
ii libebook-1.2-14 3.12.9~git20141128.5242b0-2+deb8u2
ii libebook-contacts-1.2-0 3.12.9~git20141128.5242b0-2+deb8u2
ii libecal-1.2-16 3.12.9~git20141128.5242b0-2+deb8u2
ii libedata-book-1.2-20 3.12.9~git20141128.5242b0-2+deb8u2
ii libedata-cal-1.2-23 3.12.9~git20141128.5242b0-2+deb8u2
ii libedataserver-1.2-18 3.12.9~git20141128.5242b0-2+deb8u2
ii libgcr-base-3-1 3.14.0-2
ii libgcr-ui-3-1 3.14.0-2
ii libgdata19 0.16.1-1
ii libglib2.0-0 2.45.1-2
ii libgoa-1.0-0b 3.14.2-1
ii libgtk-3-0 3.14.5-1
ii libgweather-3-6 3.16.1-1
ii libical1a 1.0-1.3
ii libldap-2.4-2 2.4.40+dfsg-1
ii libpango-1.0-0 1.36.8-3
ii libsecret-1-0 0.18.2-1
ii libsoup2.4-1 2.48.0-1
ii libxml2 2.9.1+dfsg1-5
evolution-data-server recommends no packages.
Versions of packages evolution-data-server suggests:
ii evolution 3.12.9~git20141130.241663-1+b1
pn evolution-data-server-dbg <none>
-- no debconf information
>From bae0c643978a67f5368b6b0e5638b97687ee443a Mon Sep 17 00:00:00 2001
From: Milan Crha <mc...@redhat.com>
Date: Mon, 9 Feb 2015 12:58:09 +0100
Subject: Make camel_stream_write() try to write all bytes at once
The default implementation of CamelStream::write() used
g_output_stream_write() method, which could write only a partial
content, returning how many bytes had been actually written. That's
fine, but not each caller counted with this, thus for example
a CamelStreamFilter::write() failed when only partial buffer had
been written, which could cause a silent failure on message send.
Easier than taking care of the not-whole-buffer-written state
at each place of the usage is to use g_output_stream_write_all()
function instead, which fails only on errors.
This had been reported downstream as:
https://bugzilla.redhat.com/show_bug.cgi?id=1186815
diff --git a/camel/camel-stream.c b/camel/camel-stream.c
index a4270f5..980c70b 100644
--- a/camel/camel-stream.c
+++ b/camel/camel-stream.c
@@ -147,20 +147,25 @@ stream_write (CamelStream *stream,
GError **error)
{
GIOStream *base_stream;
- gssize n_bytes_written = (gssize) n;
+ gssize n_bytes_written = -1;
base_stream = camel_stream_ref_base_stream (stream);
if (base_stream != NULL) {
GOutputStream *output_stream;
+ gsize n_written = 0;
output_stream = g_io_stream_get_output_stream (base_stream);
stream->eos = FALSE;
- n_bytes_written = g_output_stream_write (
- output_stream, buffer, n, cancellable, error);
+ if (g_output_stream_write_all (output_stream, buffer, n, &n_written, cancellable, error))
+ n_bytes_written = (gssize) n_written;
+ else
+ n_bytes_written = -1;
g_object_unref (base_stream);
+ } else {
+ g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Cannot write with no base stream"));
}
return n_bytes_written;
--
cgit v0.10.2
--- End Message ---
--- Begin Message ---
Source: evolution-data-server
Source-Version: 3.12.9~git20141128.5242b0-2+deb8u3
We believe that the bug you reported is fixed in the latest version of
evolution-data-server, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 787...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Wouter Verhelst <wou...@debian.org> (supplier of updated evolution-data-server
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 21 Dec 2016 18:31:01 +0100
Source: evolution-data-server
Binary: evolution-data-server evolution-data-server-common
evolution-data-server-dev evolution-data-server-dbg evolution-data-server-doc
libedataserver-1.2-18 libedataserver1.2-dev gir1.2-edataserver-1.2
libcamel-1.2-49 libcamel1.2-dev libebook-1.2-14 libebook1.2-dev
gir1.2-ebook-1.2 libedata-book-1.2-20 libedata-book1.2-dev
gir1.2-ebookcontacts-1.2 libebook-contacts-1.2-0 libebook-contacts1.2-dev
libecal-1.2-16 libecal1.2-dev libedata-cal-1.2-23 libedata-cal1.2-dev
libebackend-1.2-7 libebackend1.2-dev
Architecture: source all amd64
Version: 3.12.9~git20141128.5242b0-2+deb8u3
Distribution: jessie
Urgency: medium
Maintainer: Debian Evolution Maintainers
<pkg-evolution-maintain...@lists.alioth.debian.org>
Changed-By: Wouter Verhelst <wou...@debian.org>
Description:
evolution-data-server - evolution database backend server
evolution-data-server-common - architecture independent files for Evolution
Data Server
evolution-data-server-dbg - evolution database backend server with debugging
symbols
evolution-data-server-dev - Development files for evolution-data-server
(metapackage)
evolution-data-server-doc - Documentation files for the Evolution Data Server
libraries
gir1.2-ebook-1.2 - GObject introspection for the EBook library
gir1.2-ebookcontacts-1.2 - GObject introspection for the EBook Contacts library
gir1.2-edataserver-1.2 - GObject introspection for the EDataServer library
libcamel-1.2-49 - Evolution MIME message handling library
libcamel1.2-dev - Development files for libcamel
libebackend-1.2-7 - Utility library for evolution data servers
libebackend1.2-dev - Utility library for evolution data servers (development
files)
libebook-1.2-14 - Client library for evolution address books
libebook-contacts-1.2-0 - Client library for evolution contacts books
libebook-contacts1.2-dev - Client library for evolution contacts books
(development files)
libebook1.2-dev - Client library for evolution address books (development
files)
libecal-1.2-16 - Client library for evolution calendars
libecal1.2-dev - Client library for evolution calendars (development files)
libedata-book-1.2-20 - Backend library for evolution address books
libedata-book1.2-dev - Backend library for evolution address books
(development files)
libedata-cal-1.2-23 - Backend library for evolution calendars
libedata-cal1.2-dev - Backend library for evolution calendars (development
files)
libedataserver-1.2-18 - Utility library for evolution data servers
libedataserver1.2-dev - Utility library for evolution data servers
(development files)
Closes: 787398
Changes:
evolution-data-server (3.12.9~git20141128.5242b0-2+deb8u3) jessie;
urgency=medium
.
* Non-maintainer upload.
* d/p/06_787398_bae0c64_fix_connection_drop.patch: cherry-pick commit
bae0c64 from upstream git to fix premature drop of connection with
reduced TCP window sizes and resulting loss of data. Closes:
#787398.
Checksums-Sha1:
9114fe945343e3b6384114cff0991820c9372a59 5215
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.dsc
259ae942deb0d748224141278aca166ef5c03bac 45528
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.debian.tar.xz
8a5171bc992636c37b261c630404bf54e54ac8f1 1135992
evolution-data-server-common_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
26bacecfc49fecda482011386f76f98b3838978b 1472790
evolution-data-server-doc_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
e71da86c12c155dcf74baf4596a379bf153631ac 562962
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
3e3b50cd6bf5f0690e6635a6edcc7c669fc1cc13 120456
evolution-data-server-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
a5f394b685503ee490cac122604915ee0777a425 5316994
evolution-data-server-dbg_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
867ba85ca692c957c6f51dddf6ea100f1f27d2b4 312352
libedataserver-1.2-18_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
e953f431009ebfff33426f68bcb2459467270d09 196698
libedataserver1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
c3c47f9edd0e553147ce85777a4b55986f8e54a9 136038
gir1.2-edataserver-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
3bfd27b2d86fcf124c16814426922a56af2e28c9 484136
libcamel-1.2-49_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
68086e204ec7e4c635835bb40a8e2216d5ece042 176222
libcamel1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
28fd7cd91c474c65fbde5e255c49904c51dea5a0 174004
libebook-1.2-14_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
cd563a06eed672e20b5ab3ea779cdbca196ddef4 139414
libebook1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
728d1cb855da06867bafe022b770ff5600290226 123728
gir1.2-ebook-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
e30d4ed10baf890176d8ab433a1a3a428af90b67 235592
libedata-book-1.2-20_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4436cc0cb07e57459f73a54eee8ce80b2841858d 132808
libedata-book1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
5f00c11be3259c943db4a63fa26b7e14453838fb 128780
gir1.2-ebookcontacts-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
bff1a87be7b2e6d78aeba2d2dd5151bd14ae64be 169808
libebook-contacts-1.2-0_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
bba144501f0a28164dcfc0f5a6c1b81080de2122 151272
libebook-contacts1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
f06585f80cd6ec7e6ffcbbd2f6716f2ededf228d 216098
libecal-1.2-16_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4158ccc5810d7b6f616dc47eafb148fbc67399d3 132074
libecal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
b941de8152b17169db43a173a4426b12e6b4ae44 185142
libedata-cal-1.2-23_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
5e12f6acaef2c56afd9bba662d2c0bc7754f17b5 127340
libedata-cal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4018fc1332622e09fc882b40611185754adf9cef 238792
libebackend-1.2-7_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
baffd6b13db8a85edfed433edfe8df7edb7abb2d 129710
libebackend1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
Checksums-Sha256:
c9843d35e6ac7f1eae58f4005abe911a3be19a877dbc686da7587756111b858c 5215
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.dsc
5115c9bd6b074f22d230d72a1c3afae214827991dffe295e122f01f85d715d3c 45528
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.debian.tar.xz
ed6ca2d07b13543a02376c950f2b8c5c375819c3af4c5be50cecf4b48e0e6922 1135992
evolution-data-server-common_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
8be173bd160967616f10f3cb040051f4ed985959f43935b7614db16e79ba5104 1472790
evolution-data-server-doc_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
b38a3e8d719596d2889982443dfc18c6bdedff7f39a62ad3181c9c9dee5a52c5 562962
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
bd791cfb7117da56e01e210eec80da6fb714b0ed2bb4dd5a60f231e61bc91c39 120456
evolution-data-server-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
49835efe2d7935ec0a69de271372968adce1641cbc1131b64acae26f67515036 5316994
evolution-data-server-dbg_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
0e0e4cc65d8948cd1db7ab4be756607faf7193c14f7a324d5c3c23de1119454d 312352
libedataserver-1.2-18_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
77f0915e619d448e5517eb026c2a75b357b3138119ed1f349141658408a09100 196698
libedataserver1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
0de4bbe84bdcced6f9a26436596aeffa8cdc8164b92c69088866080bbbd1bdd2 136038
gir1.2-edataserver-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
fed1e831f045bdc19e198289333c44793c3aef7ebc3e1e05f81891bff0b2389a 484136
libcamel-1.2-49_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
904a07d83c9883adc3be2b43eb28b7f976fdd303e231a3732d76ccfde8744753 176222
libcamel1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
d9cb846c0034407d35be948d909dc516dfba70da364e5340ca3d5bfe8ea51db0 174004
libebook-1.2-14_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
fe5b0295041b99b9bdb63f8ed9d1648b3e63253bb32ea0a85aae8f9c3d78fc3c 139414
libebook1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
b1de55586de3ec46c1069847b383e95cba177d451d6b6b1b34d9911914d9e77e 123728
gir1.2-ebook-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4ec92b251653a51e9b7f932943ccfbe59f510b03b5808ae316d13aa0656b7819 235592
libedata-book-1.2-20_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
709c9570c3181e3a497eb3ddbe867b3a628994770356afd5589f62f4fc26496f 132808
libedata-book1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
0653e6c08bb9878468c0c320943067c338dad84f3b0e8b5d3b5a481061cff750 128780
gir1.2-ebookcontacts-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
21f4b8de64f4aab30ee8688c5932de34c958ff050176c10b64719590cf289180 169808
libebook-contacts-1.2-0_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
597a830d36a86bac05c5dbee05947ab64f0e01d53df23319efd2c06299b65b67 151272
libebook-contacts1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
7c14e0b6a268c621aa6213bfaf231db15737848e3aa0d7a083a4410b23a469ca 216098
libecal-1.2-16_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
fd9df25a54e1d13430d0791b689e1528b6d6ab12c8cb32ce3784f9d4499d502f 132074
libecal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
e8f7d4210f915a9328640d311862b03c64412c5ed424fe6447248e507f792fb7 185142
libedata-cal-1.2-23_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4ebcf6137f82026ab2853d9cb0d3b10558016bd5dd2f7fe86f29bf12883c5a9d 127340
libedata-cal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
12b9486b96a810a932d7fc98ceee0682a9241a76a6c51dfaa16bbdd6b1f0509d 238792
libebackend-1.2-7_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4ae65f7493c74be8a367ca0a48ec66befbf17196406f847887f34e69180547a6 129710
libebackend1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
Files:
f2f723909c7c8fefdcf9884a00d0bb4f 5215 gnome optional
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.dsc
a6cd810e5aa3522cbc1f621d706535b7 45528 gnome optional
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3.debian.tar.xz
9c512577e6d9b1f382665a52d3263c9d 1135992 gnome optional
evolution-data-server-common_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
7db5885ae8717c5deb5f2257831bebbb 1472790 doc optional
evolution-data-server-doc_3.12.9~git20141128.5242b0-2+deb8u3_all.deb
d57c421a02bd1c8ae66db889ea1841a7 562962 gnome optional
evolution-data-server_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
6dd7684512ea81cb8d0914bd279bc1f0 120456 devel optional
evolution-data-server-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
4de08b77b39e795b4df8e79d6951aabc 5316994 debug extra
evolution-data-server-dbg_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
f213af6f5ca5e7b8d510756a6cca87a8 312352 libs optional
libedataserver-1.2-18_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
e88d27edcb269c77e646359d170aa7fe 196698 libdevel optional
libedataserver1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
a7aca2733363791094fcef44466d8974 136038 introspection optional
gir1.2-edataserver-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
78f59599cf4ba0662b0bc6f27d4a789b 484136 libs optional
libcamel-1.2-49_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
234b37780c2af39fe1493f25097daff9 176222 libdevel optional
libcamel1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
b7f1d308dacf49c24c469380de11c198 174004 libs optional
libebook-1.2-14_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
21a8eeb9c7fabe785887434ffb8a145c 139414 libdevel optional
libebook1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
80dfd6f94dd9ea9f4ffb38066098b8c3 123728 introspection optional
gir1.2-ebook-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
3e6125f1fb4dc291a060101735be2dd2 235592 libs optional
libedata-book-1.2-20_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
2cbb5386ba97ad3621a0f37c63b34b4c 132808 libdevel optional
libedata-book1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
061741d652c905f3229cbc9d9db8c366 128780 introspection optional
gir1.2-ebookcontacts-1.2_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
b03ad3a8accd4f10fdf6bde0724554fc 169808 libs optional
libebook-contacts-1.2-0_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
a726d2ccf1823f7d3ab7e4bea46b02e3 151272 libdevel optional
libebook-contacts1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
04af709f229b733433e1059706f7ab5e 216098 libs optional
libecal-1.2-16_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
2249376a073b46b5116fcac76bc8a45b 132074 libdevel optional
libecal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
fa7064854eb2c15d71964e11bb8d3174 185142 libs optional
libedata-cal-1.2-23_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
bca4ce11e1a544049366c2d6de2fd745 127340 libdevel optional
libedata-cal1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
1cdb18f05b9838e496b421a9c6983d71 238792 libs optional
libebackend-1.2-7_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
c9f58159dd6ebe025522885619ac4860 129710 libdevel optional
libebackend1.2-dev_3.12.9~git20141128.5242b0-2+deb8u3_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQJGBAEBCAAwFiEEhzp22k7Yad9NSkS9wpQPlRvfCp0FAlhbj/gSHHdvdXRlckBk
ZWJpYW4ub3JnAAoJEMKUD5Ub3wqdunEQALNHGX16ezhCimzmQIqElzF915hu3R0c
wV/NWB+a6wBsZeoYSgmNjWCNJK7xyjq46gfa8rfE08ZUQR8Mgw532R24ae0DZVO5
vHyFLJA4eUBedpZYNdkL1pBg0TGEJcXiDRNYOcQIUhAZMzLnWQ30a3JYkkpo2IPg
ifXFC9vYoU2rEHgDD04RYptEP+Z1Kh/nLVpHznbQ02d3Vv1dPUwBFZcDYBsoaSkK
UTX7tbzKFVLf5oTyE0qqeiLUPI79Tzu5G2ShN6K5awoC0sLcU8dEodv64ojPOzI0
aXkkT1SrzwmPOd9yGJMkfX/dVWoNJKe1sl9FMPP+VYc1VD6BlXe69eiVAHmmp7+7
BhiCUpsRjTwk3omNw2enXLi899PRloFKDqaDS4ZAg9byS8+0AM6o6bmuG1+5xM1E
yVSEMZ7MA9i8IF0Y0cmGtEMYXrs84/j0TTrpttRnoxKpKXLdGDYClYBbBy1xaiBy
vwNvR6WuTmtTYidnLnAzuKsV9Jr3db/4Cs9dAXCHJKx5nYfYOiFkIflKx9KrWj+3
hPFplmD9gOXE4XwJl3+ZOh84CGloUOh+yqyaUhIriTPXmyDjtf5iKAWgHgPq1HPI
CzgVXaHzzZ9R4nFAgwll88mFzcHJRmf7AeF9mXnwBpWa4DzM3DpwWfYstzQbuDoo
wKhgyd5BMb6L
=pMcy
-----END PGP SIGNATURE-----
--- End Message ---