[imp] which "patch" program to use

Alexander Dietz alex@munich.sgi.com
Tue, 22 May 2001 15:24:28 +0200


Alexander Dietz wrote:
> 
> One more note to this really useful "Delete-to-Trash" patch for IMP
> 2.2.4, which is available from John Morrissey's page at
> 
>   http://www.horde.net/~jwm/software/imp/
> 
> There are a couple of "default->trash_folder" references resulting in
> PHP parsing errors. Replacing all those with "$default->trash_folder"
> fixes the problem and all is running fine.

One more minor issue within "deletetotrash-2.1.2.patch": The file
"imp/locale/en/prefs.lang" is patched with

[...] = 'Automatically [...] ' . $default-trash_folder . ' folder [...]

which probably should read

[...] = 'Automatically [...] ' . $default->trash_folder . ' folder [...]

(note "$default->trash_folder" instead of "$default-trash_folder")

just for info,
  aleX.