[Dovecot] Developer Documentation
Alex Baule
alexwbaule at gmail.com
Fri Dec 11 12:30:53 EET 2009
Wow....
i am stupid ehehehehehe
concat the input, not the filedescriptor.....
Tks again... Now its working !
2009/12/10 Timo Sirainen <tss at iki.fi>
> 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);
>
>
More information about the dovecot
mailing list