mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-30 16:39:51 +08:00
[Imapsync] Case sensitive PIPEMESS removal
This commit is contained in:
parent
998cb642a9
commit
33e5ad2b5c
@ -337,7 +337,7 @@ function mailbox($_action, $_type, $_data = null, $_extra = null) {
|
|||||||
$enc1 = $_data['enc1'];
|
$enc1 = $_data['enc1'];
|
||||||
$custom_params = (empty(trim($_data['custom_params']))) ? '' : trim($_data['custom_params']);
|
$custom_params = (empty(trim($_data['custom_params']))) ? '' : trim($_data['custom_params']);
|
||||||
// Workaround, fixme
|
// Workaround, fixme
|
||||||
if (strpos($custom_params, 'pipemess')) {
|
if (stripos($custom_params, 'pipemess')) {
|
||||||
$custom_params = '';
|
$custom_params = '';
|
||||||
}
|
}
|
||||||
if (empty($subfolder2)) {
|
if (empty($subfolder2)) {
|
||||||
@ -1746,7 +1746,7 @@ function mailbox($_action, $_type, $_data = null, $_extra = null) {
|
|||||||
);
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (strpos($custom_params, 'pipemess')) {
|
if (stripos($custom_params, 'pipemess')) {
|
||||||
$custom_params = '';
|
$custom_params = '';
|
||||||
}
|
}
|
||||||
if (empty($subfolder2)) {
|
if (empty($subfolder2)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user