Re: [imp] Folder names with tilde character

2015-11-19 Thread Jan Schneider
Zitat von Jens Wahnes : One of our users created a folder with a tilde ("~") character within the folder name. This kind of folder name is not handled correctly. When the folder is shown in the folder list, the tilde character is silently dropped. For instance, if a folder by the name

Re: [imp] Why is HTML disabled?

2015-11-19 Thread Michael M Slusarz
Quoting John C Payne : I'm just wondering why inline HTML is disabled in IMP.  I know that nasty stuff can happen if the bad guys send nasty messages. Sad to say: until there are no more internet bad guys, such is life. So what? This is 2015.  Most folks know about HTML and all the risks.  Mayb

Re: [imp] Folder names with tilde character

2015-11-19 Thread Michael M Slusarz
Quoting Jens Wahnes : After a very long search, I found out that this problem is caused by the code in the Horde_Imap_Client_Tokenize class, or more precisely the code within the "next" method on line 292 or so. There is a comment attached to the "case" statement in question which reads

Re: [imp] HTML in Web Mail

2015-11-19 Thread Jan Schneider
Zitat von John C Payne : I am trying, without sauces, to enable HTML web mail display inline. Version 5.6.2 This is copied from the Administrator FAQ. The changes needed to enable HTML web mail: $mime_drivers['imp']['html']['inline'] = true; // for Such a setting doesn't exist. horde/conf

Re: [imp] Folder names with tilde character

2015-11-19 Thread Jan Schneider
Zitat von Michael M Slusarz : Quoting Jens Wahnes : After a very long search, I found out that this problem is caused by the code in the Horde_Imap_Client_Tokenize class, or more precisely the code within the "next" method on line 292 or so. There is a comment attached to the "case" sta

Re: [imp] HTML in Web Mail

2015-11-19 Thread Arjen de Korte
Citeren Jan Schneider : Zitat von John C Payne : I am trying, without sauces, to enable HTML web mail display inline. Version 5.6.2 This is copied from the Administrator FAQ. The changes needed to enable HTML web mail: $mime_drivers['imp']['html']['inline'] = true; // for Such a setting do

Re: [imp] Folder names with tilde character

2015-11-19 Thread Michael M Slusarz
The only place where we would need to *parse* a literal8, is when reading BODY data of a part. I think we always try to do this, but IIRC the server only has to send literal8 when the data both 1) is 8bit an 2) contains NULs. So you would have to artificially create that kind of data to p

Re: [imp] HTML in Web Mail

2015-11-19 Thread Mauricio Jose T. Tecles
- Mensagem de Arjen de Korte - Data: Thu, 19 Nov 2015 21:15:49 +0100 De: Arjen de Korte Assunto: Re: [imp] HTML in Web Mail Para: imp@lists.horde.org Citeren Jan Schneider : Zitat von John C Payne : I am trying, without sauces, to enable HTML web mail display inlin

Re: [imp] Folder names with tilde character

2015-11-19 Thread Jan Schneider
Zitat von Michael M Slusarz : Quoting Jan Schneider : Zitat von Michael M Slusarz : Quoting Jens Wahnes : After a very long search, I found out that this problem is caused by the code in the Horde_Imap_Client_Tokenize class, or more precisely the code within the "next" method on line 2