mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-22 09:39:48 +00:00
[Dovecot] Split imapsync cron by --
This commit is contained in:
parent
09b9055f1a
commit
b710cb751b
1 changed files with 7 additions and 1 deletions
|
|
@ -18,7 +18,13 @@ if ($imapsync_running eq 1)
|
|||
exit;
|
||||
}
|
||||
|
||||
sub qqw($) { split /\s+/, $_[0] }
|
||||
sub qqw($) {
|
||||
my @values = split('(?=--)', $_[0]);
|
||||
foreach my $val (@values) {
|
||||
$val=trim($val);
|
||||
}
|
||||
return @values
|
||||
}
|
||||
|
||||
$DBNAME = '';
|
||||
$DBUSER = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue