1 /* GNU Mailutils -- a suite of utilities for electronic mail
2    Copyright (C) 1999-2021 Free Software Foundation, Inc.
3 
4    GNU Mailutils is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3, or (at your option)
7    any later version.
8 
9    GNU Mailutils is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13 
14    You should have received a copy of the GNU General Public License
15    along with GNU Mailutils.  If not, see <http://www.gnu.org/licenses/>. */
16 
17 #include "mail.h"
18 
19 /* ta[g] [msglist] */
20 /* unt[ag] [msglist] */
21 
22 static int
tag_message(msgset_t * msgset,mu_message_t mesg,void * arg)23 tag_message (msgset_t *msgset, mu_message_t mesg, void *arg)
24 {
25   mu_attribute_t attr;
26   int *action = arg;
27 
28   mu_message_get_attribute (mesg, &attr);
29   if (*action)
30     mu_attribute_set_userflag (attr, MAIL_ATTRIBUTE_TAGGED);
31   else
32     mu_attribute_unset_userflag (attr, MAIL_ATTRIBUTE_TAGGED);
33   return 0;
34 }
35 
36 int
mail_tag(int argc,char ** argv)37 mail_tag (int argc, char **argv)
38 {
39   int action = argv[0][0] != 'u';
40 
41   return util_foreach_msg (argc, argv, MSG_NODELETED|MSG_SILENT,
42 			   tag_message, &action);
43 }
44