Wow.... i am stupid ehehehehehe
concat the input, not the filedescriptor..... Tks again... Now its working ! 2009/12/10 Timo Sirainen <t...@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); > >