Skip to content
Snippets Groups Projects
Commit 32b602f5 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1666 - maildrop_plugin $ar_file

parent 82a72d93
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ class maildrop_plugin { ...@@ -125,7 +125,7 @@ class maildrop_plugin {
$file = $this->mailfilter_config_dir.'/'.$email_parts[1].'/'.$email_parts[0].'/.vacation.msg'; $file = $this->mailfilter_config_dir.'/'.$email_parts[1].'/'.$email_parts[0].'/.vacation.msg';
if(is_file($file)) unlink($file) or $app->log("Unable to delete file: $file",LOGLEVEL_WARN); if(is_file($file)) unlink($file) or $app->log("Unable to delete file: $file",LOGLEVEL_WARN);
$file = $this->mailfilter_config_dir.'/'.$email_parts[1].'/'.$email_parts[0].'/.autoresponder'; $file = $this->mailfilter_config_dir.'/'.$email_parts[1].'/'.$email_parts[0].'/.autoresponder';
if(is_file($file)) unlink($ar_file) or $app->log("Unable to delete file: $ar_file",LOGLEVEL_WARN); if(is_file($file)) unlink($file) or $app->log("Unable to delete file: $file",LOGLEVEL_WARN);
//Now we create the new autoresponder, if it is enabled //Now we create the new autoresponder, if it is enabled
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment