装3.6.3,很顺利,没中文版装3.4.3,有简体中文。但是安装过程不顺利,安装程序不如3.6.3完善,少了很多pm文件,过后手工添加的不想装sendmail,用如下方法用gmail的smtp发邮件http://yaodong.yu.blog.163.com/blog/static/12142669020096224221695/NowweneedtweakBugZillacode.carefullyexecutefollowinginstructionsanddon’tforgettobackupfilesbeforeyoumodify.GotoyourBugZillainstallationdirectoryandexecutefollowingcommandcdBugzillaOpenMailer.pmfile.andsearchforfollowingifblockif($methodeq”SMTP”){andchangeitto if($methodeq”SMTP”||$methodeq”SMTP::TLS”){($smtp_server,$smtp_port)=split/:/,Bugzilla->params->{“smtpserver”}; push@args, Host=>$smtp_server, User=>Bugzilla->params->{“smtp_username”}, Password=>Bugzilla->params->{“smtp_password”}, Hello=>$hostname, Debug=>Bugzilla->params->{‘smtp_debug’}; push@args,Port=>$smtp_portif($smtp_port);}这一段,要稍微加两行,改为my$smtp_server;my$smtp_port;if($methodeq”SMTP”||$methodeq”SMTP::TLS”){($smtp_server,$smtp_port)=split/:/,Bugzilla->params->{“smtpserver”}; push@args, Host=>$smtp_server, User=>Bugzilla->params->{“smtp_username”}, Password=>Bugzilla->params->{“smtp_password”}, Hello=>$hostname, Debug=>Bugzilla->params->{‘smtp_debug’}; push@args,Port=>$smtp_portif($smtp_port);}