Charset nur bei Type 'text' Anhängen setzen.
authorSven Schöling <s.schoeling@linet-services.de>
Wed, 11 Mar 2009 15:21:22 +0000 (15:21 +0000)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 11 Mar 2009 15:21:22 +0000 (15:21 +0000)
SL/Mailer.pm

index 2cd3b43..1cf519b 100644 (file)
@@ -194,7 +194,15 @@ $self->{message}
       }
 
       print OUT qq|--${boundary}
-Content-Type: $application/$self->{format}; name="$filename"; charset="$self->{charset}"
+Content-Type: $application/$self->{format}; name="$filename"; |;
+
+      # only set charset for attachements of type text. every other type should not have this field
+      # refer to bug 883 for detailed information
+      if ($application eq 'text' && $self->{charset}) {
+        print OUT qq|charset="$self->{charset}" |;
+      }
+
+      print OUT qq|
 Content-Transfer-Encoding: BASE64
 Content-Disposition: attachment; filename="$filename"\n\n|;