Changeset 170
- Timestamp:
- 09/01/07 19:18:03 (16 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
system_scripts/autoresponder.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r169 r170 2 2 o Added: autoresponder.pl: special X-Header vacation disable 3 3 o Added: special X-Header vacation to email user/admin frontend 4 o Fixed: autoresponder.pl. UTF-8 problems in body 4 5 CpVES 0.05 2007-08-31 - Jonas Genannt - <jonas.genannt@brachium-system.net> 5 6 o Fixed: repaired listmailer.pl for access tinyint(1) column (T. Genannt) -
trunk/system_scripts/autoresponder.pl
r169 r170 100 100 #Now check if autoresponder is enabled 101 101 my $dbh = DBI->connect($dsn, $config{'db_username'}, $config{'db_password'}); 102 $dbh->do("SET NAMES utf8"); 102 103 103 104 sub check_du_feature($$) { … … 213 214 } 214 215 215 ##UTF-8 fix:216 if (! utf8::is_utf8($mail_text)) {217 utf8::decode($mail_text);218 }219 if (! utf8::is_utf8($subject)) {220 utf8::decode($subject);221 }222 223 216 my $e_send_to = MIME::Entity->build( 224 217 Type => "text/plain",
