Skip to content

Commit

Permalink
imap: Use struct mailbox_status.flags for FLAGS reply
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jan 30, 2017
1 parent 8b17a7d commit aff4ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imap/imap-commands-util.c
Expand Up @@ -279,7 +279,7 @@ void client_send_mailbox_flags(struct client *client, bool selecting)
array_idx(client->keywords.names, 0);
str = t_str_new(128);
str_append(str, "* FLAGS (");
imap_write_flags(str, MAIL_FLAGS_NONRECENT, keywords);
imap_write_flags(str, status.flags, keywords);
str_append_c(str, ')');
client_send_line(client, str_c(str));

Expand Down

0 comments on commit aff4ade

Please sign in to comment.