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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
/*
* Copyright (C) 2005 Andreas Krennmair <ak@synflood.at>
* Copyright (C) 2005 Peter J. Holzer <hjp@hjp.net>
* Copyright (C) 2005-2009 Rocco Rutte <pdmef@gmx.net>
* Copyright (C) 2010 Michael R. Elkins <me@mutt.org>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/* This file was originally part of mutt-ng */
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include "mutt.h"
#include "mutt_curses.h"
#include "ascii.h"
#include "lib.h"
#include "mime.h"
#define FLOWED_MAX 72
typedef struct flowed_state
{
size_t width;
size_t spaces;
int delsp;
} flowed_state_t;
static int get_quote_level (const char *line)
{
int quoted = 0;
char *p = (char *) line;
while (p && *p == '>')
{
quoted++;
p++;
}
return quoted;
}
/* Determines whether to add spacing between/after each quote level:
* >>>foo
* becomes
* > > > foo
*/
static int space_quotes (STATE *s)
{
/* Allow quote spacing in the pager even for OPTTEXTFLOWED,
* but obviously not when replying.
*/
if (option (OPTTEXTFLOWED) && (s->flags & MUTT_REPLYING))
return 0;
return option (OPTREFLOWSPACEQUOTES);
}
/* Determines whether to add a trailing space to quotes:
* >>> foo
* as opposed to
* >>>foo
*/
static int add_quote_suffix (STATE *s, int ql)
{
if (s->flags & MUTT_REPLYING)
return 0;
if (space_quotes (s))
return 0;
if (!ql && !s->prefix)
return 0;
/* The prefix will add its own space */
if (!option (OPTTEXTFLOWED) && !ql && s->prefix)
return 0;
return 1;
}
static size_t print_indent (int ql, STATE *s, int add_suffix)
{
int i;
size_t wid = 0;
if (s->prefix)
{
/* use given prefix only for format=fixed replies to format=flowed,
* for format=flowed replies to format=flowed, use '>' indentation
*/
if (option (OPTTEXTFLOWED))
ql++;
else
{
state_puts (s->prefix, s);
wid = mutt_strwidth (s->prefix);
}
}
for (i = 0; i < ql; i++)
{
state_putc ('>', s);
if (space_quotes (s) )
state_putc (' ', s);
}
if (add_suffix)
state_putc (' ', s);
if (space_quotes (s))
ql *= 2;
return ql + add_suffix + wid;
}
static void flush_par (STATE *s, flowed_state_t *fst)
{
if (fst->width > 0)
{
state_putc ('\n', s);
fst->width = 0;
}
fst->spaces = 0;
}
/* Calculate the paragraph width based upon the current quote level. The start
* of a quoted line will be ">>> ", so we need to subtract the space required
* for the prefix from the terminal width. */
static int quote_width (STATE *s, int ql)
{
int width = mutt_window_wrap_cols (MuttIndexWindow, ReflowWrap);
if (option(OPTTEXTFLOWED) && (s->flags & MUTT_REPLYING))
{
/* When replying, force a wrap at FLOWED_MAX to comply with RFC3676
* guidelines */
if (width > FLOWED_MAX)
width = FLOWED_MAX;
++ql; /* When replying, we will add an additional quote level */
}
/* adjust the paragraph width subtracting the number of prefix chars */
width -= space_quotes (s) ? ql*2 : ql;
/* When displaying (not replying), there may be a space between the prefix
* string and the paragraph */
if (add_quote_suffix (s, ql))
--width;
/* failsafe for really long quotes */
if (width <= 0)
width = FLOWED_MAX; /* arbitrary, since the line will wrap */
return width;
}
static void print_flowed_line (char *line, STATE *s, int ql,
flowed_state_t *fst, int term)
{
size_t width, w, words = 0;
char *p;
char last;
if (!line || !*line)
{
/* flush current paragraph (if any) first */
flush_par (s, fst);
print_indent (ql, s, 0);
state_putc ('\n', s);
return;
}
width = quote_width (s, ql);
last = line[mutt_strlen (line) - 1];
dprint (4, (debugfile, "f=f: line [%s], width = %ld, spaces = %d\n",
NONULL(line), (long)width, fst->spaces));
for (p = (char *)line, words = 0; (p = strsep (&line, " ")) != NULL ; )
{
dprint(4,(debugfile,"f=f: word [%s], width: %d, remaining = [%s]\n",
p, fst->width, line));
/* remember number of spaces */
if (!*p)
{
dprint(4,(debugfile,"f=f: additional space\n"));
fst->spaces++;
continue;
}
/* there's exactly one space prior to every but the first word */
if (words)
fst->spaces++;
w = mutt_strwidth (p);
/* see if we need to break the line but make sure the first
word is put on the line regardless;
if for DelSp=yes only one trailing space is used, we probably
have a long word that we should break within (we leave that
up to the pager or user) */
if (!(!fst->spaces && fst->delsp && last != ' ') &&
w < width && w + fst->width + fst->spaces > width)
{
dprint(4,(debugfile,"f=f: break line at %d, %d spaces left\n",
fst->width, fst->spaces));
/* only honor trailing spaces for format=flowed replies */
if (option(OPTTEXTFLOWED))
for ( ; fst->spaces; fst->spaces--)
state_putc (' ', s);
state_putc ('\n', s);
fst->width = 0;
fst->spaces = 0;
words = 0;
}
if (!words && !fst->width)
fst->width = print_indent (ql, s, add_quote_suffix (s, ql));
fst->width += w + fst->spaces;
for ( ; fst->spaces; fst->spaces--)
state_putc (' ', s);
state_puts (p, s);
words++;
}
if (term)
flush_par (s, fst);
}
static void print_fixed_line (const char *line, STATE *s, int ql,
flowed_state_t *fst)
{
print_indent (ql, s, add_quote_suffix (s, ql));
if (line && *line)
state_puts (line, s);
state_putc ('\n', s);
fst->width = 0;
fst->spaces = 0;
}
int rfc3676_handler (BODY * a, STATE * s)
{
char *buf = NULL, *t = NULL;
unsigned int quotelevel = 0, newql = 0, sigsep = 0;
int buf_off = 0, delsp = 0, fixed = 0;
size_t buf_len = 0, sz = 0;
flowed_state_t fst;
memset (&fst, 0, sizeof (fst));
/* respect DelSp of RfC3676 only with f=f parts */
if ((t = (char *) mutt_get_parameter ("delsp", a->parameter)))
{
delsp = mutt_strlen (t) == 3 && ascii_strncasecmp (t, "yes", 3) == 0;
t = NULL;
fst.delsp = 1;
}
dprint (4, (debugfile, "f=f: DelSp: %s\n", delsp ? "yes" : "no"));
while ((buf = mutt_read_line (buf, &sz, s->fpin, NULL, 0)))
{
buf_len = mutt_strlen (buf);
newql = get_quote_level (buf);
/* end flowed paragraph (if we're within one) if quoting level
* changes (should not but can happen, see RFC 3676, sec. 4.5.)
*/
if (newql != quotelevel)
flush_par (s, &fst);
quotelevel = newql;
buf_off = newql;
/* respect sender's space-stuffing by removing one leading space */
if (buf[buf_off] == ' ')
buf_off++;
/* test for signature separator */
sigsep = ascii_strcmp (buf + buf_off, "-- ") == 0;
/* a fixed line either has no trailing space or is the
* signature separator */
fixed = buf_len == buf_off || buf[buf_len - 1] != ' ' || sigsep;
/* print fixed-and-standalone, fixed-and-empty and sigsep lines as
* fixed lines */
if ((fixed && (!fst.width || !buf_len)) || sigsep)
{
/* if we're within a flowed paragraph, terminate it */
flush_par (s, &fst);
print_fixed_line (buf + buf_off, s, quotelevel, &fst);
continue;
}
/* for DelSp=yes, we need to strip one SP prior to CRLF on flowed lines */
if (delsp && !fixed)
buf[--buf_len] = '\0';
print_flowed_line (buf + buf_off, s, quotelevel, &fst, fixed);
}
flush_par (s, &fst);
FREE (&buf);
return (0);
}
/*
* This routine does RfC3676 space stuffing since it's a MUST.
* Space stuffing means that we have to add leading spaces to
* certain lines:
* - lines starting with a space
* - lines starting with 'From '
*
* Care is taken to preserve the hdr->content->filename, as
* mutt -i -E can directly edit a passed in filename.
*/
static void rfc3676_space_stuff (const char *filename, int unstuff)
{
FILE *in = NULL, *out = NULL;
char *buf = NULL;
size_t blen = 0;
BUFFER *tmpfile = NULL;
tmpfile = mutt_buffer_pool_get ();
if ((in = safe_fopen (filename, "r")) == NULL)
goto bail;
mutt_buffer_mktemp (tmpfile);
if ((out = safe_fopen (mutt_b2s (tmpfile), "w+")) == NULL)
goto bail;
while ((buf = mutt_read_line (buf, &blen, in, NULL, 0)) != NULL)
{
if (unstuff)
{
if (buf[0] == ' ')
fputs (buf + 1, out);
else
fputs (buf, out);
}
else
{
if (ascii_strncmp ("From ", buf, 5) == 0 || buf[0] == ' ')
fputc (' ', out);
fputs (buf, out);
}
fputc ('\n', out);
}
FREE (&buf);
safe_fclose (&in);
safe_fclose (&out);
mutt_set_mtime (filename, mutt_b2s (tmpfile));
if ((in = safe_fopen (mutt_b2s (tmpfile), "r")) == NULL)
goto bail;
if ((truncate (filename, 0) == -1) ||
((out = safe_fopen (filename, "a")) == NULL))
{
mutt_perror (filename);
goto bail;
}
mutt_copy_stream (in, out);
safe_fclose (&in);
safe_fclose (&out);
mutt_set_mtime (mutt_b2s (tmpfile), filename);
unlink (mutt_b2s (tmpfile));
mutt_buffer_pool_release (&tmpfile);
return;
bail:
safe_fclose (&in);
safe_fclose (&out);
mutt_buffer_pool_release (&tmpfile);
}
int mutt_rfc3676_is_format_flowed (BODY *b)
{
if (b &&
b->type == TYPETEXT &&
!ascii_strcasecmp ("plain", b->subtype))
{
const char *format = mutt_get_parameter ("format", b->parameter);
if (!ascii_strcasecmp ("flowed", format))
return 1;
}
return 0;
}
/* Note: we don't check the option OPTTEXTFLOWED because we want to
* stuff based the actual content type. The option only decides
* whether to *set* format=flowed on new messages.
*/
void mutt_rfc3676_space_stuff (HEADER *hdr)
{
if (!hdr || !hdr->content || !hdr->content->filename)
return;
if (mutt_rfc3676_is_format_flowed (hdr->content))
rfc3676_space_stuff (hdr->content->filename, 0);
}
void mutt_rfc3676_space_unstuff (HEADER *hdr)
{
if (!hdr || !hdr->content || !hdr->content->filename)
return;
if (mutt_rfc3676_is_format_flowed (hdr->content))
rfc3676_space_stuff (hdr->content->filename, 1);
}
/* This routine is used when saving/piping/viewing rfc3676 attachments.
*
* BODY *b is optional, but if provided it will verify it is
* format-flowed.
*
* The filename, not b->filename or b->fp will be unstuffed.
*/
void mutt_rfc3676_space_unstuff_attachment (BODY *b, const char *filename)
{
if (!filename)
return;
if (b && !mutt_rfc3676_is_format_flowed (b))
return;
rfc3676_space_stuff (filename, 1);
}
/* This routine is used when filtering rfc3676 attachments.
*
* BODY *b is optional, but if provided it will verify it is
* format-flowed.
*
* The filename, not b->filename or b->fp will be stuffed.
*/
void mutt_rfc3676_space_stuff_attachment (BODY *b, const char *filename)
{
if (!filename)
return;
if (b && !mutt_rfc3676_is_format_flowed (b))
return;
rfc3676_space_stuff (filename, 0);
}
|