]> git.llucax.com Git - software/mutt-debian.git/blob - debian/patches/features/compressed-folders
mutt (1.5.16-1) experimental; urgency=low
[software/mutt-debian.git] / debian / patches / features / compressed-folders
1 # vi: ft=diff
2 This is the compressed folders patch by Roland Rosenfeld
3 <roland@spinnaker.de>.
4
5 The home page for this patch is:
6
7   http://www.spinnaker.de/mutt/compressed/
8
9 * Patch last synced with upstream:
10   - Date: 2007-06-14
11   - File: http://www.spinnaker.de/mutt/compressed/patch-1.5.16.rr.compressed.1.gz
12
13 * Changes made:
14   - 2007-06-14 myon: remove hunks for Muttrc*
15
16 == END PATCH
17 Index: debian-mutt/compress.c
18 ===================================================================
19 --- /dev/null   1970-01-01 00:00:00.000000000 +0000
20 +++ debian-mutt/compress.c      2007-06-14 10:57:02.000000000 +0200
21 @@ -0,0 +1,499 @@
22 +/*
23 + * Copyright (C) 1997 Alain Penders <Alain@Finale-Dev.com>
24 + *
25 + *     This program is free software; you can redistribute it and/or modify
26 + *     it under the terms of the GNU General Public License as published by
27 + *     the Free Software Foundation; either version 2 of the License, or
28 + *     (at your option) any later version.
29 + *
30 + *     This program is distributed in the hope that it will be useful,
31 + *     but WITHOUT ANY WARRANTY; without even the implied warranty of
32 + *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33 + *     GNU General Public License for more details.
34 + *
35 + *     You should have received a copy of the GNU General Public License
36 + *     along with this program; if not, write to the Free Software
37 + *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
38 + */
39 +
40 +#if HAVE_CONFIG_H
41 +# include "config.h"
42 +#endif
43 +
44 +#include "mutt.h"
45 +
46 +#ifdef USE_COMPRESSED
47 +
48 +#include "mx.h"
49 +#include "mailbox.h"
50 +#include "mutt_curses.h"
51 +
52 +#include <errno.h>
53 +#include <string.h>
54 +#include <unistd.h>
55 +#include <sys/stat.h>
56 +
57 +typedef struct
58 +{
59 +  const char *close;   /* close-hook  command */
60 +  const char *open;    /* open-hook   command */
61 +  const char *append;  /* append-hook command */
62 +  off_t size;          /* size of real folder */
63 +} COMPRESS_INFO;
64 +
65 +
66 +/*
67 + * ctx - context to lock
68 + * excl - exclusive lock?
69 + * retry - should retry if unable to lock?
70 + */
71 +int mbox_lock_compressed (CONTEXT *ctx, FILE *fp, int excl, int retry)
72 +{
73 +  int r;
74 +
75 +  if ((r = mx_lock_file (ctx->realpath, fileno (fp), excl, 1, retry)) == 0)
76 +    ctx->locked = 1;
77 +  else if (retry && !excl)
78 +  {
79 +    ctx->readonly = 1;
80 +    return 0;
81 +  }
82 +
83 +  return (r);
84 +}
85 +
86 +void mbox_unlock_compressed (CONTEXT *ctx, FILE *fp)
87 +{
88 +  if (ctx->locked)
89 +  {
90 +    fflush (fp);
91 +
92 +    mx_unlock_file (ctx->realpath, fileno (fp), 1);
93 +    ctx->locked = 0;
94 +  }
95 +}
96 +
97 +static int is_new (const char *path)
98 +{
99 +  return (access (path, W_OK) != 0 && errno == ENOENT) ? 1 : 0;
100 +}
101 +
102 +static const char* find_compress_hook (int type, const char *path)
103 +{
104 +  const char* c = mutt_find_hook (type, path);
105 +  return (!c || !*c) ? NULL : c;
106 +}
107 +
108 +int mutt_can_read_compressed (const char *path)
109 +{
110 +  return find_compress_hook (M_OPENHOOK, path) ? 1 : 0;
111 +}
112 +
113 +/*
114 + * if the file is new, we really do not append, but create, and so use
115 + * close-hook, and not append-hook
116 + */
117 +static const char* get_append_command (const char *path, const CONTEXT* ctx)
118 +{
119 +  COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo;
120 +  return (is_new (path)) ? ci->close : ci->append;
121 +}
122 +
123 +int mutt_can_append_compressed (const char *path)
124 +{
125 +  int magic;
126 +
127 +  if (is_new (path))
128 +  {
129 +    char *dir_path = safe_strdup(path);
130 +    char *aux = strrchr(dir_path, '/');
131 +    int dir_valid = 1;
132 +    if (aux)
133 +    {
134 +      *aux='\0';
135 +      if (access(dir_path, W_OK|X_OK))
136 +        dir_valid = 0;
137 +    }
138 +    safe_free((void**)&dir_path);
139 +    return dir_valid && (find_compress_hook (M_CLOSEHOOK, path) ? 1 : 0);
140 +  }
141 +
142 +  magic = mx_get_magic (path);
143 +
144 +  if (magic != 0 && magic != M_COMPRESSED)
145 +    return 0;
146 +
147 +  return (find_compress_hook (M_APPENDHOOK, path)
148 +         || (find_compress_hook (M_OPENHOOK, path)
149 +             && find_compress_hook (M_CLOSEHOOK, path))) ? 1 : 0;
150 +}
151 +
152 +/* open a compressed mailbox */
153 +static COMPRESS_INFO *set_compress_info (CONTEXT *ctx)
154 +{
155 +  COMPRESS_INFO *ci;
156 +
157 +  /* Now lets uncompress this thing */
158 +  ci = safe_malloc (sizeof (COMPRESS_INFO));
159 +  ctx->compressinfo = (void*) ci;
160 +  ci->append = find_compress_hook (M_APPENDHOOK, ctx->path);
161 +  ci->open = find_compress_hook (M_OPENHOOK, ctx->path);
162 +  ci->close = find_compress_hook (M_CLOSEHOOK, ctx->path);
163 +  return ci;
164 +}
165 +
166 +static void set_path (CONTEXT* ctx)
167 +{
168 +  char tmppath[_POSIX_PATH_MAX];
169 +
170 +  /* Setup the right paths */
171 +  ctx->realpath = ctx->path;
172 +
173 +  /* Uncompress to /tmp */
174 +  mutt_mktemp (tmppath);
175 +  ctx->path = safe_malloc (strlen (tmppath) + 1);
176 +  strcpy (ctx->path, tmppath);
177 +}
178 +
179 +static int get_size (const char* path)
180 +{
181 +  struct stat sb;
182 +  if (stat (path, &sb) != 0)
183 +    return 0;
184 +  return (sb.st_size);
185 +}
186 +
187 +static void store_size (CONTEXT* ctx)
188 +{
189 +  COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo;
190 +  ci->size = get_size (ctx->realpath);
191 +}
192 +
193 +static const char *
194 +compresshook_format_str (char *dest, size_t destlen, size_t col, char op,
195 +                        const char *src, const char *fmt,
196 +                        const char *ifstring, const char *elsestring,
197 +                        unsigned long data, format_flag flags)
198 +{
199 +  char tmp[SHORT_STRING];
200 +
201 +  CONTEXT *ctx = (CONTEXT *) data;
202 +  switch (op)
203 +  {
204 +  case 'f':
205 +    snprintf (tmp, sizeof (tmp), "%%%ss", fmt);
206 +    snprintf (dest, destlen, tmp, ctx->realpath);
207 +    break;
208 +  case 't':
209 +    snprintf (tmp, sizeof (tmp), "%%%ss", fmt);
210 +    snprintf (dest, destlen, tmp, ctx->path);
211 +    break;
212 +  }
213 +  return (src);
214 +}
215 +
216 +/*
217 + * check that the command has both %f and %t
218 + * 0 means OK, -1 means error
219 + */
220 +int mutt_test_compress_command (const char* cmd)
221 +{
222 +  return (strstr (cmd, "%f") && strstr (cmd, "%t")) ? 0 : -1;
223 +}
224 +
225 +static char *get_compression_cmd (const char* cmd, const CONTEXT* ctx)
226 +{
227 +  char expanded[_POSIX_PATH_MAX];
228 +  mutt_FormatString (expanded, sizeof (expanded), 0, cmd, 
229 +                    compresshook_format_str, (unsigned long) ctx, 0);
230 +  return safe_strdup (expanded);
231 +}
232 +
233 +int mutt_check_mailbox_compressed (CONTEXT* ctx)
234 +{
235 +  COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo;
236 +  if (ci->size != get_size (ctx->realpath))
237 +  {
238 +    FREE (&ctx->compressinfo);
239 +    FREE (&ctx->realpath);
240 +    mutt_error _("Mailbox was corrupted!");
241 +    return (-1);
242 +  }
243 +  return (0);
244 +}
245 +
246 +int mutt_open_read_compressed (CONTEXT *ctx)
247 +{
248 +  char *cmd;
249 +  FILE *fp;
250 +  int rc;
251 +
252 +  COMPRESS_INFO *ci = set_compress_info (ctx);
253 +  if (!ci->open) {
254 +    ctx->magic = 0;
255 +    FREE (&ctx->compressinfo);
256 +    return (-1);
257 +  }
258 +  if (!ci->close || access (ctx->path, W_OK) != 0)
259 +    ctx->readonly = 1;
260 +
261 +  set_path (ctx);
262 +  store_size (ctx);
263 +
264 +  if (!ctx->quiet)
265 +    mutt_message (_("Decompressing %s..."), ctx->realpath);
266 +
267 +  cmd = get_compression_cmd (ci->open, ctx);
268 +  if (cmd == NULL)
269 +    return (-1);
270 +  dprint (2, (debugfile, "DecompressCmd: '%s'\n", cmd));
271 +
272 +  if ((fp = fopen (ctx->realpath, "r")) == NULL)
273 +  {
274 +    mutt_perror (ctx->realpath);
275 +    FREE (&cmd);
276 +    return (-1);
277 +  }
278 +  mutt_block_signals ();
279 +  if (mbox_lock_compressed (ctx, fp, 0, 1) == -1)
280 +  {
281 +    fclose (fp);
282 +    mutt_unblock_signals ();
283 +    mutt_error _("Unable to lock mailbox!");
284 +    FREE (&cmd);
285 +    return (-1);
286 +  }
287 +
288 +  endwin ();
289 +  fflush (stdout);
290 +  fprintf (stderr, _("Decompressing %s...\n"),ctx->realpath);
291 +  rc = mutt_system (cmd);
292 +  mbox_unlock_compressed (ctx, fp);
293 +  mutt_unblock_signals ();
294 +  fclose (fp);
295 +
296 +  if (rc)
297 +  {
298 +    mutt_any_key_to_continue (NULL);
299 +    ctx->magic = 0;
300 +    FREE (&ctx->compressinfo);
301 +    mutt_error (_("Error executing: %s : unable to open the mailbox!\n"), cmd);
302 +  }
303 +  FREE (&cmd);
304 +  if (rc)
305 +    return (-1);
306 +
307 +  if (mutt_check_mailbox_compressed (ctx))
308 +    return (-1);
309 +
310 +  ctx->magic = mx_get_magic (ctx->path);
311 +
312 +  return (0);
313 +}
314 +
315 +void restore_path (CONTEXT* ctx)
316 +{
317 +  FREE (&ctx->path);
318 +  ctx->path = ctx->realpath;
319 +}
320 +
321 +/* remove the temporary mailbox */
322 +void remove_file (CONTEXT* ctx)
323 +{
324 +  if (ctx->magic == M_MBOX || ctx->magic == M_MMDF)
325 +    remove (ctx->path);
326 +}
327 +
328 +int mutt_open_append_compressed (CONTEXT *ctx)
329 +{
330 +  FILE *fh;
331 +  COMPRESS_INFO *ci = set_compress_info (ctx);
332 +
333 +  if (!get_append_command (ctx->path, ctx))
334 +  {
335 +    if (ci->open && ci->close)
336 +      return (mutt_open_read_compressed (ctx));
337 +
338 +    ctx->magic = 0;
339 +    FREE (&ctx->compressinfo);
340 +    return (-1);
341 +  }
342 +
343 +  set_path (ctx);
344 +
345 +  ctx->magic = DefaultMagic;
346 +
347 +  if (!is_new (ctx->realpath))
348 +    if (ctx->magic == M_MBOX || ctx->magic == M_MMDF)
349 +      if ((fh = fopen (ctx->path, "w")))
350 +       fclose (fh);
351 +  /* No error checking - the parent function will catch it */
352 +
353 +  return (0);
354 +}
355 +
356 +/* close a compressed mailbox */
357 +void mutt_fast_close_compressed (CONTEXT *ctx)
358 +{
359 +  dprint (2, (debugfile, "mutt_fast_close_compressed called on '%s'\n",
360 +             ctx->path));
361 +
362 +  if (ctx->compressinfo)
363 +  {
364 +    if (ctx->fp)
365 +      fclose (ctx->fp);
366 +    ctx->fp = NULL;
367 +    /* if the folder was removed, remove the gzipped folder too */
368 +    if ((ctx->magic > 0) 
369 +       && (access (ctx->path, F_OK) != 0) 
370 +       && ! option (OPTSAVEEMPTY))
371 +      remove (ctx->realpath);
372 +    else
373 +      remove_file (ctx);
374 +
375 +    restore_path (ctx);
376 +    FREE (&ctx->compressinfo);
377 +  }
378 +}
379 +
380 +/* return 0 on success, -1 on failure */
381 +int mutt_sync_compressed (CONTEXT* ctx)
382 +{
383 +  char *cmd;
384 +  int rc = 0;
385 +  FILE *fp;
386 +  COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo;
387 +
388 +  if (!ctx->quiet)
389 +    mutt_message (_("Compressing %s..."), ctx->realpath);
390 +
391 +  cmd = get_compression_cmd (ci->close, ctx);
392 +  if (cmd == NULL)
393 +    return (-1);
394 +
395 +  if ((fp = fopen (ctx->realpath, "a")) == NULL)
396 +  {
397 +    mutt_perror (ctx->realpath);
398 +    FREE (&cmd);
399 +    return (-1);
400 +  }
401 +  mutt_block_signals ();
402 +  if (mbox_lock_compressed (ctx, fp, 1, 1) == -1)
403 +  {
404 +    fclose (fp);
405 +    mutt_unblock_signals ();
406 +    mutt_error _("Unable to lock mailbox!");
407 +    store_size (ctx);
408 +    FREE (&cmd);
409 +    return (-1);
410 +  }
411 +
412 +  dprint (2, (debugfile, "CompressCommand: '%s'\n", cmd));
413 +
414 +  endwin ();
415 +  fflush (stdout);
416 +  fprintf (stderr, _("Compressing %s...\n"), ctx->realpath);
417 +  if (mutt_system (cmd))
418 +  {
419 +    mutt_any_key_to_continue (NULL);
420 +    mutt_error (_("%s: Error compressing mailbox! Original mailbox deleted, uncompressed one kept!\n"), ctx->path);
421 +    rc = -1;
422 +  }
423 +
424 +  mbox_unlock_compressed (ctx, fp);
425 +  mutt_unblock_signals ();
426 +  fclose (fp);
427 +
428 +  FREE (&cmd);
429 +
430 +  store_size (ctx);
431 +
432 +  return (rc);
433 +}
434 +
435 +int mutt_slow_close_compressed (CONTEXT *ctx)
436 +{
437 +  FILE *fp;
438 +  const char *append;
439 +  char *cmd;
440 +  COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo;
441 +
442 +  dprint (2, (debugfile, "mutt_slow_close_compressed called on '%s'\n",
443 +             ctx->path));
444 +
445 +  if (! (ctx->append
446 +        && ((append = get_append_command (ctx->realpath, ctx))
447 +            || (append = ci->close))))
448 +  { 
449 +    /* if we can not or should not append, we only have to remove the */
450 +    /* compressed info, because sync was already called               */
451 +    mutt_fast_close_compressed (ctx);
452 +    return (0);
453 +  }
454 +
455 +  if (ctx->fp)
456 +    fclose (ctx->fp);
457 +  ctx->fp = NULL;
458 +
459 +  if (!ctx->quiet)
460 +  {
461 +    if (append == ci->close)
462 +      mutt_message (_("Compressing %s..."), ctx->realpath);
463 +    else
464 +      mutt_message (_("Compressed-appending to %s..."), ctx->realpath);
465 +  }
466 +
467 +  cmd = get_compression_cmd (append, ctx);
468 +  if (cmd == NULL)
469 +    return (-1);
470 +
471 +  if ((fp = fopen (ctx->realpath, "a")) == NULL)
472 +  {
473 +    mutt_perror (ctx->realpath);
474 +    FREE (&cmd);
475 +    return (-1);
476 +  }
477 +  mutt_block_signals ();
478 +  if (mbox_lock_compressed (ctx, fp, 1, 1) == -1)
479 +  {
480 +    fclose (fp);
481 +    mutt_unblock_signals ();
482 +    mutt_error _("Unable to lock mailbox!");
483 +    FREE (&cmd);
484 +    return (-1);
485 +  }
486 +
487 +  dprint (2, (debugfile, "CompressCmd: '%s'\n", cmd));
488 +
489 +  endwin ();
490 +  fflush (stdout);
491 +
492 +  if (append == ci->close)
493 +    fprintf (stderr, _("Compressing %s...\n"), ctx->realpath);
494 +  else
495 +    fprintf (stderr, _("Compressed-appending to %s...\n"), ctx->realpath);
496 +
497 +  if (mutt_system (cmd))
498 +  {
499 +    mutt_any_key_to_continue (NULL);
500 +    mutt_error (_(" %s: Error compressing mailbox!  Uncompressed one kept!\n"),
501 +               ctx->path);
502 +    FREE (&cmd);
503 +    mbox_unlock_compressed (ctx, fp);
504 +    mutt_unblock_signals ();
505 +    fclose (fp);
506 +    return (-1);
507 +  }
508 +
509 +  mbox_unlock_compressed (ctx, fp);
510 +  mutt_unblock_signals ();
511 +  fclose (fp);
512 +  remove_file (ctx);
513 +  restore_path (ctx);
514 +  FREE (&cmd);
515 +  FREE (&ctx->compressinfo);
516 +
517 +  return (0);
518 +}
519 +
520 +#endif /* USE_COMPRESSED */
521 Index: debian-mutt/compress.h
522 ===================================================================
523 --- /dev/null   1970-01-01 00:00:00.000000000 +0000
524 +++ debian-mutt/compress.h      2007-06-14 10:57:02.000000000 +0200
525 @@ -0,0 +1,27 @@
526 +/*
527 + * Copyright (C) 1997 Alain Penders <Alain@Finale-Dev.com>
528 + *
529 + *     This program is free software; you can redistribute it and/or modify
530 + *     it under the terms of the GNU General Public License as published by
531 + *     the Free Software Foundation; either version 2 of the License, or
532 + *     (at your option) any later version.
533 + *
534 + *     This program is distributed in the hope that it will be useful,
535 + *     but WITHOUT ANY WARRANTY; without even the implied warranty of
536 + *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
537 + *     GNU General Public License for more details.
538 + *
539 + *     You should have received a copy of the GNU General Public License
540 + *     along with this program; if not, write to the Free Software
541 + *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
542 + */
543 +
544 +int mutt_can_read_compressed (const char *);
545 +int mutt_can_append_compressed (const char *);
546 +int mutt_open_read_compressed (CONTEXT *);
547 +int mutt_open_append_compressed (CONTEXT *);
548 +int mutt_slow_close_compressed (CONTEXT *);
549 +int mutt_sync_compressed (CONTEXT *);
550 +int mutt_test_compress_command (const char *);
551 +int mutt_check_mailbox_compressed (CONTEXT *);
552 +void mutt_fast_close_compressed (CONTEXT *);
553 Index: debian-mutt/config.h.in
554 ===================================================================
555 --- debian-mutt.orig/config.h.in        2007-06-14 10:54:19.000000000 +0200
556 +++ debian-mutt/config.h.in     2007-06-14 10:57:02.000000000 +0200
557 @@ -513,6 +513,9 @@
558  /* Define to enable Sun mailtool attachments support. */
559  #undef SUN_ATTACHMENT
560  
561 +/* Define to enable compressed mailboxes support */
562 +#undef USE_COMPRESSED
563 +
564  /* Define to use dotlocking for mailboxes. */
565  #undef USE_DOTLOCK
566  
567 Index: debian-mutt/configure
568 ===================================================================
569 --- debian-mutt.orig/configure  2007-06-14 10:54:19.000000000 +0200
570 +++ debian-mutt/configure       2007-06-14 10:57:02.000000000 +0200
571 @@ -1371,6 +1371,7 @@ Optional Features:
572    --enable-hcache         Enable header caching
573    --disable-iconv         Disable iconv support
574    --disable-nls           Do not use Native Language Support
575 +  --enable-compressed     Enable compressed folders support
576  
577  Optional Packages:
578    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
579 @@ -15105,6 +15106,17 @@ _ACEOF
580  fi
581  
582  
583 +# Check whether --enable-compressed or --disable-compressed was given.
584 +if test "${enable_compressed+set}" = set; then
585 +  enableval="$enable_compressed"; if test x$enableval = xyes; then
586 +
587 +cat >>confdefs.h <<\_ACEOF
588 +#define USE_COMPRESSED 1
589 +_ACEOF
590 +
591 +        fi
592 +fi
593 +
594  
595  # Check whether --with-exec-shell was given.
596  if test "${with_exec_shell+set}" = set; then
597 Index: debian-mutt/configure.ac
598 ===================================================================
599 --- debian-mutt.orig/configure.ac       2007-06-14 10:54:19.000000000 +0200
600 +++ debian-mutt/configure.ac    2007-06-14 10:57:02.000000000 +0200
601 @@ -785,6 +785,11 @@ AC_ARG_ENABLE(locales-fix, AC_HELP_STRIN
602                  AC_DEFINE(LOCALES_HACK,1,[ Define if the result of isprint() is unreliable. ])
603          fi])
604  
605 +AC_ARG_ENABLE(compressed, AC_HELP_STRING([--enable-compressed], [Enable compressed folders support]),
606 +       [if test x$enableval = xyes; then
607 +                AC_DEFINE(USE_COMPRESSED,1, [ Define to support compressed folders. ])
608 +        fi])
609 +
610  AC_ARG_WITH(exec-shell, AC_HELP_STRING([--with-exec-shell=SHELL], [Specify alternate shell (ONLY if /bin/sh is broken)]),
611          [if test $withval != yes; then
612                  AC_DEFINE_UNQUOTED(EXECSHELL, "$withval",
613 Index: debian-mutt/curs_main.c
614 ===================================================================
615 --- debian-mutt.orig/curs_main.c        2007-06-14 10:54:19.000000000 +0200
616 +++ debian-mutt/curs_main.c     2007-06-14 10:57:02.000000000 +0200
617 @@ -1111,6 +1111,11 @@ int mutt_index_menu (void)
618          {
619           int check;
620  
621 +#ifdef USE_COMPRESSED
622 +         if (Context->compressinfo && Context->realpath)
623 +           mutt_str_replace (&LastFolder, Context->realpath);
624 +         else
625 +#endif
626           mutt_str_replace (&LastFolder, Context->path);
627           oldcount = Context ? Context->msgcount : 0;
628  
629 Index: debian-mutt/doc/manual.xml.head
630 ===================================================================
631 --- debian-mutt.orig/doc/manual.xml.head        2007-06-14 10:54:19.000000000 +0200
632 +++ debian-mutt/doc/manual.xml.head     2007-06-14 10:57:02.000000000 +0200
633 @@ -4910,6 +4910,205 @@ becomes an issue as mutt will silently f
634  
635  </chapter>
636  
637 +<sect1 id="compressedfolders">
638 +<title>Compressed folders Support (OPTIONAL)</title>
639 +
640 +<para>
641 +If Mutt was compiled with compressed folders support (by running the
642 +<emphasis>configure</emphasis> script with the
643 +<emphasis>--enable-compressed</emphasis> flag), Mutt can open folders
644 +stored in an arbitrary format, provided that the user has a script to
645 +convert from/to this format to one of the accepted.
646 +
647 +The most common use is to open compressed archived folders e.g. with
648 +gzip.
649 +
650 +In addition, the user can provide a script that gets a folder in an
651 +accepted format and appends its context to the folder in the
652 +user-defined format, which may be faster than converting the entire
653 +folder to the accepted format, appending to it and converting back to
654 +the user-defined format.
655 +
656 +There are three hooks defined (<link
657 +linkend="open-hook">open-hook</link>, <link
658 +linkend="close-hook">close-hook</link> and <link
659 +linkend="append-hook">append-hook</link>) which define commands to
660 +uncompress and compress a folder and to append messages to an existing
661 +compressed folder respectively.
662 +
663 +For example:
664 +
665 +<screen>
666 +open-hook \\.gz$ "gzip -cd %f &gt; %t" 
667 +close-hook \\.gz$ "gzip -c %t &gt; %f"
668 +append-hook \\.gz$ "gzip -c %t &gt;&gt; %f" 
669 +</screen>
670 +
671 +You do not have to specify all of the commands. If you omit <link
672 +linkend="append-hook">append-hook</link>, the folder will be open and
673 +closed again each time you will add to it. If you omit <link
674 +linkend="close-hook">close-hook</link> (or give empty command) , the
675 +folder will be open in the mode. If you specify <link
676 +linkend="append-hook">append-hook</link> though you'll be able to
677 +append to the folder.
678 +
679 +Note that Mutt will only try to use hooks if the file is not in one of
680 +the accepted formats. In particular, if the file is empty, mutt
681 +supposes it is not compressed. This is important because it allows the
682 +use of programs that do not have well defined extensions. Just use
683 +&quot;.&quot; as a regexp. But this may be surprising if your
684 +compressing script produces empty files. In this situation, unset
685 +<link linkend="save-empty">&dollar;save&lowbar;empty</link>, so that
686 +the compressed file will be removed if you delete all of the messages.
687 +</para>
688 +
689 +<sect2 id="open-hook">
690 +<title>Open a compressed mailbox for reading</title>
691 +
692 +<para>
693 +Usage: <literal>open-hook</literal> <emphasis>regexp</emphasis> &quot;<emphasis>command</emphasis>&quot;
694 +
695 +The <emphasis>command</emphasis> is the command that can be used for
696 +opening the folders whose names match <emphasis>regexp</emphasis>.
697 +
698 +The <emphasis>command</emphasis> string is the printf-like format
699 +string, and it should accept two parameters: &percnt;f, which is
700 +replaced with the (compressed) folder name, and &percnt;t which is
701 +replaced with the name of the temporary folder to which to write.
702 +
703 +&percnt;f and &percnt;t can be repeated any number of times in the
704 +command string, and all of the entries are replaced with the
705 +appropriate folder name. In addition, &percnt;&percnt; is replaced by
706 +&percnt;, as in printf, and any other &percnt;anything is left as is.
707 +
708 +The <emphasis>command</emphasis> should <emphasis
709 +role="bold">not</emphasis> remove the original compressed file.  The
710 +<emphasis>command</emphasis> should return non-zero exit status if it
711 +fails, so mutt knows something's wrong.
712 +
713 +Example:
714 +
715 +<screen>
716 +open-hook \\.gz$ "gzip -cd %f &gt; %t" 
717 +</screen>
718 +
719 +If the <emphasis>command</emphasis> is empty, this operation is
720 +disabled for this file type.
721 +</para>
722 +</sect2>
723 +
724 +<sect2 id="close-hook">
725 +<title>Write a compressed mailbox</title>
726 +
727 +<para>
728 +Usage: <literal>close-hook</literal> <emphasis>regexp</emphasis> &quot;<emphasis>command</emphasis>&quot;
729 +
730 +This is used to close the folder that was open with the <link
731 +linkend="open-hook">open-hook</link> command after some changes were
732 +made to it.
733 +
734 +The <emphasis>command</emphasis> string is the command that can be
735 +used for closing the folders whose names match
736 +<emphasis>regexp</emphasis>. It has the same format as in the <link
737 +linkend="open-hook">open-hook</link> command. Temporary folder in this
738 +case is the folder previously produced by the <link
739 +linkend="open-hook">open-hook</link> command.
740 +
741 +The <emphasis>command</emphasis> should <emphasis
742 +role="bold">not</emphasis> remove the decompressed file. The
743 +<emphasis>command</emphasis> should return non-zero exit status if it
744 +fails, so mutt knows something's wrong.
745 +
746 +Example:
747 +
748 +<screen>
749 +close-hook \\.gz$ "gzip -c %t &gt; %f"
750 +</screen>
751 +
752 +If the <emphasis>command</emphasis> is empty, this operation is
753 +disabled for this file type, and the file can only be open in the
754 +read-only mode.
755 +
756 +<link linkend="close-hook">close-hook</link> is not called when you
757 +exit from the folder if the folder was not changed.
758 +</para>
759 +</sect2>
760 +
761 +<sect2 id="append-hook">
762 +<title>Append a message to a compressed mailbox</title>
763 +
764 +<para>
765 +Usage: <literal>append-hook</literal> <emphasis>regexp</emphasis> &quot;<emphasis>command</emphasis>&quot;
766 +
767 +This command is used for saving to an existing compressed folder.  The
768 +<emphasis>command</emphasis> is the command that can be used for
769 +appending to the folders whose names match
770 +<emphasis>regexp</emphasis>. It has the same format as in the <link
771 +linkend="open-hook">open-hook</link> command.  The temporary folder in
772 +this case contains the messages that are being appended.
773 +
774 +The <emphasis>command</emphasis> should <emphasis
775 +role="bold">not</emphasis> remove the decompressed file. The
776 +<emphasis>command</emphasis> should return non-zero exit status if it
777 +fails, so mutt knows something's wrong.
778 +
779 +Example:
780 +
781 +<screen>
782 +append-hook \\.gz$ "gzip -c %t &gt;&gt; %f" 
783 +</screen>
784 +
785 +When <link linkend="append-hook">append-hook</link> is used, the folder
786 +is not opened, which saves time, but this means that we can not find
787 +out what the folder type is. Thus the default (<link
788 +linkend="mbox-type">&dollar;mbox&lowbar;type</link>) type is always
789 +supposed (i.e.  this is the format used for the temporary folder).
790 +
791 +If the file does not exist when you save to it, <link
792 +linkend="close-hook">close-hook</link> is called, and not <link
793 +linkend="append-hook">append-hook</link>. <link
794 +linkend="append-hook">append-hook</link> is only for appending to
795 +existing folders.
796 +
797 +If the <emphasis>command</emphasis> is empty, this operation is
798 +disabled for this file type. In this case, the folder will be open and
799 +closed again (using <link linkend="open-hook">open-hook</link> and
800 +<link linkend="close-hook">close-hook</link>respectively) each time you
801 +will add to it.
802 +</para>
803 +</sect2>
804 +
805 +<sect2>
806 +<title>Encrypted folders</title>
807 +
808 +<para>
809 +The compressed folders support can also be used to handle encrypted
810 +folders. If you want to encrypt a folder with PGP, you may want to use
811 +the following hooks:
812 +
813 +<screen>
814 +open-hook  \\.pgp$ "pgp -f &lt; %f &gt; %t"
815 +close-hook \\.pgp$ "pgp -fe YourPgpUserIdOrKeyId &lt; %t &gt; %f"
816 +</screen>
817 +
818 +Please note, that PGP does not support appending to an encrypted
819 +folder, so there is no append-hook defined.
820 +
821 +If you are using GnuPG instead of PGP, you may use the following hooks
822 +instead:
823 +
824 +<screen>
825 +open-hook  \\.gpg$ "gpg --decrypt &lt; %f &gt; %t"
826 +close-hook \\.gpg$ "gpg --encrypt --recipient YourGpgUserIdOrKeyId &lt; %t &gt; %f"
827 +</screen>
828 +
829 +<emphasis role="bold">Note:</emphasis> the folder is temporary stored
830 +decrypted in the /tmp directory, where it can be read by your system
831 +administrator. So think about the security aspects of this.
832 +</para>
833 +</sect2>
834 +</sect1>
835 +
836  <chapter id="mimesupport">
837  <title>Mutt's MIME Support</title>
838  
839 Index: debian-mutt/doc/muttrc.man.head
840 ===================================================================
841 --- debian-mutt.orig/doc/muttrc.man.head        2007-06-14 10:54:19.000000000 +0200
842 +++ debian-mutt/doc/muttrc.man.head     2007-06-14 10:57:02.000000000 +0200
843 @@ -345,6 +345,24 @@ specify the ID of the public key to be u
844  to a certain recipient.  The meaning of "key ID" is to be taken
845  broadly: This can be a different e-mail address, a numerical key ID,
846  or even just an arbitrary search string.
847 +.PP
848 +.nf
849 +\fBopen-hook\fP \fIregexp\fP "\fIcommand\fP"
850 +\fBclose-hook\fP \fIregexp\fP "\fIcommand\fP"
851 +\fBappend-hook\fP \fIregexp\fP "\fIcommand\fP"
852 +.fi
853 +.IP
854 +These commands provide a way to handle compressed folders. The given
855 +\fBregexp\fP specifies which folders are taken as compressed (e.g.
856 +"\fI\\\\.gz$\fP"). The commands tell Mutt how to uncompress a folder
857 +(\fBopen-hook\fP), compress a folder (\fBclose-hook\fP) or append a
858 +compressed mail to a compressed folder (\fBappend-hook\fP). The
859 +\fIcommand\fP string is the 
860 +.BR printf (3)
861 +like format string, and it should accept two parameters: \fB%f\fP,
862 +which is replaced with the (compressed) folder name, and \fB%t\fP
863 +which is replaced with the name of the temporary folder to which to
864 +write.
865  .TP
866  \fBpush\fP \fIstring\fP
867  This command adds the named \fIstring\fP to the keyboard buffer.
868 Index: debian-mutt/hook.c
869 ===================================================================
870 --- debian-mutt.orig/hook.c     2007-06-14 10:54:19.000000000 +0200
871 +++ debian-mutt/hook.c  2007-06-14 10:57:02.000000000 +0200
872 @@ -24,6 +24,10 @@
873  #include "mailbox.h"
874  #include "mutt_crypt.h"
875  
876 +#ifdef USE_COMPRESSED
877 +#include "compress.h"
878 +#endif
879 +
880  #include <limits.h>
881  #include <string.h>
882  #include <stdlib.h>
883 @@ -92,6 +96,16 @@ int mutt_parse_hook (BUFFER *buf, BUFFER
884      memset (&pattern, 0, sizeof (pattern));
885      pattern.data = safe_strdup (path);
886    }
887 +#ifdef USE_COMPRESSED
888 +  else if (data & (M_APPENDHOOK | M_OPENHOOK | M_CLOSEHOOK))
889 +  {
890 +    if (mutt_test_compress_command (command.data))
891 +    {
892 +      strfcpy (err->data, _("badly formatted command string"), err->dsize);
893 +      return (-1);
894 +    }
895 +  }
896 +#endif
897    else if (DefaultHook && !(data & (M_CHARSETHOOK | M_ICONVHOOK | M_ACCOUNTHOOK))
898             && (!WithCrypto || !(data & M_CRYPTHOOK))
899        )
900 Index: debian-mutt/init.h
901 ===================================================================
902 --- debian-mutt.orig/init.h     2007-06-14 10:54:19.000000000 +0200
903 +++ debian-mutt/init.h  2007-06-14 10:57:02.000000000 +0200
904 @@ -3129,6 +3129,11 @@ struct command_t Commands[] = {
905    { "fcc-hook",                mutt_parse_hook,        M_FCCHOOK },
906    { "fcc-save-hook",   mutt_parse_hook,        M_FCCHOOK | M_SAVEHOOK },
907    { "folder-hook",     mutt_parse_hook,        M_FOLDERHOOK },
908 +#ifdef USE_COMPRESSED
909 +  { "open-hook",       mutt_parse_hook,        M_OPENHOOK },
910 +  { "close-hook",      mutt_parse_hook,        M_CLOSEHOOK },
911 +  { "append-hook",     mutt_parse_hook,        M_APPENDHOOK },
912 +#endif
913    { "group",           parse_group,            0 },
914    { "ungroup",         parse_ungroup,          0 },
915    { "hdr_order",       parse_list,             UL &HeaderOrderList },
916 Index: debian-mutt/main.c
917 ===================================================================
918 --- debian-mutt.orig/main.c     2007-06-14 10:54:19.000000000 +0200
919 +++ debian-mutt/main.c  2007-06-14 10:57:02.000000000 +0200
920 @@ -401,6 +401,12 @@ static void show_version (void)
921  #else
922         "-LOCALES_HACK  "
923  #endif
924 +
925 +#ifdef USE_COMPRESSED
926 +       "+COMPRESSED  "
927 +#else
928 +       "-COMPRESSED  "
929 +#endif
930               
931  #ifdef HAVE_WC_FUNCS
932         "+HAVE_WC_FUNCS  "
933 Index: debian-mutt/Makefile.am
934 ===================================================================
935 --- debian-mutt.orig/Makefile.am        2007-06-14 10:54:19.000000000 +0200
936 +++ debian-mutt/Makefile.am     2007-06-14 10:57:02.000000000 +0200
937 @@ -18,7 +18,7 @@ BUILT_SOURCES = keymap_defs.h patchlist.
938  bin_PROGRAMS = mutt @DOTLOCK_TARGET@ @PGPAUX_TARGET@
939  mutt_SOURCES = $(BUILT_SOURCES) \
940         addrbook.c alias.c attach.c base64.c browser.c buffy.c color.c \
941 -       crypt.c cryptglue.c \
942 +       crypt.c cryptglue.c compress.c \
943         commands.c complete.c compose.c copy.c curs_lib.c curs_main.c date.c \
944         edit.c enter.c flags.c init.c filter.c from.c \
945         getdomain.c group.c \
946 @@ -66,7 +66,7 @@ EXTRA_mutt_SOURCES = account.c md5c.c mu
947         utf8.c wcwidth.c 
948  
949  EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \
950 -       configure account.h \
951 +       configure account.h compress.h \
952         attach.h buffy.h charset.h copy.h crypthash.h dotlock.h functions.h gen_defs \
953         globals.h hash.h history.h init.h keymap.h mutt_crypt.h \
954         mailbox.h mapping.h md5.h mime.h mutt.h mutt_curses.h mutt_menu.h \
955 Index: debian-mutt/Makefile.in
956 ===================================================================
957 --- debian-mutt.orig/Makefile.in        2007-06-14 10:54:19.000000000 +0200
958 +++ debian-mutt/Makefile.in     2007-06-14 10:57:02.000000000 +0200
959 @@ -74,7 +74,7 @@ am_mutt_OBJECTS = $(am__objects_1) addrb
960         attach.$(OBJEXT) base64.$(OBJEXT) browser.$(OBJEXT) \
961         buffy.$(OBJEXT) color.$(OBJEXT) crypt.$(OBJEXT) \
962         cryptglue.$(OBJEXT) commands.$(OBJEXT) complete.$(OBJEXT) \
963 -       compose.$(OBJEXT) copy.$(OBJEXT) curs_lib.$(OBJEXT) \
964 +       compose.$(OBJEXT) compress.$(OBJEXT) copy.$(OBJEXT) curs_lib.$(OBJEXT) \
965         curs_main.$(OBJEXT) date.$(OBJEXT) edit.$(OBJEXT) \
966         enter.$(OBJEXT) flags.$(OBJEXT) init.$(OBJEXT) \
967         filter.$(OBJEXT) from.$(OBJEXT) getdomain.$(OBJEXT) \
968 @@ -302,7 +302,7 @@ bin_SCRIPTS = muttbug flea @SMIMEAUX_TAR
969  BUILT_SOURCES = keymap_defs.h patchlist.c reldate.h hcversion.h
970  mutt_SOURCES = $(BUILT_SOURCES) \
971         addrbook.c alias.c attach.c base64.c browser.c buffy.c color.c \
972 -       crypt.c cryptglue.c \
973 +       crypt.c cryptglue.c compress.c \
974         commands.c complete.c compose.c copy.c curs_lib.c curs_main.c date.c \
975         edit.c enter.c flags.c init.c filter.c from.c \
976         getdomain.c group.c \
977 @@ -335,7 +335,7 @@ EXTRA_mutt_SOURCES = account.c md5c.c mu
978         utf8.c wcwidth.c 
979  
980  EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \
981 -       configure account.h \
982 +       configure account.h compress.h \
983         attach.h buffy.h charset.h copy.h crypthash.h dotlock.h functions.h gen_defs \
984         globals.h hash.h history.h init.h keymap.h mutt_crypt.h \
985         mailbox.h mapping.h md5.h mime.h mutt.h mutt_curses.h mutt_menu.h \
986 @@ -507,6 +507,7 @@ distclean-compile:
987  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commands.Po@am__quote@
988  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/complete.Po@am__quote@
989  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compose.Po@am__quote@
990 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compress.Po@am__quote@
991  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/copy.Po@am__quote@
992  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypt-gpgme.Po@am__quote@
993  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypt-mod-pgp-classic.Po@am__quote@
994 Index: debian-mutt/mbox.c
995 ===================================================================
996 --- debian-mutt.orig/mbox.c     2007-06-14 10:54:19.000000000 +0200
997 +++ debian-mutt/mbox.c  2007-06-14 10:57:02.000000000 +0200
998 @@ -29,6 +29,10 @@
999  #include "copy.h"
1000  #include "mutt_curses.h"
1001  
1002 +#ifdef USE_COMPRESSED
1003 +#include "compress.h"
1004 +#endif
1005 +
1006  #include <sys/stat.h>
1007  #include <dirent.h>
1008  #include <string.h>
1009 @@ -1026,6 +1030,12 @@ bail:  /* Come here in case of disaster 
1010  int mbox_close_mailbox (CONTEXT *ctx)
1011  {
1012    mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
1013 +
1014 +#ifdef USE_COMPRESSED
1015 +  if (ctx->compressinfo)
1016 +    mutt_slow_close_compressed (ctx);
1017 +#endif
1018 +
1019    mutt_unblock_signals ();
1020    mx_fastclose_mailbox (ctx);
1021    return 0;
1022 Index: debian-mutt/mutt.h
1023 ===================================================================
1024 --- debian-mutt.orig/mutt.h     2007-06-14 10:54:19.000000000 +0200
1025 +++ debian-mutt/mutt.h  2007-06-14 10:57:02.000000000 +0200
1026 @@ -160,6 +160,11 @@ typedef enum
1027  #define M_ACCOUNTHOOK  (1<<9)
1028  #define M_REPLYHOOK    (1<<10)
1029  #define M_SEND2HOOK     (1<<11)
1030 +#ifdef USE_COMPRESSED
1031 +#define M_OPENHOOK     (1<<12)
1032 +#define M_APPENDHOOK   (1<<13)
1033 +#define M_CLOSEHOOK    (1<<14)
1034 +#endif
1035  
1036  /* tree characters for linearize_tree and print_enriched_string */
1037  #define M_TREE_LLCORNER                1
1038 @@ -885,6 +890,11 @@ typedef struct _context
1039    int flagged;                 /* how many flagged messages */
1040    int msgnotreadyet;           /* which msg "new" in pager, -1 if none */
1041  
1042 +#ifdef USE_COMPRESSED
1043 +  void *compressinfo;          /* compressed mbox module private data */
1044 +  char *realpath;              /* path to compressed mailbox */
1045 +#endif /* USE_COMPRESSED */
1046 +
1047    short magic;                 /* mailbox type */
1048  
1049    unsigned char rights[(RIGHTSMAX + 7)/8];     /* ACL bits */
1050 Index: debian-mutt/mx.c
1051 ===================================================================
1052 --- debian-mutt.orig/mx.c       2007-06-14 10:54:19.000000000 +0200
1053 +++ debian-mutt/mx.c    2007-06-14 10:57:02.000000000 +0200
1054 @@ -30,6 +30,10 @@
1055  #include "keymap.h"
1056  #include "url.h"
1057  
1058 +#ifdef USE_COMPRESSED
1059 +#include "compress.h"
1060 +#endif
1061 +
1062  #ifdef USE_IMAP
1063  #include "imap.h"
1064  #endif
1065 @@ -450,6 +454,10 @@ int mx_get_magic (const char *path)
1066      return (-1);
1067    }
1068  
1069 +#ifdef USE_COMPRESSED
1070 +  if (magic == 0 && mutt_can_read_compressed (path))
1071 +    return M_COMPRESSED;
1072 +#endif
1073    return (magic);
1074  }
1075  
1076 @@ -489,6 +497,13 @@ static int mx_open_mailbox_append (CONTE
1077  {
1078    struct stat sb;
1079  
1080 +#ifdef USE_COMPRESSED
1081 +  /* special case for appending to compressed folders -
1082 +   * even if we can not open them for reading */
1083 +  if (mutt_can_append_compressed (ctx->path))
1084 +    mutt_open_append_compressed (ctx);
1085 +#endif
1086 +
1087    ctx->append = 1;
1088  
1089  #ifdef USE_IMAP
1090 @@ -652,7 +667,12 @@ CONTEXT *mx_open_mailbox (const char *pa
1091    }
1092  
1093    ctx->magic = mx_get_magic (path);
1094 -  
1095 +
1096 +#ifdef USE_COMPRESSED
1097 +  if (ctx->magic == M_COMPRESSED)
1098 +    mutt_open_read_compressed (ctx);
1099 +#endif
1100 +
1101    if(ctx->magic == 0)
1102      mutt_error (_("%s is not a mailbox."), path);
1103  
1104 @@ -753,6 +773,10 @@ void mx_fastclose_mailbox (CONTEXT *ctx)
1105      mutt_free_header (&ctx->hdrs[i]);
1106    FREE (&ctx->hdrs);
1107    FREE (&ctx->v2r);
1108 +#ifdef USE_COMPRESSED
1109 +  if (ctx->compressinfo)
1110 +    mutt_fast_close_compressed (ctx);
1111 +#endif
1112    FREE (&ctx->path);
1113    FREE (&ctx->pattern);
1114    if (ctx->limit_pattern) 
1115 @@ -805,6 +829,12 @@ static int sync_mailbox (CONTEXT *ctx, i
1116    
1117    if (tmp && tmp->new == 0)
1118      mutt_update_mailbox (tmp);
1119 +
1120 +#ifdef USE_COMPRESSED
1121 +  if (rc == 0 && ctx->compressinfo)
1122 +    return mutt_sync_compressed (ctx);
1123 +#endif
1124 +
1125    return rc;
1126  }
1127  
1128 @@ -1006,6 +1036,11 @@ int mx_close_mailbox (CONTEXT *ctx, int 
1129        !mutt_is_spool(ctx->path) && !option (OPTSAVEEMPTY))
1130      mx_unlink_empty (ctx->path);
1131  
1132 +#ifdef USE_COMPRESSED
1133 +  if (ctx->compressinfo && mutt_slow_close_compressed (ctx))
1134 +    return (-1);
1135 +#endif
1136 +
1137    mx_fastclose_mailbox (ctx);
1138  
1139    return 0;
1140 @@ -1315,6 +1350,11 @@ int mx_check_mailbox (CONTEXT *ctx, int 
1141  {
1142    int rc;
1143  
1144 +#ifdef USE_COMPRESSED
1145 +  if (ctx->compressinfo)
1146 +    return mutt_check_mailbox_compressed (ctx);
1147 +#endif
1148 +
1149    if (ctx)
1150    {
1151      if (ctx->locked) lock = 0;
1152 Index: debian-mutt/mx.h
1153 ===================================================================
1154 --- debian-mutt.orig/mx.h       2007-06-14 10:54:19.000000000 +0200
1155 +++ debian-mutt/mx.h    2007-06-14 10:57:02.000000000 +0200
1156 @@ -40,6 +40,9 @@ enum
1157  #ifdef USE_POP
1158    , M_POP
1159  #endif
1160 +#ifdef USE_COMPRESSED
1161 +  , M_COMPRESSED
1162 +#endif
1163  };
1164  
1165  WHERE short DefaultMagic INITVAL (M_MBOX);
1166 Index: debian-mutt/PATCHES
1167 ===================================================================
1168 --- /dev/null   1970-01-01 00:00:00.000000000 +0000
1169 +++ debian-mutt/PATCHES 2007-06-14 10:57:02.000000000 +0200
1170 @@ -0,0 +1 @@
1171 +patch-1.5.16.rr.compressed.1
1172 Index: debian-mutt/po/de.po
1173 ===================================================================
1174 --- debian-mutt.orig/po/de.po   2007-06-14 10:54:19.000000000 +0200
1175 +++ debian-mutt/po/de.po        2007-06-14 10:57:02.000000000 +0200
1176 @@ -1279,6 +1279,48 @@ msgstr "Prüfung des Absenders fehlgeschl
1177  msgid "Failed to figure out sender"
1178  msgstr "Kann Absender nicht ermitteln"
1179  
1180 +#: compress.c:203 mbox.c:661
1181 +msgid "Mailbox was corrupted!"
1182 +msgstr "Mailbox wurde zerstört!"
1183 +
1184 +#: compress.c:228 compress.c:253
1185 +#, c-format
1186 +msgid "Decompressing %s...\n"
1187 +msgstr "Entpacke %s...\n"
1188 +
1189 +#: compress.c:246 compress.c:367 compress.c:443 mbox.c:706
1190 +msgid "Unable to lock mailbox!"
1191 +msgstr "Kann Mailbox nicht für exklusiven Zugriff sperren!"
1192 +
1193 +#: compress.c:264
1194 +#, c-format
1195 +msgid "Error executing: %s : unable to open the mailbox!\n"
1196 +msgstr "Fehler beim Ausführen von %s : Kann die Mailbox nicht öffnen!\n"
1197 +
1198 +#: compress.c:350 compress.c:377 compress.c:423 compress.c:454
1199 +#, c-format
1200 +msgid "Compressing %s...\n"
1201 +msgstr "Komprimiere %s...\n"
1202 +
1203 +#: compress.c:381
1204 +#, c-format
1205 +msgid ""
1206 +"%s: Error compressing mailbox! Original mailbox deleted, uncompressed one "
1207 +"kept!\n"
1208 +msgstr ""
1209 +"%s: Fehler beim Komprimieren der Mailbox! Ursprüngliche Mailbox gelöscht, "
1210 +"entpackte gespeichert!\n"
1211 +
1212 +#: compress.c:425 compress.c:456
1213 +#, c-format
1214 +msgid "Compressed-appending to %s...\n"
1215 +msgstr "Hänge komprimiert an %s... an\n"
1216 +
1217 +#: compress.c:461
1218 +#, c-format
1219 +msgid " %s: Error compressing mailbox!  Uncompressed one kept!\n"
1220 +msgstr " %s: Fehler beim packen der Mailbox! Entpackte Mailbox gespeichert!\n"
1221 +
1222  #: crypt.c:69
1223  #, c-format
1224  msgid " (current time: %c)"
1225 @@ -1948,6 +1990,10 @@ msgstr "Hilfe für %s"
1226  msgid "Bad history file format (line %d)"
1227  msgstr "Falsches Format der Datei früherer Eingaben (Zeile %d)"
1228  
1229 +#: hook.c:96
1230 +msgid "badly formatted command string"
1231 +msgstr "Hook enthält nicht die Muster %f und %t"
1232 +
1233  #: hook.c:251
1234  #, c-format
1235  msgid "unhook: Can't do unhook * from within a hook."
1236 @@ -3452,18 +3498,10 @@ msgstr "Lese %s..."
1237  msgid "Mailbox is corrupt!"
1238  msgstr "Mailbox fehlerhaft!"
1239  
1240 -#: mbox.c:670
1241 -msgid "Mailbox was corrupted!"
1242 -msgstr "Mailbox wurde zerstört!"
1243 -
1244  #: mbox.c:711 mbox.c:964
1245  msgid "Fatal error!  Could not reopen mailbox!"
1246  msgstr "Fataler Fehler, konnte Mailbox nicht erneut öffnen!"
1247  
1248 -#: mbox.c:720
1249 -msgid "Unable to lock mailbox!"
1250 -msgstr "Kann Mailbox nicht für exklusiven Zugriff sperren!"
1251 -
1252  #. this means ctx->changed or ctx->deleted was set, but no
1253  #. * messages were found to be changed or deleted.  This should
1254  #. * never happen, is we presume it is a bug in mutt.
1255 Index: debian-mutt/po/POTFILES.in
1256 ===================================================================
1257 --- debian-mutt.orig/po/POTFILES.in     2007-06-14 10:54:19.000000000 +0200
1258 +++ debian-mutt/po/POTFILES.in  2007-06-14 10:57:02.000000000 +0200
1259 @@ -8,6 +8,7 @@ charset.c
1260  color.c
1261  commands.c
1262  compose.c
1263 +compress.c
1264  crypt-gpgme.c
1265  crypt.c
1266  cryptglue.c
1267 Index: debian-mutt/status.c
1268 ===================================================================
1269 --- debian-mutt.orig/status.c   2007-06-14 10:54:19.000000000 +0200
1270 +++ debian-mutt/status.c        2007-06-14 10:57:02.000000000 +0200
1271 @@ -99,6 +99,14 @@ status_format_str (char *buf, size_t buf
1272  
1273      case 'f':
1274        snprintf (fmt, sizeof(fmt), "%%%ss", prefix);
1275 +#ifdef USE_COMPRESSED
1276 +      if (Context && Context->compressinfo && Context->realpath)
1277 +      {
1278 +        strfcpy (tmp, Context->realpath, sizeof (tmp));
1279 +        mutt_pretty_mailbox (tmp);
1280 +      }
1281 +      else
1282 +#endif
1283        if (Context && Context->path)
1284        {
1285         strfcpy (tmp, Context->path, sizeof (tmp));