search for: mail_get_flags

Displaying 5 results from an estimated 5 matches for "mail_get_flags".

2005 May 11
1
Segfault in imap process
...b/todd.bluegenesis.com/.imap/INBOX/dovecot.index.cache: Duplicated field in header: hdr.RESENT-TO dovecot: May 11 15:02:00 Error: child 8438 (imap) killed with signal 11 Core was generated by `imap'. Program terminated with signal 11, Segmentation fault. (gdb) bt full #0 0x08074d10 in index_mail_get_flags (_mail=0x80c86d0) at index-mail.c:162 data = (struct index_mail_data *) 0x80c8734 #1 0x0808c86d in mail_get_flags (mail=0xb7c71834) at mail.c:32 No locals. #2 0x0805a6a5 in fetch_flags (ctx=0x80bee70, mail=0x80c86d0, context=0x0) at imap-fetch.c:444 flags = Variable "f...
2005 Aug 22
0
Segfault in imap
...Aug. 15. dovecot: Aug 21 17:16:56 Error: 28017 IMAP(todd): Corrupted index cache file /mailhome/new/t/b/todd/.imap/INBOX/dovecot.index.cache: Duplicated field in header: hdr.RESENT-TO dovecot: Aug 21 17:19:44 Error: child 28017 (imap) killed with signal 11 (gdb) bt full #0 0x08076b50 in index_mail_get_flags (_mail=0x80cbd20) at index-mail.c:152 data = (struct index_mail_data *) 0x80cbd84 #1 0x0808eb4d in mail_get_flags (mail=0xb7de7088) at mail.c:32 No locals. #2 0x0805a9d5 in fetch_flags (ctx=0x80c1ed0, mail=0x80cbd20, context=0x0) at imap-fetch.c:445 flags = Variable "f...
2005 Jun 04
0
Crash and Assertion Error
...47:29 Error: 4659 IMAP(todd.bluegenesis.com): Corrupted index cache file /mailhome/new/t/b/todd.bluegenesis.com/.imap/INBOX/dovecot.index.cache: Duplicated field in header: hdr.RESENT-TO dovecot: Jun 04 06:49:36 Error: child 4659 (imap) killed with signal 11 (gdb) bt full #0 0x08074d70 in index_mail_get_flags (_mail=0x80c9170) at index-mail.c:162 data = (struct index_mail_data *) 0x80c91d4 #1 0x0808c98d in mail_get_flags (mail=0xb7dd3854) at mail.c:32 No locals. #2 0x0805a6f5 in fetch_flags (ctx=0x80bee50, mail=0x80c9170, context=0x0) at imap-fetch.c:444 flags = Variable "flag...
2008 Sep 12
1
API Examples?
I need to write a little client to just get the 5 most recent email headers (and \Seen status) from the INBOX of a given user. Are there any API examples anywhere that would speed this process along, or any spots in the source that would give me a jump start? or would it be better to act as an IMAP client? Many Thanks In Advance, Tom -- View this message in context:
2005 Aug 24
0
verbose imap logging
.../src/imap/cmd-store.c dovecot-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.alph...