aboutsummaryrefslogtreecommitdiffstats
path: root/debian/control
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2016-03-08 23:17:41 +0100
committerGuilhem Moulin <guilhem@fripost.org>2016-03-08 23:33:12 +0100
commit435d6bb2731f0205ff0789e8abeca189e0a35204 (patch)
tree9fae6781186d31f838b4de482516dda38627550f /debian/control
parentec87e1965d758bc3af4403a3cf469c3297f8cb1a (diff)
split
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control26
1 files changed, 25 insertions, 1 deletions
diff --git a/debian/control b/debian/control
index 0b11ac2..20088cf 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Vcs-Browser: https://git.guilhem.org/interimap
Package: interimap
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
- libconfig-tiny-perl, libdbi-perl, libdbd-sqlite3-perl, libnet-ssleay-perl
+ libinterimap, libdbi-perl, libdbd-sqlite3-perl
Description: Fast bidirectional synchronization for QRESYNC-capable IMAP servers
InterIMAP performs stateful bi-directional synchronization between two
IMAP4rev1 servers. Compared to the so-called "full" synchronization
@@ -25,3 +25,27 @@ Description: Fast bidirectional synchronization for QRESYNC-capable IMAP servers
[RFC2088] and MULTIAPPEND [RFC3502], these extensions greatly improve
performance by reducing the number of required round trips hence are
strongly recommended.
+
+Package: libinterimap
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libconfig-tiny-perl, libnet-ssleay-perl
+Description: Net::IMAP::InterIMAP library and utils
+ Net::IMAP::InterIMAP is a minimal IMAP4 client for QRESYNC-capable servers,
+ used by interimap. It can also be used for non QRESYNC-capable servers, but
+ that can be unsafe as it does not keep a mapping between message sequence
+ numbers and UIDs.
+
+Package: pullimap
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libinterimap
+Description: Pull mails from an IMAP mailbox and deliver them to a SMTP session
+ PullIMAP retrieves messages from an IMAP mailbox and deliver them to a SMTP
+ or LMTP transmission channel. It can also remove old messages after a
+ configurable retention period.
+ .
+ A statefile is used to keep track of the mailbox’s UIDVALIDITY and UIDNEXT
+ values. While PullIMAP is running, the statefile is also used to keep track
+ of UIDs being delivered, which avoids duplicate deliveries if the process is
+ interrupted.