Displaying 8 results from an estimated 8 matches for "client_send_storage_error".
2010 May 20
1
Patch for logging variables
...-01-24
16:14:17.000000000 -0700
--- dovecot-1.2.11/src/imap/cmd-expunge.c 2010-05-19 16:26:31.529833893 -0600
***************
*** 24,30 ****
{
struct client *client = cmd->client;
! if (imap_expunge(client->mailbox, search_args == NULL ? NULL :
search_args->args) < 0) {
client_send_storage_error(cmd,
mailbox_get_storage(client->mailbox));
--- 24,30 ----
{
struct client *client = cmd->client;
! if (imap_expunge(client, search_args == NULL ? NULL :
search_args->args) < 0) {
client_send_storage_error(cmd,
mailbox_get_storage(client->mailbox));...
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
.../cmd-expunge.c 2005-08-23 10:39:08.000000000 +0200
@@ -28,7 +28,7 @@
if (search_arg == NULL)
return TRUE;
- if (imap_expunge(client->mailbox, search_arg))
+ if (imap_expunge(client->mailbox, search_arg, client))
return cmd_sync(cmd, 0, "OK Expunge completed.");
else {
client_send_storage_error(cmd,
@@ -44,7 +44,7 @@
if (!client_verify_open_mailbox(cmd))
return TRUE;
- if (imap_expunge(client->mailbox, NULL))
+ if (imap_expunge(client->mailbox, NULL, client))
return cmd_sync(cmd, 0, "OK Expunge completed.");
else {
client_send_storage_error(cmd,
diff -ur dov...
2003 Jun 03
1
error
hi,
I've got the following alert window in mozilla (with dovecot):
---------------------------------------
The current command did not succeed. The mail server responded: Error in
IMAP command: Too long argument..
---------------------------------------
although there is not any messages in my imap.log file.
--
Levente "Si vis pacem para bellum!"
2004 Sep 04
1
1.0-test39
http://dovecot.org/test/
Fixes several crashes. Apparently can still break with mboxes, although
it works with me..
-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 186 bytes
Desc: This is a digitally signed message part
URL:
2004 Oct 21
2
1.0-test51 / POP3 broken
...r: child 17627 (pop3) killed with signal 11
(gdb) bt
#0 0x1813bb8 in maildir_transaction_save_commit_post ()
#1 0x180f504 in maildir_transaction_commit ()
#2 0x183aff4 in mailbox_transaction_commit ()
#3 0x180b204 in clients_deinit ()
#4 0x180be9c in client_command_execute ()
#5 0x180a808 in client_send_storage_error ()
#6 0x184f43c in io_loop_handler_run ()
#7 0x184eba4 in io_loop_run ()
#8 0x180c4d4 in main ()
#9 0x1809c78 in _start ()
2005 Jun 03
2
POP3 download problem
Hi All
I am experiencing a mail download problem with dovecot's pop3 protocol. We
use outlook XP 2002 mail clients and I have setup a mail system with pop
accounts on a Fedora 2 installation using dovecot.
Some of the clients download email fine but others do not download email and
also do not give any error messages. I have enabled the "verbose" options in
the
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...pipe and save any lingering output, which also
+ crucially passes EOF down through the mailbox_save stack */
+ o_stream_close(ctx->cat.output);
+ if (mailbox_save_continue(ctx->save_ctx) < 0 ||
+ mailbox_save_finish(&ctx->save_ctx) < 0) {
+ ctx->failed = TRUE;
+ client_send_storage_error(ctx->cmd, ctx->storage);
+ cancel = TRUE;
+ } else {
+ ctx->save_ctx = NULL;
+ ++ctx->count;
+ }
+
+ if (ctx->args == NULL) {
+ // eat CRLF after close of CATENATE list
+ ctx->cmd->client->input_skip_line = TRUE;
+ }
+ }
+
+ if (ctx->cat.output != NULL)
+ o...