Home : Products : Gossamer Mail : Discussion :

Products: Gossamer Mail: Discussion: Re: [nass1] problem in the Subject field when sending an email using Arabic Language: Edit Log

Here is the list of edits for this post
Re: [nass1] problem in the Subject field when sending an email using Arabic Language
Here's a patch to GT::Mail::Parts that should fix your problem.

Code:
diff -u -r1.81 Parts.pm
--- Parts.pm 21 Oct 2005 03:22:09 -0000 1.81
+++ Parts.pm 20 May 2006 00:13:04 -0000
@@ -526,10 +526,12 @@
}
$ret;
- }oeg;
+ }eg;
+# Spaces between encoded words need to be encoded as well, or they won't show up
+ $words =~ s/\?=( +)=\?/"?= =?$charset?Q?" . ("=20" x length $1) . "?= =?"/eg;
return $words;
}

Adrian

Last edited by:

brewt: May 19, 2006, 6:31 PM

Edit Log: