[Dovecot] Developer Documentation

Timo Sirainen tss at iki.fi
Thu Dec 10 22:54:52 EET 2009


On Thu, 2009-12-10 at 18:10 -0200, Alex Baule wrote:
>     do_open(mbox, "/storage/emexis/
> exemplo.com.br/messages/alex/Maildir/body_test", &fd1);
>     fdp[0] = fd;
>     fdp[1] = fd1;
> 
>     input = i_stream_create_fd(fd, 0, TRUE);
>     input = i_stream_create_fd(fd1, 0, TRUE);
>     input = i_stream_create_concat(fdp);

struct istream *full_input[3];
full_input[0] = i_stream_create_fd(fd, 0, TRUE);
full_input[1] = i_stream_create_fd(fd1, 0, TRUE);
full_input[2] = NULL;
input = i_stream_create_concat(full_input);

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part
Url : http://dovecot.org/pipermail/dovecot/attachments/20091210/63f34025/attachment.bin 


More information about the dovecot mailing list