search for: client_send_untagged_storage_error

Displaying 3 results from an estimated 3 matches for "client_send_untagged_storage_error".

2010 May 20
1
Patch for logging variables
...1.orig/src/imap/cmd-close.c 2010-01-24 16:14:17.000000000 -0700 --- dovecot-1.2.11/src/imap/cmd-close.c 2010-05-19 16:26:31.529833893 -0600 *************** *** 18,24 **** client->mailbox = NULL; storage = mailbox_get_storage(mailbox); ! if ((ret = imap_expunge(mailbox, NULL)) < 0) client_send_untagged_storage_error(client, storage); if (mailbox_sync(mailbox, 0, 0, NULL) < 0) client_send_untagged_storage_error(client, storage); --- 18,24 ---- client->mailbox = NULL; storage = mailbox_get_storage(mailbox); ! if ((ret = imap_expunge(client, NULL)) < 0) client_send_untagged_storage_err...
2010 May 19
1
logging
I am looking through the logging options and wondering if there are a couple of things that we can do 1. Logouts don't seem to show the IP address of the logout, we typically see multiple sessions at a time and wondering if there is a way to tie the logouts to an IP 2. POP logouts show the number of messages retrieved/deleted but I don't see a way to do this with IMAP, is there a logout
2005 Aug 24
0
verbose imap logging
...d-close.c 2005-03-08 21:26:55.000000000 +0100 +++ dovecot-1.0.alpha1/src/imap/cmd-close.c 2005-08-23 10:39:08.000000000 +0200 @@ -17,7 +17,7 @@ client->mailbox = NULL; if (!mailbox_is_readonly(mailbox)) { - if (!imap_expunge(mailbox, NULL)) + if (!imap_expunge(mailbox, NULL, client)) client_send_untagged_storage_error(client, storage); } diff -ur dovecot-1.0.alpha1.orig/src/imap/cmd-expunge.c dovecot-1.0.alpha1/src/imap/cmd-expunge.c --- dovecot-1.0.alpha1.orig/src/imap/cmd-expunge.c 2005-05-08 12:06:07.000000000 +0200 +++ dovecot-1.0.alpha1/src/imap/cmd-expunge.c 2005-08-23 10:39:08.000000000 +0200 @@ -28,7...