我使用 Mantis bug tracker v1.1.8 和 Horde Webmail System 来处理我的公司电子邮件。当 Mantis 发送的电子邮件到达我公司的收件箱时,我在收件箱视图的日期字段中收到未知日期。当我打开消息时,我看到了像 Thu, 31 Dec 2009 14:32:15 +0580 这样的日期。我可以在收件箱视图中看到其日期的其他邮件的日期格式为 Mon, 21 Dec 2009 06:56:18 +0100 [12/21/2009 11:26:18 AM IST] 。供您参考,我已将 config_inc.php 的内容粘贴在下面
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker_mantis';
$g_db_username = 'root';
$g_db_password = '';
# select the method to mail by:
# 0 - mail()
# 1 - sendmail
# 2 - SMTP
$g_phpMailer_method = 2;
# This option allows you to use a remote SMTP host. Must use the phpMailer script
# Name of smtp host, needed for phpMailer, taken from php.ini
$g_smtp_host = <my_smtp_host>;
$g_administrator_email = <my_administrator_email>;
$g_webmaster_email = <my_webmaster_email>;
$g_from_email = <my_from_email>;
putenv("TZ=Asia/Calcutta");
#Date Settings
$g_default_language = 'english';
$g_short_date_format = 'dm-Y';
$g_normal_date_format = 'dmY H: i';
$g_complete_date_format = 'm-d-y H:i T';
?>
有什么办法可以解决这个问题?谢谢你