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

plugins: imapsieve: Restructure imap_sieve_run_scripts().

parent d083bdab
No related branches found
No related tags found
No related merge requests found
......@@ -679,6 +679,7 @@ imap_sieve_run_scripts(struct imap_sieve_run *isrun,
for (i = 0; i < count && more; i++) {
struct sieve_script *script = scripts[i].script;
struct sieve_binary *sbin = scripts[i].binary;
int mstatus;
cpflags = 0;
exflags = SIEVE_EXECUTE_FLAG_NO_ENVELOPE |
......@@ -724,37 +725,34 @@ imap_sieve_run_scripts(struct imap_sieve_run *isrun,
more = sieve_multiscript_run(mscript, sbin, ehandler, ehandler,
exflags);
if (!more) {
if (!scripts[i].binary_corrupt &&
sieve_multiscript_status(mscript)
== SIEVE_EXEC_BIN_CORRUPT &&
sieve_is_loaded(sbin)) {
/* Close corrupt script */
sieve_close(&sbin);
/* Recompile */
scripts[i].binary = sbin =
imap_sieve_run_open_script(
isrun, script, cpflags, FALSE,
&compile_error);
if (sbin == NULL) {
scripts[i].compile_error = compile_error;
break;
}
/* Execute again */
more = sieve_multiscript_run(mscript, sbin,
ehandler, ehandler,
exflags);
/* Save new version */
if (sieve_multiscript_status(mscript)
== SIEVE_EXEC_BIN_CORRUPT)
scripts[i].binary_corrupt = TRUE;
else if (more)
(void)sieve_save(sbin, FALSE, NULL);
mstatus = sieve_multiscript_status(mscript);
if (!more && mstatus == SIEVE_EXEC_BIN_CORRUPT &&
!scripts[i].binary_corrupt && sieve_is_loaded(sbin)) {
/* Close corrupt script */
sieve_close(&sbin);
/* Recompile */
scripts[i].binary = sbin =
imap_sieve_run_open_script(
isrun, script, cpflags, FALSE,
&compile_error);
if (sbin == NULL) {
scripts[i].compile_error = compile_error;
break;
}
/* Execute again */
more = sieve_multiscript_run(mscript, sbin,
ehandler, ehandler,
exflags);
/* Save new version */
mstatus = sieve_multiscript_status(mscript);
if (mstatus == SIEVE_EXEC_BIN_CORRUPT)
scripts[i].binary_corrupt = TRUE;
else if (more)
(void)sieve_save(sbin, FALSE, NULL);
}
}
......
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.