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