Displaying 9 results from an estimated 9 matches for "mail_delet".
Did you mean:
mail_deleted
2003 Sep 29
1
Handling of X-Status flags
...maildir-index.c Fri Jun 27 00:11:06 2003
+++ dovecot-0.99.10.brb/src/lib-index/maildir/maildir-index.c Sat Sep 27 13:17:04 2003
@@ -109,10 +109,10 @@
case 'S': /* seen */
flags |= MAIL_SEEN;
break;
- case 'T': /* trashed */
+ case 'D': /* trashed */
flags |= MAIL_DELETED;
break;
- case 'D': /* draft */
+ case 'T': /* draft */
flags |= MAIL_DRAFT;
break;
case 'F': /* flagged */
@@ -168,9 +168,9 @@
nextflag = *oldflags == '\0' || *oldflags == ',' ? 256 :
(unsigned char) *oldflags;
- if ((flags &...
2003 Oct 02
2
Patches
As the freeze for Debian sarge slowly approaches I want to make sure
the Dovecot packages are in as good condition as possible. I see there
have been a number of patches since 0.99.10. I have added the following
patches:
* segfault when user home directory is empty
* Proper PAM service name
* Make suid work on 2.6 kernels
Any other patches thatI ought to add. Or better yet, will there be a
2009 Aug 11
1
dovecot-1.2.3 (managesieve) crash with backtrace
...ction (dest_trans=<value optimized out>,
mail=0x94264b8, event=MAIL_LOG_EVENT_DELETE, data=0x0)
at mail-log-plugin.c:318
size = <value optimized out>
str = (string_t *) 0x940c368
#22 0xb7e73494 in mail_log_mail_update_flags (_mail=0x94264b8,
modify_type=MODIFY_ADD, flags=MAIL_DELETED) at mail-log-plugin.c:376
_data_stack_cur_id = 16960
lmail = <value optimized out>
old_flags = <value optimized out>
new_flags = <value optimized out>
#23 0x08065e95 in cmd_store (cmd=0x9419688) at cmd-store.c:192
client = (struct client *) 0x94193f8
args = (const struct i...
2005 Aug 24
0
verbose imap logging
...ot-1.0.alpha1/src/imap/cmd-store.c
--- dovecot-1.0.alpha1.orig/src/imap/cmd-store.c 2005-03-29 10:38:42.000000000 +0200
+++ dovecot-1.0.alpha1/src/imap/cmd-store.c 2005-08-23 10:39:08.000000000 +0200
@@ -99,6 +99,10 @@
failed = TRUE;
break;
}
+
+ if( ( (mail_get_flags(mail) & MAIL_DELETED) == 0) &&
+ (flags & MAIL_DELETED))
+ client->deleted_count++;
}
if (modify_type == MODIFY_REPLACE || keywords != NULL) {
if (mail_update_keywords(mail, modify_type,
diff -ur dovecot-1.0.alpha1.orig/src/imap/imap-expunge.c dovecot-1.0.alpha1/src/imap/imap-expung...
2007 Oct 25
1
Messages not marked as read
Hello everybody,
Recently I have migrated my IMAP server from Courier-IMAP to
dovecot. The migration was successful and all the users are happy due
to the speed of the new IMAP server. We are using Horde-3.2+IMP-4.2
as the webmail client.
But one of the users is having some unusual issues with his mailbox.
Whenever he clicked and open a new email, it's never marked as read.
He has to click
2008 Jun 21
0
dovecot-1.1.0: child (imap) killed with signal 11
...rch_arg=0x0) at imap-expunge.c:31
ctx = (struct mail_search_context *) 0x8171b58
t = (struct mailbox_transaction_context *) 0x8192eb0
mail = (struct mail *) 0x8199028
search_arg = {next = 0x0, type = SEARCH_FLAGS, value = {subargs = 0x0, seqset = 0x0, str = 0x0, time = 0, size = 0,
flags = MAIL_DELETED, keywords = 0x0}, context = 0x0, hdr_field_name = 0x0, not = 0, match_always = 0, result = -1}
failed = <value optimized out>
#6 0x0805b505 in cmd_expunge (cmd=0x8165028) at cmd-expunge.c:62
client = (struct client *) 0x8162f50
#7 0x0805f8ed in client_command_input (cmd=0x8165028) at cl...
2008 Nov 22
1
core in lazy_expunge plugin
...ctx = (struct mail_search_context *) 0x2ac06e9b87d0
t = (struct mailbox_transaction_context *) 0x2ac06e9aed10
mail = (struct mail *) 0x2ac06e9b89e8
search_arg = {next = 0x0, type = SEARCH_FLAGS, value = {subargs
= 0x0, seqset = 0x0, str = 0x0, time = 0, size = 0,
flags = MAIL_DELETED, keywords = 0x0}, context = 0x0, hdr_field_name
= 0x0, not = 0, match_always = 0, result = -1}
failed = <value optimized out>
#2 0x00000000004171da in cmd_expunge (cmd=0x2ac06e982378) at
cmd-expunge.c:62
client = (struct client *) 0x2ac06e982000
#3 0x000000000041b53c in cl...
2009 Feb 11
2
dbox redesign
...ith multiple msgs/file. It had complex file range locking stuff.
Now I'm thinking that it's pretty much useless. The only reason for its
existence with the new design is for listing metadata for files
converted from Maildir.
Map index record would contain:
- 32 bit map UID
- 8 bit flags (MAIL_DELETED flag = message marked as expunged)
- 8 bit unused wasted space
- 16 bit refcount
- 32 bit file sequence
- 32 bit file offset
--> total 128 bits/msg
Mailbox index:
- IMAP UID, flags, keywords, etc.
- 32 bit map UID
- 128 bit GUID
dbox file metadata:
- 128 bit GUID
- size, vsize, rec...
2014 Jul 28
2
not able to compile deleted_to_trash Plugin
...e' has no member named 'ns'
ns = get_users_inbox_namespace(_mail->box->storage->ns->user);
^
deleted-to-trash-plugin.c:181:113: error: 'struct mail_storage' has no member named 'ns'
if(new_flags & MAIL_DELETED && !(strcmp(_mail->box->name, trashfolder_name) == 0 && strcmp(_mail->box->storage->ns->prefix, ns->prefix) == 0))
^
deleted-to-trash-plugin.c: In...