Skip to content
Snippets Groups Projects
Commit 5335a40f authored by Marius Cramer's avatar Marius Cramer
Browse files

Fixed: FS#3474 - Mail plugins do not load files from conf-custom

parent 7e61904d
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,11 @@ class getmail_plugin { ...@@ -100,7 +100,11 @@ class getmail_plugin {
if($data["new"]["active"] == 'y') { if($data["new"]["active"] == 'y') {
// Open master template // Open master template
$tpl = file_get_contents($conf["rootpath"].'/conf/getmail.conf.master'); if(file_exists($conf["rootpath"].'/conf-custom/getmail.conf.master')) {
$tpl = file_get_contents($conf["rootpath"].'/conf-custom/getmail.conf.master');
} else {
$tpl = file_get_contents($conf["rootpath"].'/conf/getmail.conf.master');
}
// Shall emails be deleted after retrieval // Shall emails be deleted after retrieval
if($data["new"]["source_delete"] == 'y') { if($data["new"]["source_delete"] == 'y') {
......
...@@ -137,7 +137,11 @@ class maildrop_plugin { ...@@ -137,7 +137,11 @@ class maildrop_plugin {
} }
// Load the master template // Load the master template
$tpl = file_get_contents($conf["rootpath"].'/conf/autoresponder.master'); if(file_exists($conf["rootpath"].'/conf-custom/autoresponder.master')) {
$tpl = file_get_contents($conf["rootpath"].'/conf-custom/autoresponder.master');
} else {
$tpl = file_get_contents($conf["rootpath"].'/conf/autoresponder.master');
}
$tpl = str_replace('{vmail_mailbox_base}', $mail_config["homedir_path"], $tpl); $tpl = str_replace('{vmail_mailbox_base}', $mail_config["homedir_path"], $tpl);
if ($data["new"]["autoresponder_start_date"] != '0000-00-00 00:00:00') { // Dates have been set if ($data["new"]["autoresponder_start_date"] != '0000-00-00 00:00:00') { // Dates have been set
...@@ -201,7 +205,11 @@ class maildrop_plugin { ...@@ -201,7 +205,11 @@ class maildrop_plugin {
} }
if($data["new"]["move_junk"] == 'y') { if($data["new"]["move_junk"] == 'y') {
$mailfilter_content .= file_get_contents($conf["rootpath"].'/conf/mailfilter_move_junk.master')."\n"; if(file_exists($conf["rootpath"].'/conf-custom/mailfilter_move_junk.master')) {
$mailfilter_content .= file_get_contents($conf["rootpath"].'/conf-custom/mailfilter_move_junk.master')."\n";
} else {
$mailfilter_content .= file_get_contents($conf["rootpath"].'/conf/mailfilter_move_junk.master')."\n";
}
} }
$mailfilter_content .= $data["new"]["custom_mailfilter"]; $mailfilter_content .= $data["new"]["custom_mailfilter"];
......
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