Displaying 7 results from an estimated 7 matches for "list_r".
Did you mean:
list_
2014 Apr 23
1
Segfault in dovecot-lda when resolver is unavailable
...0x000002b613084581 in hook_mailbox_list_created
(list=list at entry=0x1b23bfd9c0) at mail-storage-hooks.c:328
#15 0x000002b61308836f in mailbox_list_create
(driver=driver at entry=0x2b6130e677b "maildir++", ns=0x1b23bd7a10,
set=set at entry=0x395a4da94a0,
flags=<optimized out>, list_r=list_r at entry=0x1b23bd7d60,
error_r=error_r at entry=0x395a4da9498) at mailbox-list.c:210
#16 0x000002b613065cf6 in imapc_list_get_fs
(list=list at entry=0x1b23bd7b60) at imapc-list.c:379
#17 0x000002b61306601e in imapc_list_get_path (_list=0x1b23bd7b60,
name=0x0, type=MAILBOX_LIST_PATH_TYPE_MAIL...
2013 Jun 26
2
Dovecot 2.2.4 - Fatal: master: service(imap): child 44562 killed with signal 11
...lbox_list_created (list=0xdba292480)
at quota-storage.c:590
#7 0x00000386567d64d2 in hook_mailbox_list_created (list=0xdba292480)
at mail-storage-hooks.c:319
#8 0x00000386567da297 in mailbox_list_create (driver=<optimized out>,
ns=0xdba28eee0, set=0x3f7bad9be20, flags=<optimized out>,
list_r=0xdba28f228,
error_r=0x3f7bad9be80) at mailbox-list.c:206
#9 0x00000386567b8f63 in imapc_list_get_fs (list=0xdba28f030) at
imapc-list.c:265
#10 0x00000386567b927e in imapc_list_get_path (_list=<optimized out>,
name=0x0, type=MAILBOX_LIST_PATH_TYPE_MAILBOX, path_r=0x3f7bad9bf18)
at im...
2001 Nov 20
2
patch to enable faster mirroring of large filesystems
...d_file_list_proc silently truncates the filename to fit
+ in a buffer of MAXPATHLEN characters, so we can safely truncate there */
+static char *
+get_stdio(FILE *fp)
+{
+ static char fnbuf[MAXPATHLEN];
+ char *s = fnbuf;
+ char *eob = &fnbuf[sizeof(fnbuf)-1];
+ int cc;
+ extern int list_rs;
+
+ while (((cc = getc(fp)) != list_rs) && (cc != EOF)) {
+ if (s < eob)
+ *(s++) = cc;
+ }
+ *s = '\0';
+ return ((cc == EOF) && (s == fnbuf)) ? NULL : fnbuf;
+}
+
+struct file_list *send_file_list_fp(int f,FILE *fp)
+{
+ return send_file_list_proc(f,ge...
2003 Jan 14
4
specifying a list of files to transfer
...d_file_list_proc silently truncates the filename to fit
+ in a buffer of MAXPATHLEN characters, so we can safely truncate there */
+static char *
+get_stdio(FILE *fp)
+{
+ static char fnbuf[MAXPATHLEN];
+ char *s = fnbuf;
+ char *eob = &fnbuf[sizeof(fnbuf)-1];
+ int cc;
+ extern int list_rs;
+
+ while (((cc = getc(fp)) != list_rs) && (cc != EOF)) {
+ if (s < eob)
+ *(s++) = cc;
+ }
+ *s = '\0';
+ return ((cc == EOF) && (s == fnbuf)) ? NULL : fnbuf;
+}
+
+struct file_list *send_file_list_fp(int f,FILE *fp)
+{
+ return send_file_list_proc(f,ge...
2013 Jul 17
1
pop3c migration?
Hi,
I'm running dsync migrations using imapc and the source IMAP server is
just too slow. It has taken 8 hours to migrate a mailbox with 47,000
messages. It seems most of the mailboxes are never accessed with IMAP,
so it would be just as good to migrate them via POP3 which should work
faster in my case.
Is this actually meant to work?
doveadm -D -o pop3c_user=xxxxxx at example.com -o
2011 Nov 29
18
[PATCH 0 of 6] Add support for a VM generation ID virtual device (v2)
The following is a revised patch series to add support for a
VM generation ID virtual device for HVM guests.
The basic requirements of this device are as follows:
- It must be exposed somewhere in ACPI namespace with a _CID of
"VM_Gen_Counter".
- It must also include a _DDN of "VM_Gen_Counter".
- It must contain a _HID object but no particular value is
required.
- It must
2011 Nov 17
29
[PATCH 00 of 17] Documentation updates
The following series flushes my documentation queue and replaces
previous postings of those patches.
The main difference is that the xl cfg file is now formatted using POD
instead of markdown and presented as a manpage.
I have setup a cron job to build docs/html and publish it at
http://xenbits.xen.org/docs/unstable/ (it''s a bit bare right now).
The motivation for some of these patches