/* GNU Mailutils -- a suite of utilities for electronic mail Copyright (C) 1999-2021 Free Software Foundation, Inc. GNU Mailutils is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Mailutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Mailutils. If not, see . */ #include "imap4d.h" /* * */ typedef int (*status_funcp) (mu_mailbox_t); static int status_messages (mu_mailbox_t); static int status_recent (mu_mailbox_t); static int status_uidnext (mu_mailbox_t); static int status_uidvalidity (mu_mailbox_t); static int status_unseen (mu_mailbox_t); struct status_table { char *name; status_funcp fun; } status_table[] = { {"MESSAGES", status_messages}, {"RECENT", status_recent}, {"UIDNEXT", status_uidnext}, {"UIDVALIDITY", status_uidvalidity}, {"UNSEEN", status_unseen}, { NULL } }; static status_funcp status_get_handler (const char *name) { struct status_table *p; for (p = status_table; p->name; p++) if (mu_c_strcasecmp (p->name, name) == 0) return p->fun; return NULL; } /* 6.3.10. STATUS Command Arguments: mailbox name status data item names Responses: untagged responses: STATUS Result: OK - status completed NO - status failure: no status for that name BAD - command unknown or arguments invalid */ int imap4d_status (struct imap4d_session *session, struct imap4d_command *command, imap4d_tokbuf_t tok) { char *name; char *mailbox_name; mu_mailbox_t smbox = NULL; int status; int count = 0; char *err_msg = NULL; int argc = imap4d_tokbuf_argc (tok); mu_record_t record; if (argc < 4) return io_completion_response (command, RESP_BAD, "Invalid arguments"); name = imap4d_tokbuf_getarg (tok, IMAP4_ARG_1); mailbox_name = namespace_get_name (name, &record, NULL); if (!mailbox_name) return io_completion_response (command, RESP_NO, "Error opening mailbox"); /* We may be opening the current mailbox, so make sure the attributes are preserved */ imap4d_enter_critical (); mu_mailbox_sync (mbox); imap4d_leave_critical (); status = mu_mailbox_create_from_record (&smbox, record, mailbox_name); if (status == 0) { status = mu_mailbox_open (smbox, MU_STREAM_READ); if (status == 0) { int space_sent = 0; int i = IMAP4_ARG_2; char *item = imap4d_tokbuf_getarg (tok, i); if (item[0] == '(') { if (imap4d_tokbuf_getarg (tok, argc - 1)[0] != ')') return io_completion_response (command, RESP_BAD, "Invalid arguments"); argc--; i++; } for (; i < argc; i++) { status_funcp fun; item = imap4d_tokbuf_getarg (tok, i); fun = status_get_handler (item); if (!fun) { err_msg = "Invalid flag in list"; break; } if (count++ == 0) io_sendf ("* STATUS %s (", name); else if (!space_sent) { space_sent = 1; io_sendf (" "); } if (!fun (smbox)) space_sent = 0; } if (count > 0) io_sendf (")\n"); mu_mailbox_close (smbox); } mu_mailbox_destroy (&smbox); } free (mailbox_name); if (status == 0) { if (count == 0) return io_completion_response (command, RESP_BAD, "Too few args (empty list)"); else if (err_msg) return io_completion_response (command, RESP_BAD, "%s", err_msg); return io_completion_response (command, RESP_OK, "Completed"); } return io_completion_response (command, RESP_NO, "Error opening mailbox"); } static int status_messages (mu_mailbox_t smbox) { size_t total = 0; mu_mailbox_messages_count (smbox, &total); io_sendf ("MESSAGES %lu", (unsigned long) total); return 0; } static int status_recent (mu_mailbox_t smbox) { size_t recent = 0; mu_mailbox_messages_recent (smbox, &recent); io_sendf ("RECENT %lu", (unsigned long) recent); return 0; } static int status_uidnext (mu_mailbox_t smbox) { size_t uidnext = 1; mu_mailbox_uidnext (smbox, &uidnext); io_sendf ("UIDNEXT %lu", (unsigned long) uidnext); return 0; } static int status_uidvalidity (mu_mailbox_t smbox) { unsigned long uidvalidity = 0; util_uidvalidity (smbox, &uidvalidity); io_sendf ("UIDVALIDITY %lu", uidvalidity); return 0; } /* Note that unlike the unseen response code, which indicates the message number of the first unseen message, the unseeen item in the response the status command indicates the quantity of unseen messages. */ static int status_unseen (mu_mailbox_t smbox) { size_t total = 0; size_t unseen = 0; size_t i; mu_mailbox_messages_count (smbox, &total); for (i = 1; i <= total; i++) { mu_message_t msg = NULL; mu_attribute_t attr = NULL; mu_mailbox_get_message (smbox, i, &msg); mu_message_get_attribute (msg, &attr); /* RFC 3501: \Seen Message has been read */ if (!mu_attribute_is_read (attr)) unseen++; } io_sendf ("UNSEEN %lu", (unsigned long) unseen); return 0; }