]> git.llucax.com Git - software/mutt-debian.git/commitdiff
debian/patches: features/imap_fast_trash: Support purging of messages.
authorChristoph Berg <myon@debian.org>
Wed, 6 Oct 2010 12:45:28 +0000 (14:45 +0200)
committerChristoph Berg <myon@debian.org>
Wed, 6 Oct 2010 12:45:28 +0000 (14:45 +0200)
debian/changelog
debian/patches/features/imap_fast_trash

index 0ec2c6e2b61373b72b6a3915f493c6036a2e3df7..36502cfad2e53a5c0889c5739864292c55828a0c 100644 (file)
@@ -1,3 +1,9 @@
+mutt (1.5.21-2) UNRELEASED; urgency=low
+
+  * debian/patches: features/imap_fast_trash: Support purging of messages.
+
+ -- Christoph Berg <myon@debian.org>  Wed, 06 Oct 2010 14:13:53 +0200
+
 mutt (1.5.21-1) experimental; urgency=low
 
   * New upstream version (Closes: 597487)
index d40d169c1cf44293b8737ecd8e3b63ae4d006d31..b335bd91cc826ce87e4a00b29b947aaa0d5d23e6 100644 (file)
@@ -6,7 +6,20 @@ by Paul Miller (jettero)
 
 --- a/imap/imap.c
 +++ b/imap/imap.c
-@@ -2028,3 +2028,54 @@
+@@ -893,6 +893,12 @@ static int imap_make_msg_set (IMAP_DATA*
+           if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted)
+             match = invert ^ hdrs[n]->deleted;
+         break;
++        case M_EXPIRED: /* imap_fast_trash version of M_DELETED */
++        if (hdrs[n]->purged)
++          break;
++          if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted)
++            match = invert ^ hdrs[n]->deleted;
++        break;
+         case M_FLAG:
+           if (hdrs[n]->flagged != HEADER_DATA(hdrs[n])->flagged)
+             match = invert ^ hdrs[n]->flagged;
+@@ -2028,3 +2034,54 @@ int imap_complete(char* dest, size_t dle
  
    return -1;
  }
@@ -30,7 +43,7 @@ by Paul Miller (jettero)
 +                    strfcpy (mbox, "INBOX", sizeof (mbox));
 +                imap_munge_mbox_name (mmbox, sizeof (mmbox), mbox);
 +
-+                rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_DELETED, 0, 0);
++                rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_EXPIRED, 0, 0);
 +                if (!rc) {
 +                    dprint (1, (debugfile, "imap_copy_messages: No messages del-tagged\n"));
 +                    rc = -1;
@@ -63,7 +76,7 @@ by Paul Miller (jettero)
 +}
 --- a/imap/imap.h
 +++ b/imap/imap.h
-@@ -72,4 +72,7 @@
+@@ -72,4 +72,7 @@ void imap_keepalive (void);
  
  int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2);
  
@@ -73,7 +86,7 @@ by Paul Miller (jettero)
  #endif
 --- a/mx.c
 +++ b/mx.c
-@@ -802,6 +802,11 @@
+@@ -802,6 +802,11 @@ static int trash_append (CONTEXT *ctx)
        && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev)
        return 0;  /* we are in the trash folder: simple sync */