Exclamations in the body of phplist emails resolved
Thu, 12/17/2009 - 22:23 — sandipPHPlist using phpmailer, by default sets to send email with Content-Transfer-Encoding set to 8-bit. However, mail transport standards forbid lines longer than 998 characters and has to handle such non-compliant lines by breaking/folding them, or the next hop MTA (Mail Transfer Agent) might reject the message or truncate the lines.
The fix for the problem is to use "base64" or "quoted-printable" encoding, which will fold the lines in a way that can be undone by the recipient MUA (Mail User Agent).
If using phplist with phpmailer, the file to edit would be "admin/phpmailer/class.phpmail
var $Encoding = "base64";
cofigure phplist spellcheck for firefox
Thu, 03/05/2009 - 11:54 — sandipPHPList comes with FCKeditor as the gui default editor. However, by default it is setup so that the spellcheck is only available to IE users. To enable for other browsers such as Firefox, follow the below directions:
-
Edit admin/fckphplist.php:
Replace all instances of:
FCKConfig.SpellChecker &n bsp; = 'ieSpell' ;
with:
FCKConfig.SpellChecker &n bsp; = 'SpellerPages' ;
If this is a linux box, then make sure aspell is installed. Edit "admin/FCKeditor/editor/dialog
$aspell_prog = '/usr/bin/aspell';
That should do it.
- sandip's blog
- Login or register to post comments