[Tickets #10113] Re: Cannot create procmail rules with Maildir support

bugs at horde.org bugs at horde.org
Wed May 25 07:01:21 UTC 2011


BITTE NICHT AUF DIESE NACHRICHT ANTWORTEN. NACHRICHTEN AN DIESE  
E-MAIL-ADRESSE WERDEN NICHT GELESEN.

Ticket-URL: http://bugs.horde.org/ticket/10113
------------------------------------------------------------------------------
  Ticket           | 10113
  Aktualisiert Von | samuel.wolf at wolf-maschinenbau.de
  Zusammenfassung  | Cannot create procmail rules with Maildir support
  Warteschlange    | Ingo
  Version          | 2.0.1
  Typ              | Bug
  Status           | Unconfirmed
  Priorität        | 2. Medium
  Milestone        |
  Patch            |
  Zuständige       |
------------------------------------------------------------------------------


samuel.wolf at wolf-maschinenbau.de (2011-05-25 07:01) hat geschrieben:

Found a solution for the problem, modify following in  
../ingo/lib/Script/Procmail/Recipe.php

#################################################################
return '"$DEFAULT/.' . escapeshellcmd($folder) . '/"';
#################################################################

to

#################################################################
return '"$DEFAULT.' . escapeshellcmd($folder) . '/"';
#################################################################

But I found another problem, my Maildir don't use / for subfolders it  
separate the folder with points.
"Folder1.Subfolder1.Subfolder2"

I can solve the problem by add following in  
../ingo/lib/Script/Procmail/Recipe.php
#################################################################
}
             return '"$DEFAULT.' . escapeshellcmd($folder) . '/"';
         } else {
#################################################################

to

#################################################################
}
             $folder = str_replace("/", ".", $folder);
             return '"$DEFAULT.' . escapeshellcmd($folder) . '/"';
         } else {
#################################################################

Don't know it's a good way, but still work.






More information about the bugs mailing list