1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002, 2003,
2005, 2006, 2007 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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA */
/* MH inc command */
#include <mh.h>
const char *program_version = "inc (" PACKAGE_STRING ")";
static char doc[] = N_("GNU MH inc")"\v"
N_("Use -help to obtain the list of traditional MH options.");
static char args_doc[] = N_("[+folder]");
/* GNU options */
static struct argp_option options[] = {
{"file", ARG_FILE, N_("FILE"), 0,
N_("Incorporate mail from named file")},
{"folder", ARG_FOLDER, N_("FOLDER"), 0,
N_("Specify folder to incorporate mail to")},
{"audit", ARG_AUDIT, N_("FILE"), 0,
N_("Enable audit")},
{"noaudit", ARG_NOAUDIT, 0, 0,
N_("Disable audit")},
{"changecur", ARG_CHANGECUR, N_("BOOL"), OPTION_ARG_OPTIONAL,
N_("Mark first incorporated message as current (default)")},
{"nochangecur", ARG_NOCHANGECUR, NULL, OPTION_HIDDEN, ""},
{"form", ARG_FORM, N_("FILE"), 0,
N_("Read format from given file")},
{"format", ARG_FORMAT, N_("FORMAT"), 0,
N_("Use this format string")},
{"truncate", ARG_TRUNCATE, N_("BOOL"), OPTION_ARG_OPTIONAL,
N_("Truncate source mailbox after incorporating (default)")},
{"notruncate", ARG_NOTRUNCATE, NULL, OPTION_HIDDEN, ""},
{"width", ARG_WIDTH, N_("NUMBER"), 0,
N_("Set output width")},
{"quiet", ARG_QUIET, 0, 0,
N_("Be quiet")},
{"license", ARG_LICENSE, 0, 0,
N_("Display software license"), -1},
{ 0 }
};
/* Traditional MH options */
struct mh_option mh_option[] = {
{"audit", 5, MH_OPT_ARG, "audit-file" },
{"noaudit", 3, 0, },
{"changecur", 1, MH_OPT_BOOL},
{"file", 2, MH_OPT_ARG, "input-file"},
{"form", 4, MH_OPT_ARG, "format-file"},
{"format", 5, MH_OPT_ARG, "string"},
{"truncate", 2, MH_OPT_BOOL, },
{"width", 1, MH_OPT_ARG, "number"},
{"quiet", 1, 0, },
{ 0 }
};
static char *format_str = mh_list_format;
static int width = 80;
static char *input_file;
static char *audit_file;
static FILE *audit_fp;
static int changecur = -1;
static int truncate_source = -1;
static int quiet = 0;
static const char *append_folder;
static int
opt_handler (int key, char *arg, void *unused, struct argp_state *state)
{
switch (key)
{
case ARGP_KEY_FINI:
if (!append_folder)
append_folder = mh_global_profile_get ("Inbox", "inbox");
break;
case ARG_AUDIT:
audit_file = arg;
break;
case ARG_NOAUDIT:
audit_file = NULL;
break;
case ARG_CHANGECUR:
changecur = is_true(arg);
break;
case ARG_NOCHANGECUR:
changecur = 0;
break;
case ARG_FOLDER:
append_folder = arg;
break;
case ARG_FORM:
mh_read_formfile (arg, &format_str);
break;
case ARG_FORMAT:
format_str = arg;
break;
case ARG_FILE:
input_file = arg;
break;
case ARG_TRUNCATE:
truncate_source = is_true(arg);
break;
case ARG_NOTRUNCATE:
truncate_source = 0;
break;
case ARG_WIDTH:
width = strtoul (arg, NULL, 0);
if (!width)
{
argp_error (state, _("Invalid width"));
exit (1);
}
break;
case ARG_QUIET:
quiet = 1;
break;
case ARG_LICENSE:
mh_license (argp_program_version);
break;
default:
return 1;
}
return 0;
}
void
list_message (mh_format_t *format, mu_mailbox_t mbox, size_t msgno, size_t width)
{
mu_message_t msg;
char *buf = NULL;
mu_mailbox_get_message (mbox, msgno, &msg);
mh_format (format, msg, msgno, width, &buf);
printf ("%s\n", buf);
if (audit_fp)
fprintf (audit_fp, "%s\n", buf);
free (buf);
}
int
main (int argc, char **argv)
{
mu_mailbox_t input = NULL;
mu_mailbox_t output = NULL;
size_t total, n;
size_t lastmsg;
int f_truncate = 0;
int f_changecur = 0;
mh_format_t format;
int rc;
/* Native Language Support */
mu_init_nls ();
mu_argp_init (program_version, NULL);
mh_argp_parse (&argc, &argv, 0, options, mh_option, args_doc, doc,
opt_handler, NULL, NULL);
if (!quiet && mh_format_parse (format_str, &format))
{
mu_error (_("Bad format string"));
exit (1);
}
/* Select and open input mailbox */
if (input_file == NULL)
{
if ((rc = mu_mailbox_create_default (&input, NULL)) != 0)
{
mu_error (_("Cannot create default mailbox"),
mu_strerror (rc));
exit (1);
}
f_truncate = 1;
f_changecur = 1;
}
else if ((rc = mu_mailbox_create_default (&input, input_file)) != 0)
{
mu_error (_("Cannot create mailbox %s: %s"),
input_file, mu_strerror (rc));
exit (1);
}
if ((rc = mu_mailbox_open (input, MU_STREAM_RDWR)) != 0)
{
mu_url_t url;
mu_mailbox_get_url (input, &url);
mu_error (_("Cannot open mailbox %s: %s"),
mu_url_to_string (url),
mu_strerror (errno));
exit (1);
}
if ((rc = mu_mailbox_messages_count (input, &total)) != 0)
{
mu_error (_("Cannot read input mailbox: %s"), mu_strerror (errno));
exit (1);
}
output = mh_open_folder (append_folder, 1);
if ((rc = mu_mailbox_messages_count (output, &lastmsg)) != 0)
{
mu_error (_("Cannot read output mailbox: %s"),
mu_strerror (errno));
exit (1);
}
/* Fixup options */
if (truncate_source == -1)
truncate_source = f_truncate;
if (changecur == -1)
changecur = f_changecur;
/* Open audit file, if specified */
if (audit_file)
audit_fp = mh_audit_open (audit_file, input);
for (n = 1; n <= total; n++)
{
mu_message_t imsg;
if ((rc = mu_mailbox_get_message (input, n, &imsg)) != 0)
{
mu_error (_("%d: cannot get message: %s"),
n, mu_strerror (rc));
continue;
}
if ((rc = mu_mailbox_append_message (output, imsg)) != 0)
{
mu_error (_("%d: error appending message: %s"),
n, mu_strerror (rc));
continue;
}
if (n == 1 && changecur)
{
mu_message_t msg = NULL;
mu_mailbox_get_message (output, lastmsg+1, &msg);
mh_message_number (msg, ¤t_message);
}
if (!quiet)
list_message (&format, output, lastmsg + n, width);
if (truncate_source)
{
mu_attribute_t attr;
mu_message_get_attribute (imsg, &attr);
mu_attribute_set_deleted (attr);
}
}
if (changecur)
mh_global_save_state ();
mu_mailbox_close (output);
mu_mailbox_destroy (&output);
if (truncate_source)
mu_mailbox_expunge (input);
mu_mailbox_close (input);
mu_mailbox_destroy (&input);
if (audit_fp)
mh_audit_close (audit_fp);
return 0;
}
|