With IceWarp IMAP server, the non-wildcarded form of LIST that
Geary was some times using was causing the Spam folder to return
a different name, triggering an assertion in Geary. This patch
works around that problem using an internal cache of folder names
and attributes, which is something we should've been doing anyway.
This constructor didn't initialize the required RFC822.Date field,
which causes a crash with the geary-mailer (and could potentially
cause issues elsewhere in the future). However, had to expand the
RFC822.Date class in order to accomodate this fix.
Geary will autodetect which version of the library is installed
and select the appropriate .metadata file to use for bindings.
Still backwards-compatible with Geary 1.10 to 2.0.
Previously ClientSession.connect_async() could leave the object in
a LOGGED_OUT state if the connection was denied by the server or
a timeout occurred when connecting. This was bad because that
state indicates that the underlying connection may still be active
and needs an async close to occur. Now connect_async() guarantees
that the connection is closed/disconnected/dead if it throws an
Error.
Not sure if something changed in git, but we discovered the debian
directory was being included in the dist tarball, after Geary 0.3. This
change seems to fix it in modern git.
Unfortunately, CMake doesn't allow us to exclude WebKitGTK 2.1.1
to 2.1.90.0, which are the versions that don't have the symbols
we need to build cleanly. We'll have to assume that anyone building
with an installed WebKitGTK package is using a stable release.
Found a hole in vector synchronization that could cause new
message UIDs not to be pulled. However, did set epoch for
account synchronizing to 1971 (rather than 1 A.D.) out of sanity's
sake.
The pipes from last time were probably allowing any webkitgtk version,
which isn't what we want. With this, we don't support old builds, but
we don't even try to support old builds anyway.
Problem was introduced when persistent remove markers in ImapDB.Folder
were reintroduced.
Also fixes issue where removing a message before connect doesn't
have immediate response. Conversation Monitor changed to use
LOCAL_ONLY listing when doing a Fill Window prior to the folder
being remote-opened.
Having some trouble on Daily Build PPA, hopefully this will
allow a range of WebKitGTK libraries while still disallowing
version 2, which we don't build with.
I just now received a message that Geary dated as Friday (i.e.
tomorrow). It turns out some of my mail is in TZ +0000 and some
-0700. When it's +0000, Geary wasn't converting into local time
before displaying.
The argument against doing this conversion in Imap.InternalDate
is that it's holding as accurate a conversion as possible from
the server's representation and the DateTime object, down to the
timezone. Callers who intend to display the date should convert
to local time before doing so.