📄 attachment.php
字号:
<?php/*Copyright Intermesh 2003Author: Merijn Schering <mschering@intermesh.nl>Version: 1.0 Release date: 08 July 2003This program is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2 of the License, or (at youroption) any later version.*/require_once("../../Group-Office.php");$GO_SECURITY->authenticate();$GO_MODULES->authenticate('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'])){ $file = $mail->view_part($_REQUEST['uid'], $_REQUEST['part'], $_REQUEST['transfer']); $mail->close(); $filename = smart_stripslashes($_REQUEST['filename']); $browser = detect_browser(); //header('Content-Length: '.strlen($file)); header('Expires: '.gmdate('D, d M Y H:i:s') . ' GMT'); if ($browser['name'] == 'MSIE') { header('Content-Type: application/download'); header('Content-Disposition: attachment; filename="'.$filename.'";'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); }else { header('Content-Type: '.$_REQUEST['mime']); header('Pragma: no-cache'); header('Content-Disposition: attachment; filename="'.$filename.'"'); } header('Content-Transfer-Encoding: binary'); echo ($file);}else{ echo $strDataError;}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -