Displaying 1 result from an estimated 1 matches for "o_stream_create_x_list".
2011 Oct 31
1
Rewrite the ostream output method, to save messages in another directory.
...ldir.
Well, i try to base it in zlib plugin, with was the o_stream_create_gz().
Inside the o_stream_create_gz has the Output, it's a copy from the original
output.
I Try to replace this output, with another one, that i try to create to
another location, without sucessfull.
struct ostream *
o_stream_create_X_list(struct ostream *output, struct istream *input, const
char *type)
{
struct emexis_ostream *X_stream;
struct ostream *new_output;
int fd;
fd = open("/tmp/email",O_WRONLY);
new_output = o_stream_create_fd_file(fd, 0, TRUE);
o_stream_cork(new_output);
emexis_stream = i_new(struct emexis_os...