Skip to content
Snippets Groups Projects
Commit 935133cc authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Multiscript: implemented sorting of script files in script directories for Sieve plugin.

parent 702921e7
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,7 @@ Current: ...@@ -3,8 +3,7 @@ Current:
* Finish enotify extension: * Finish enotify extension:
- Mailto: prevent multiple notifications to a single recipient - Mailto: prevent multiple notifications to a single recipient
- Regorous testing - Regorous testing
* Finish and test new multiscript support * Test new multiscript support
- Sort multiscript directories for lda plugin.
Next (in order of descending priority/precedence): Next (in order of descending priority/precedence):
......
...@@ -284,7 +284,21 @@ static void lda_sieve_multiscript_get_scriptfiles ...@@ -284,7 +284,21 @@ static void lda_sieve_multiscript_get_scriptfiles
const char *file; const char *file;
while ( (file=sieve_directory_get_scriptfile(sdir)) != NULL ) { while ( (file=sieve_directory_get_scriptfile(sdir)) != NULL ) {
array_append(scriptfiles, &file, 1); const char *const *scripts;
unsigned int count, i;
/* Insert into sorted array */
scripts = array_get(scriptfiles, &count);
for ( i = 0; i < count; i++ ) {
if ( strcmp(file, scripts[i]) < 0 )
break;
}
if ( i == count )
array_append(scriptfiles, &file, 1);
else
array_insert(scriptfiles, i, &file, 1);
} }
sieve_directory_close(&sdir); sieve_directory_close(&sdir);
......
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

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.