引用:
原帖由 hzqbbc 于 2008-4-12 21:56 发表 
楼上的
1)ie7可以ie6可以?没见过,回头用ie7测试下
2)过几个小时就会没有的了,因为这些提示有cache
今天用ie7登录又能登录了,怪事
经测试,转发带附件的邮件时,输入的内容框里多了很多字符:
#!/usr/bin/perl -w
# vim: set cindent expandtab ts=4 sw=4:
use vars qw($DIR);
BEGIN {
if ($ENV{SCRIPT_FILENAME} =~ m!(.*/)cgi!) {
$DIR = $1;
}else {
$DIR = '../';
}
my $path = $DIR . 'libs';
unshift @INC, $path unless grep /^$path$/, @INC;
#print "Content-type: text/html\r\n\r\n";
#$SIG{__DIE__} = $SIG{__WARN__} = sub { print "@_" };
}
use strict;
eval {
require Ext::App::Compose;
my $app = Ext::App::Compose->new( config => $DIR . 'webmail.cf',
directory => $DIR );
$app->run;
};
if ($@) {
print "Content-type: text/html\r\n\r\n";
print "$@";
}
你们的会不会这样啊?