⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 properties.php

📁 groupoffice
💻 PHP
字号:
<?php/** * @copyright Intermesh 2003 * @author Merijn Schering <mschering@intermesh.nl> * @version $Revision: 1.17 $ $Date: 2005/07/01 10:11:12 $ * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. */require_once("../../Group-Office.php");$GO_SECURITY->authenticate();$GO_MODULES->authenticate('email');require_once($GO_LANGUAGE->get_language_file('email'));require_once($GO_CONFIG->class_path."mail/imap.class.inc");require_once($GO_MODULES->class_path."email.class.inc");$mail = new imap();$email = new email();$account = $email->get_account($_REQUEST['account_id']);if ($mail->open($account['host'], $account['type'], $account['port'], $account['username'], $account['password'], $_REQUEST['mailbox'], 0, $account['use_ssl'], $account['novalidate_cert'])){	$content = $mail->get_message($_REQUEST['uid']);}$page_title=$fbProperties;require_once($GO_THEME->theme_path."header.inc");?><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr>	<td height="50">	<h1><?php echo $fbProperties; ?></h1>	</td></tr><tr>	<td>	<?php		echo text_to_html($content["header"]);	?>	</td></table><?phprequire_once($GO_THEME->theme_path."footer.inc");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -