mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 21:13:23 +01:00
* Mail: fix for failed zip-download when users startfolder is not writeable
Reason: get_home_dir may fetch the users startfolder if set; if not writeable, action will fail
This commit is contained in:
parent
b448b7b6be
commit
59b14512cd
@ -2616,7 +2616,9 @@ class mail_ui
|
||||
|
||||
// put them in VFS so they can be zipped
|
||||
$header = $this->mail_bo->getMessageHeader($message_id,'',true,false,$mailbox);
|
||||
$temp_path = egw_vfs::get_home_dir() . "/.mail_$message_id";
|
||||
//get_home_dir may fetch the users startfolder if set; if not writeable, action will fail. TODO: use temp_dir
|
||||
$homedir = '/home/'.$GLOBALS['egw_info']['user']['account_lid'];
|
||||
$temp_path = $homedir/*egw_vfs::get_home_dir()*/ . "/.mail_$message_id";
|
||||
if(egw_vfs::is_dir($temp_path)) egw_vfs::remove ($temp_path);
|
||||
|
||||
// Add subject to path, so it gets used as the file name
|
||||
|
Loading…
Reference in New Issue
Block a user