Displaying 16 results from an estimated 16 matches for "client_send_taglin".
Did you mean:
client_send_tagline
2010 Jul 05
4
sieve dovecot2 rc1 error undefined symbol: client_send_tagline
....rename-it.nl/debian/
i have
Jul 05 11:48:35 managesieve: Debug: Module loaded:
/usr/lib/dovecot/modules/lib01_acl_plugin.so
Jul 05 11:48:35 managesieve: Error:
dlopen(/usr/lib/dovecot/modules/lib02_imap_acl_plugin.so) failed:
/usr/lib/dovecot/modules/lib02_imap_acl_plugin.so: undefined symbol:
client_send_tagline
Jul 05 11:48:35 managesieve: Fatal: Couldn't load required plugins
allready known ?
--
Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
2011 Sep 26
1
[PATCH] Bad boundary check in client_find_namespace
...boundary check in client_find_namespace in
src/imap/imap-commands-util.c. The code is:
/* make sure two hierarchy separators aren't next to each others */
for (p = storage_name+1; *p != '\0'; p++) {
if (p[0] == ns->real_sep && p[-1] == ns->real_sep) {
client_send_tagline(cmd, "NO Invalid mailbox name.");
return NULL;
}
}
The loop iterates over the string storage_name starting from its second
byte. However, the string may be "". This is the case if you select
the root of a namespace, like in "SELECT shared" or
"S...
2006 Feb 15
1
Dovecot RFC non-compliance: Mailbox names
...rce comments, but I could not find any discussion.
Was there any discussion about the imap/commands-util.c:48?
46: /* make sure it even looks valid */
47: sep = mail_storage_get_hierarchy_sep(storage);
48: if (*mailbox == '\0' || strspn(mailbox, "\r\n*%?") != 0) {
49: client_send_tagline(cmd, "NO Invalid mailbox name.");
which is technically not RFC-compliant? I have a feeling it fixes much more important things than it breaks (i.e. LIST/LSUB), but then again we never had complaints from people using those characters in names until they stopped being supported.
--
Anth...
2011 Feb 07
1
sieve not working if i have override
...ot
Feb 7 18:28:20 testip5 dovecot: managesieve: Debug: Module loaded:
/usr/local/lib/dovecot/lib01_acl_plugin.so
Feb 7 18:28:20 testip5 dovecot: managesieve: Error:
dlopen(/usr/local/lib/dovecot/lib02_imap_acl_plugin.so) failed:
/usr/local/lib/dovecot/lib02_imap_acl_plugin.so: undefined symbol:
client_send_tagline
Feb 7 18:28:20 testip5 dovecot: managesieve: Error: Can't load plugin
imap_acl_plugin: Plugin is intended to be used only by imap binary (we're
managesieve)
Feb 7 18:28:20 testip5 dovecot: managesieve: Fatal: Couldn't load required
plugins
It also complains about imap_quota....
2009 Jan 15
3
Enforcing STARTTLS for all mechs while disabling imaps
Hi all,
Is there a way to enforce STARTTLS for all connections, regardless their
authentication mechanism? disable_plaintext_auth only takes care of the auth
conversation, but I would like to have all communication encrypted.
As far as I can see, this would only be possible when using imaps and
disabling imap. However, I would like to have the other way around;
disabling imaps and using imap for
2005 Jul 13
0
Minor bugs still in test77
Thinking of patches I always apply, I've got a couple (attached) that
fix minor bugs and maybe should be applied - or implemented better and
then applied ;) - to the main distribution?
1) LIST bugs:
LIST "~/mail/" ""
and
LIST "" "~/mail/"
(where "~/mail/" is a namespace prefix) don't reply the same way as
UW-IMAP does and in at
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...mit user's credentials from causing
+ a huge security breach, as it would be if we relied solely on
+ dovecot's regular master users who can do anything to any user. */
+ } else if ((cmd->cmd_flags & COMMAND_FLAG_OK_FOR_SUBMIT_USER) == 0 &&
+ client->submit) {
+ client_send_tagline(cmd, "NO Command forbidden to submit user");
+ cmd->param_error = TRUE;
+ client_command_free(&cmd);
+ return TRUE;
+
} else {
i_assert(!client->disconnected);
diff -Nur dovecot-1.2.11/src/imap/client.h dovecot-1.2.11+lemonade/src/imap/client.h
--- dovecot-1.2.11/src/...
2017 Aug 17
3
Can't recursively delete mailboxes
Hi,
This appears to be some sort of dovecot bug. When I use the -r option to recursively delete a mailbox and sub-folders, it removes the sub-folders but not the inbox. It gives me the error below:
doveadm mailbox delete -u denise at lifelinetechnique.com.au -r -s inbox
doveadm(denise at lifelinetechnique.com.au): Error: Can't delete mailbox inbox: INBOX can't be deleted.
Our user
2017 Aug 17
0
Can't recursively delete mailboxes
...ilbox as there is nothing in the man page about the -r option.
It's on purpose:
if (mailbox_is_any_inbox(box)) {
/* IMAP protocol allows this, but I think it's safer to
not allow it. */
mailbox_free(&box);
client_send_tagline(cmd, "NO INBOX can't be deleted.");
return TRUE;
}
Why do you want to delete the INBOX of the user?
- --
Steffen Kaiser
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQEVAwUBWZVFPXz1H7kL/d9rAQIs2wf/X2l5XvHLit36SV9ZwEp6xXccfEv4W+92
nelVf0hk9pSAB5Ai2Okjn...
2012 Aug 20
1
enabling per user quota plugin and problems with pop3
...t via pop3
instead of imap (a thing that I permit, although the user shouldn't do
it) I have the error:
Aug 20 10:04:18 myotis30 dovecot: pop3: Error:
dlopen(/usr/lib/dovecot/modules/lib11_imap_quota_plugin.so) failed:
/usr/lib/dovecot/modules/lib11_imap_quota_plugin.so: undefined symbol:
client_send_tagline
is there any way to solve this problem?
--
Angel L. Mateo Mart?nez
Secci?n de Telem?tica
?rea de Tecnolog?as de la Informaci?n
y las Comunicaciones Aplicadas (ATICA)
http://www.um.es/atica
Tfo: 868887590
Fax: 868888337
2013 Nov 05
0
infinite loop (causing crash) whilst closing connection
...f186f in o_stream_nsendv (stream=0x1680c10,
iov=<optimized out>, iov_count=<optimized out>) at ostream.c:263
#305459 0x00007ff2243f189a in o_stream_nsend (stream=<optimized out>,
data=<optimized out>, size=<optimized out>) at ostream.c:255
#305460 0x00000000004157f0 in client_send_tagline (cmd=<optimized out>,
data=0x423c82 "OK Close completed.") at imap-client.c:388
#305461 0x000000000040c833 in cmd_close (cmd=0x167c4d0) at cmd-close.c:37
#305462 0x000000000041707d in command_exec (cmd=0x167c4d0) at
imap-commands.c:158
#305463 0x0000000000416110 in client_command_i...
2009 Jan 05
1
writing a dovecot plugin / segfault
...mp;folder_name))
return FALSE;
/* work done from here... */
/* for the moment, do a dummy response */
str_append(response, "* MYRIGHTS ");
str_append(response, folder_name);
str_append(response, " lrswipcda");
client_send_line(cmd->client, str_c(response));
client_send_tagline(cmd, "OK Completed.");
return TRUE;
}
But when testing via "telnet localhost 143" and doing a "20 myrights INBOX" the imap thread just crashes and does not give any answer. in /var/log/messages I only find something like the following entry:
Jan 5...
2009 Jul 08
1
expire plugin with 1.2 cronjob undefined symbol: capability_string
Hi,
sorry if this asked twice,
i ve searched the list and found some equal posts, but couldnt
get my problem fixed with it
if running cronjob with expire ( using mysql )
i get
dovecot -c /etc/dovecot/dovecot.conf --exec-mail ext
/usr/lib/dovecot/expire-tool --test
Info: Loading modules from directory: /usr/lib/dovecot/modules/imap
Info: Module loaded:
2009 Apr 02
4
Maildir files with mtime in the future
...cancel(ctx, nonsync);
}
+ if (internal_date != (time_t)-1 && internal_date > time(NULL)) {
+ /* the client specified a time in the future, set it to now. */
+ internal_date = (time_t)-1;
+ timezone_offset = 0;
+ }
+
if (ctx->msg_size == 0) {
/* no message data, abort */
client_send_tagline(cmd, "NO Can't save a zero byte message.");
---------- 8< ---------------------------------------- 8< ----------
Holger
2007 Nov 15
1
imap process consuming 100% CPU (Dovecot 1.0.3)
...e590
> > ret = 536954712
> > client = 0x2001e318
> > (dbx) up
> > cmd_uid(cmd = 0x2001e35c), line 19 in "cmd-uid.c"
> > (dbx) list
> > 19 return cmd->func(cmd);
> > 20 } else {
> > 21 client_send_tagline(cmd, t_strconcat(
> > 22 "BAD Unknown UID command ", cmd_name, NULL));
> > 23 return TRUE;
> > 24 }
> > 25 }
> > (dbx) dump
> > cmd_uid(cmd = 0x2001e35c), line 19 in "cmd-uid.c&qu...
2005 Aug 24
0
verbose imap logging
...ne = TRUE;
diff -ur dovecot-1.0.alpha1.orig/src/imap/cmd-logout.c dovecot-1.0.alpha1/src/imap/cmd-logout.c
--- dovecot-1.0.alpha1.orig/src/imap/cmd-logout.c 2005-03-08 21:26:56.000000000 +0100
+++ dovecot-1.0.alpha1/src/imap/cmd-logout.c 2005-08-23 10:39:08.000000000 +0200
@@ -20,6 +20,6 @@
}
client_send_tagline(cmd, "OK Logout completed.");
- client_disconnect(client);
+ client_disconnect(client, "Logout");
return TRUE;
}
diff -ur dovecot-1.0.alpha1.orig/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...