Displaying 4 results from an estimated 4 matches for "client_read_arg".
Did you mean:
client_read_args
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:
2016 Apr 27
3
Crash: setannotation Trash "/vendor/cmu/cyrus-imapd/expire" ("value.shared" NIL)
Hi,
Using 2.2.9 (ubuntu 14.04 LTS) and sending the following command,
the server crashes when I try to delete an annotation:
? login ?
C: 2 setannotation Trash "/vendor/cmu/cyrus-imapd/expire" ("value.shared" NIL)
Apr 27 09:29:16 backend1 dovecot: imap-login: Login: user=<heiko>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, mpid=6651, secured
Apr 27 09:29:16 backend1
2008 Mar 18
5
xexec and dovecot 1.1
...d array_t and this code is
seems ok:
xexec.h
struct xexec {
ARRAY_DEFINE(setups, struct xexec_setups *);
};
and also here:
cmd-xexec.c
ARRAY_DEFINE(command, char *);
After, errors cames with
cmd-xexec.c: In function 'cmd_xexec':
cmd-xexec.c:144: warning: passing argument 4 of 'client_read_args' from
incompatible
pointer type
cmd-xexec.c:159: warning: assignment from incompatible pointer type
cmd-xexec.c:180: warning: implicit declaration of function 'ARRAY_CREATE'
cmd-xexec.c:180: error: expected expression before 'char'
As I understand, it is because of (from chan...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...ok_delete_mailbox)(struct mail_storage *storage,
+ const char *mailbox);
+
+// GENURLAUTH command
+static bool cmd_genurlauth(struct client_command_context *cmd)
+{
+ const struct imap_arg *args;
+ string_t *auth_urls;
+ const char *hostport;
+
+ /* url mechanism [url mechanism ...] */
+ if (!client_read_args(cmd, 0, 0, &args))
+ return FALSE;
+
+ auth_urls = t_str_new(256);
+
+ // resolve this each time in case my_hostname changed
+ hostport = getenv("URLAUTH_HOSTPORT");
+ if (hostport == NULL || *hostport == '\0')
+ hostport = my_hostname;
+
+ while (IMAP_ARG_TYPE_IS_STRING(ar...