]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: Give the DATA input stream a name, so the raw mailbox gets a name and doesn...
authorTimo Sirainen <tss@iki.fi>
Sat, 1 Jun 2013 12:33:58 +0000 (15:33 +0300)
committerTimo Sirainen <tss@iki.fi>
Sat, 1 Jun 2013 12:33:58 +0000 (15:33 +0300)
src/lmtp/commands.c

index 3dc9539178e12ffc2d3cbc3a68d2611db5b1d0db..4de117f464135760aee0def33de54c936aacbcf0 100644 (file)
@@ -771,6 +771,7 @@ static struct istream *client_get_input(struct client *client)
        inputs[2] = NULL;
 
        cinput = i_stream_create_concat(inputs);
+       i_stream_set_name(cinput, "<lmtp DATA>");
        i_stream_unref(&inputs[0]);
        i_stream_unref(&inputs[1]);
        return cinput;