]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: Trigger autoexpunging only for the last RCPT TO.
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Thu, 23 Mar 2017 12:19:42 +0000 (14:19 +0200)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Mon, 27 Mar 2017 10:04:56 +0000 (13:04 +0300)
Otherwise if the autoexpunging takes a long time, the LMTP client could
disconnect due to a timeout. The mails would still eventually get delivered
though, so it would result in duplicate mails being delivered.

An alternative to this would be to keep all the mail_users referenced until
the delivery is finished and then autoexpunge all of them at the end. It
increases memory usage though and complicates the code, so at least for now
it's not implemented.

src/lmtp/commands.c

index a93763664845994720294231d94806f8078f9915..f0abf29dc804f88d5105546a35f41773b43aac5e 100644 (file)
@@ -928,6 +928,11 @@ client_deliver(struct client *client, const struct mail_recipient *rcpt,
        return ret;
 }
 
+static bool client_rcpt_to_is_last(struct client *client)
+{
+       return client->state.rcpt_idx >= array_count(&client->state.rcpt_to);
+}
+
 static bool client_deliver_next(struct client *client, struct mail *src_mail,
                                struct mail_deliver_session *session)
 {
@@ -947,7 +952,8 @@ static bool client_deliver_next(struct client *client, struct mail *src_mail,
                        return TRUE;
                /* failed. try the next one. */
                if (client->state.dest_user != NULL) {
-                       mail_user_autoexpunge(client->state.dest_user);
+                       if (client_rcpt_to_is_last(client))
+                               mail_user_autoexpunge(client->state.dest_user);
                        mail_user_unref(&client->state.dest_user);
                }
        }
@@ -1038,7 +1044,8 @@ client_input_data_write_local(struct client *client, struct istream *input)
        while (client_deliver_next(client, src_mail, session)) {
                if (client->state.first_saved_mail == NULL ||
                    client->state.first_saved_mail == src_mail) {
-                       mail_user_autoexpunge(client->state.dest_user);
+                       if (client_rcpt_to_is_last(client))
+                               mail_user_autoexpunge(client->state.dest_user);
                        mail_user_unref(&client->state.dest_user);
                } else {
                        /* use the first saved message to save it elsewhere too.