X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsieve.c;h=cce70574ae927c451f165af0488e47215e27ac8c;hb=b26e3e79fcb15dc1b46f4c7710a6bafdc6472950;hp=dd049cf82a81ea894a682a1da77ae0c428a74cc6;hpb=f6e3cd67388eae6f1c6736a56c916f1a22072237;p=citadel.git diff --git a/webcit/sieve.c b/webcit/sieve.c index dd049cf82..cce70574a 100644 --- a/webcit/sieve.c +++ b/webcit/sieve.c @@ -1,28 +1,26 @@ /* - * Copyright (c) 1996-2011 by the citadel.org team + * Copyright (c) 1996-2012 by the citadel.org team * * This program is open source software. You can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 3 of the - * License, or (at your option) any later version. + * modify it under the terms of the GNU General Public License version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * FIXME: add logic to exclude the webcit-generated script from the manual script selection */ #include "webcit.h" +CtxType CTX_SIEVELIST = CTX_NONE; +CtxType CTX_SIEVESCRIPT = CTX_NONE; + #define MAX_SCRIPTS 100 #define MAX_RULES 50 #define RULES_SCRIPT "__WebCit_Generated_Script__" -/*#define FOO 1*/ /* * Helper function for output_sieve_rule() to output strings with quotes escaped @@ -42,13 +40,6 @@ void osr_sanitize(char *str) { } } -void display_add_remove_scripts(char *message); -void display_rules_editor_inner_div(void); - - - - - /* * Output parseable Sieve script code based on rules input @@ -203,7 +194,6 @@ void output_sieve_rule(char *hfield, char *compare, char *htext, char *sizecomp, serv_printf("{"); } - /* Do action */ if (!strcasecmp(action, "keep")) { @@ -230,26 +220,22 @@ void output_sieve_rule(char *hfield, char *compare, char *htext, char *sizecomp, serv_printf("vacation :addresses [%s]\n\"%s\";", my_addresses, automsg); } - /* Do 'final' action */ if (!strcasecmp(final, "stop")) { serv_printf("stop;"); } - /* Close the braces if we're in a conditional loop */ if (strcasecmp(hfield, "all")) { serv_printf("}"); } - /* End of rule. */ } - /* * Translate the fields from the rule editor into something we can save... */ @@ -351,7 +337,10 @@ void parse_fields_from_rule_editor(void) { redirect, automsg, final ); - CtdlEncodeBase64(encoded_rule, rule, strlen(rule)+1, 0); + size_t len = CtdlEncodeBase64(encoded_rule, rule, strlen(rule)+1, 0); + if (encoded_rule[len - 1] == '\n') { + encoded_rule[len - 1] = '\0'; + } serv_printf("# WEBCIT_RULE|%d|%s|", i, encoded_rule); output_sieve_rule(hfield, compare, htext, sizecomp, sizeval, action, fileinto, redirect, automsg, final, my_addresses); @@ -366,7 +355,6 @@ void parse_fields_from_rule_editor(void) { } - /* * save sieve config */ @@ -374,7 +362,6 @@ void save_sieve(void) { int bigaction; char script_names[MAX_SCRIPTS][64]; int num_scripts = 0; - int active_script = (-1); /* this throws a 'set but not used' warning , check this ! */ int i; char this_name[64]; char buf[256]; @@ -392,9 +379,6 @@ void save_sieve(void) { if (buf[0] == '1') while (serv_getln(buf, sizeof(buf)), strcmp(buf, "000")) { if (num_scripts < MAX_SCRIPTS) { extract_token(script_names[num_scripts], buf, 0, '|', 64); - if (extract_int(buf, 1) > 0) { - active_script = num_scripts; - } ++num_scripts; } } @@ -441,6 +425,15 @@ void save_sieve(void) { return; } + +void display_sieve_add_or_delete(void) { + output_headers(1, 1, 2, 0, 0, 0); + do_template("sieve_add"); + wDumpContent(1); +} + + + /* * create a new script * take the web environment script name and create it on the citadel server @@ -450,43 +443,25 @@ void create_script(void) { serv_printf("MSIV getscript|%s", bstr("script_name")); serv_getln(buf, sizeof buf); - if (buf[0] == '1') { + if (buf[0] == '1') { // does script exist already? while (serv_getln(buf, sizeof(buf)), strcmp(buf, "000")) { - /* flush */ + // yes -- flush the output } -#if FOO - display_add_remove_scripts(_("A script by that name already exists.")); -#endif - return; } - - serv_printf("MSIV putscript|%s", bstr("script_name")); - serv_getln(buf, sizeof buf); - if (buf[0] == '4') { - serv_puts("keep;"); - serv_puts("000"); -#if FOO - display_add_remove_scripts(_("A new script has been created. Return to the script editing screen to edit and activate it.")); -#else - output_headers(1, 1, 2, 0, 0, 0); - do_template("sieve_add"); - wDumpContent(1); -#endif - return; + else { + // no -- safe to create a new one by this name + serv_printf("MSIV putscript|%s", bstr("script_name")); + serv_getln(buf, sizeof buf); + if (buf[0] == '4') { + serv_puts("keep;"); + serv_puts("000"); + } } -#if FOO - display_add_remove_scripts(&buf[4]); -#else - output_headers(1, 1, 2, 0, 0, 0); - do_template("sieve_add"); - wDumpContent(1); -#endif + display_sieve_add_or_delete(); } - - /* * delete a script */ @@ -495,15 +470,8 @@ void delete_script(void) { serv_printf("MSIV deletescript|%s", bstr("script_name")); serv_getln(buf, sizeof buf); -#if FOO - display_add_remove_scripts(&buf[4]); -#else - output_headers(1, 1, 2, 0, 0, 0); - do_template("sieve_add"); - wDumpContent(1); -#endif + display_sieve_add_or_delete(); } - /* @@ -511,692 +479,11 @@ void delete_script(void) { */ void display_no_sieve(void) { - output_headers(1, 1, 2, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); do_template("sieve_none"); wDumpContent(1); } -#if FOO -/* - * view/edit sieve config - */ -void display_sieve(void) -{ - char script_names[MAX_SCRIPTS][64]; - int num_scripts = 0; - int active_script = (-1); - char buf[SIZ]; /* Don't make this buffer smaller or it will restrict line length */ - int i; - int rules_script_is_active = 0; - - if (!WC->serv_info->serv_supports_sieve) { - display_no_sieve(); - return; - } - - memset(script_names, 0, sizeof script_names); - - serv_puts("MSIV listscripts"); - serv_getln(buf, sizeof(buf)); - if (buf[0] == '1') while (serv_getln(buf, sizeof(buf)), strcmp(buf, "000")) { - if (num_scripts < MAX_SCRIPTS) { - extract_token(script_names[num_scripts], buf, 0, '|', 64); - if (extract_int(buf, 1) > 0) { - active_script = num_scripts; - if (!strcasecmp(script_names[num_scripts], RULES_SCRIPT)) { - rules_script_is_active = 1; - } - } - ++num_scripts; - } - } - - output_headers(1, 1, 2, 0, 0, 0); - - wc_printf("\n" -); - - wc_printf("
\n"); - wc_printf(""); - wc_printf("

"); - wc_printf(_("View/edit server-side mail filters")); - wc_printf("

\n"); - wc_printf("
\n"); - - wc_printf("
\n"); - - wc_printf("\n" - "\n
\n"); - - - wc_printf("
\n"); - wc_printf("\n", WC->nonce); - - wc_printf(_("When new mail arrives: ")); - wc_printf("\n\n"); - - - - /* The "no filtering" div */ - - wc_printf("
\n"); - wc_printf("


"); - wc_printf(_("Your incoming mail will not be filtered through any scripts.")); - wc_printf("

\n"); - wc_printf("
\n"); - - /* The "webcit managed scripts" div */ - - wc_printf("
\n"); - display_rules_editor_inner_div(); - wc_printf("
\n"); - - /* The "I'm smart and can write my own Sieve scripts" div */ - - wc_printf("
\n"); - - if (num_scripts > 0) { - wc_printf(_("The currently active script is: ")); - wc_printf("\n\n"); - } - - wc_printf("   "); - wc_printf("%s\n", _("Add or delete scripts")); - - wc_printf("
\n"); - - if (num_scripts > 0) { - for (i=0; i\n", script_names[i]); - wc_printf("\n"); - wc_printf("
\n"); - } - } - } - - wc_printf(" \n" - ); - - wc_printf("\n"); - - - /* The rest of this is common for all panels... */ - - wc_printf("

"); - wc_printf("", _("Save changes")); - wc_printf(" "); - wc_printf("\n", _("Cancel")); - wc_printf("
\n"); - - wc_printf("
\n"); - - wc_printf(" \n" - ); - - wDumpContent(1); - -} - - - - -/* - * show a list of available scripts to add/remove them - */ -void display_add_remove_scripts(char *message) -{ - char buf[256]; - char script_name[256]; - - output_headers(1, 1, 2, 0, 0, 0); - wc_printf("
\n"); - wc_printf(""); - wc_printf(_("Add or delete scripts")); - wc_printf("\n"); - wc_printf("
\n"); - - wc_printf("
\n"); - - if (message != NULL) { - wc_printf("%s", message); - } - - wc_printf("
\n"); - - do_template("box_begin_1"); - StrBufAppendBufPlain(WC->WBuf, _("Add a new script"), -1, 0); - do_template("box_begin_2"); - - wc_printf(_("To create a new script, enter the desired " - "script name in the box below and click 'Create'.")); - wc_printf("

"); - - wc_printf("
\n"); - wc_printf("\n", WC->nonce); - wc_printf(_("Script name: ")); - wc_printf("
\n" - "" - "
\n", _("Create")); - - do_template("box_end"); - - do_template("box_begin_1"); - StrBufAppendBufPlain(WC->WBuf, _("Edit scripts"), -1, 0); - do_template("box_begin_2"); - wc_printf("
%s

\n", - _("Return to the script editing screen") - ); - do_template("box_end"); - - wc_printf("
"); - - do_template("box_begin_1"); - StrBufAppendBufPlain(WC->WBuf, _("Delete scripts"), -1, 0); - do_template("box_begin_2"); - - wc_printf(_("To delete an existing script, select the script " - "name from the list and click 'Delete'.")); - wc_printf("

"); - - wc_printf("
" - "
\n"); - wc_printf("\n", WC->nonce); - wc_printf("\n\n
\n"); - - wc_printf("", _("Delete script"), _("Delete this script?")); - wc_printf("
\n"); - do_template("box_end"); - - wc_printf("
\n"); - - wDumpContent(1); -} - - - - - - -void display_rules_editor_inner_div(void) { - int i, j; - char buf[4096]; - char rules[MAX_RULES][2048]; - - struct { - char name[128]; - } *rooms = NULL; - int num_roomnames = 0; - int num_roomnames_alloc = 0; - - int active; - char hfield[256]; - char compare[32]; - char htext[256]; - char sizecomp[32]; - int sizeval; - char action[32]; - char fileinto[128]; - char redirect[256]; - char automsg[1024]; - char final[32]; - - /* load the rules */ - memset(rules, 0, sizeof rules); - serv_printf("MSIV getscript|%s", RULES_SCRIPT); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') while(serv_getln(buf, sizeof (buf)), strcmp(buf, "000")) { - if (!strncasecmp(buf, "# WEBCIT_RULE|", 14)) { - j = extract_int(buf, 1); - remove_token(buf, 0, '|'); - remove_token(buf, 0, '|'); - CtdlDecodeBase64(rules[j], buf, strlen(buf)); - } - } - - /* load the roomnames */ - serv_puts("LKRA"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - ++num_roomnames; - if (num_roomnames > num_roomnames_alloc) { - num_roomnames_alloc += 250; - rooms = realloc(rooms, (num_roomnames_alloc * 128)); - } - extract_token(rooms[num_roomnames-1].name, buf, 0, '|', 128); - } - } - - -/* - * This script should get called by every onChange event... - * - */ - wc_printf("\n" - ); - - - wc_printf("
"); - - wc_printf(""); - - for (i=0; i", - i, - ((i%2) ? "odd" : "even") - ); - - wc_printf("\n\n\n"); - - wc_printf("\n"); - - wc_printf(""); - - wc_printf(""); - - char *action_values[6][2] = { - { "keep", _("Keep") }, - { "discard", _("Discard silently") }, - { "reject", _("Reject") }, - { "fileinto", _("Move message to") }, - { "redirect", _("Forward to") }, - { "vacation", _("Vacation") } - }; - - wc_printf("\n"); - - char *final_values[2][2] = { - { "continue", _("continue processing") }, - { "stop", _("stop") } - }; - - wc_printf("\n", _("and then") ); - - wc_printf("\n"); - - wc_printf("\n"); - - } - - wc_printf("
\n"); - - wc_printf("
\n"); - wc_printf("\n", - i, i, - (active ? "checked" : "") - ); - wc_printf("
\n"); - - if (i>0) wc_printf("" - "\n", - i-1, i, _("Move rule up") ); - - wc_printf("" - "\n", - i, i+1, i, _("Move rule down") ); - - wc_printf("" - "\n", - i, i, _("Delete rule") ); - - wc_printf("
\n"); - wc_printf("%d\n", i+1); - wc_printf("%s ", _("If") ); - - char *hfield_values[15][2] = { - { "from", _("From") }, - { "tocc", _("To or Cc") }, - { "subject", _("Subject") }, - { "replyto", _("Reply-to") }, - { "sender", _("Sender") }, - { "resentfrom", _("Resent-From") }, - { "resentto", _("Resent-To") }, - { "envfrom", _("Envelope From") }, - { "envto", _("Envelope To") }, - { "xmailer", _("X-Mailer") }, - { "xspamflag", _("X-Spam-Flag") }, - { "xspamstatus", _("X-Spam-Status") }, - { "listid", _("List-ID") }, - { "size", _("Message size") }, - { "all", _("All") } - }; - - wc_printf("\n\n"); - wc_printf(""); - - char *compare_values[6][2] = { - { "contains", _("contains") }, - { "notcontains", _("does not contain") }, - { "is", _("is") }, - { "isnot", _("is not") }, - { "matches", _("matches") }, - { "notmatches", _("does not match") } - }; - - wc_printf("
\n", i); - wc_printf("\n\n"); - - wc_printf("\n
\n"); - - wc_printf("
", i); - wc_printf("%s", _("(All messages)")); - wc_printf("
\n"); - - char *sizecomp_values[2][2] = { - { "larger", _("is larger than") }, - { "smaller", _("is smaller than") } - }; - - wc_printf("
\n", i); - wc_printf("\n\n"); - - wc_printf("", - i, i, sizeval); - wc_printf("bytes"); - wc_printf("
"); - - wc_printf("
\n"); - wc_printf("\n\n"); - - wc_printf("
\n", i); - wc_printf("\n\n"); - wc_printf("
"); - - wc_printf("
\n", i); - wc_printf("\n
\n"); - - wc_printf("
\n", i); - wc_printf(_("Message:")); - wc_printf("
\n"); - wc_printf(""); - wc_printf("
\n"); - - wc_printf("
%s\n"); - wc_printf("\n\n"); - wc_printf("
\n"); - wc_printf("\n", - _("Add rule") - ); - - wc_printf("\n"); - - free(rooms); -} -void _display_add_remove_scripts(void) {display_add_remove_scripts(NULL);} -#endif - typedef struct __SieveListing { int IsActive; @@ -1207,22 +494,22 @@ typedef struct __SieveListing { int ConditionalSieveScriptIsActive(StrBuf *Target, WCTemplputParams *TP) { - SieveListing *SieveList = (SieveListing *)CTX; + SieveListing *SieveList = (SieveListing *)CTX(CTX_SIEVELIST); return SieveList->IsActive; } int ConditionalSieveScriptIsRulesScript(StrBuf *Target, WCTemplputParams *TP) { - SieveListing *SieveList = (SieveListing *)CTX; + SieveListing *SieveList = (SieveListing *)CTX(CTX_SIEVELIST); return SieveList->IsActive; } void tmplput_SieveScriptName(StrBuf *Target, WCTemplputParams *TP) { - SieveListing *SieveList = (SieveListing *)CTX; + SieveListing *SieveList = (SieveListing *)CTX(CTX_SIEVELIST); StrBufAppendTemplate(Target, TP, SieveList->Name, 0); } void tmplput_SieveScriptContent(StrBuf *Target, WCTemplputParams *TP) { - SieveListing *SieveList = (SieveListing *)CTX; + SieveListing *SieveList = (SieveListing *)CTX(CTX_SIEVELIST); StrBufAppendTemplate(Target, TP, SieveList->Content, 0); } void FreeSieveListing(void *vSieveListing) @@ -1245,8 +532,9 @@ HashList *GetSieveScriptListing(StrBuf *Target, WCTemplputParams *TP) int Done = 0; SieveListing *Ruleset; - if (WCC->KnownSieveScripts != NULL) + if (WCC->KnownSieveScripts != NULL) { return WCC->KnownSieveScripts; + } serv_puts("MSIV listscripts"); Line = NewStrBuf(); @@ -1285,8 +573,10 @@ HashList *GetSieveScriptListing(StrBuf *Target, WCTemplputParams *TP) ++num_scripts; } } - if ((num_scripts > 0) && (rules_script_active == 0)) + + if ((num_scripts > 0) && (rules_script_active == 0)) { PutBstr(HKEY("__SIEVE:EXTERNAL_SCRIPT"), NewStrBufPlain(HKEY("1"))); + } if (num_scripts > have_rules_script) { @@ -1305,19 +595,12 @@ HashList *GetSieveScriptListing(StrBuf *Target, WCTemplputParams *TP) (vRuleset != NULL)) { Ruleset = (SieveListing *) vRuleset; - - /* - * its the webcit rule? we don't need to load that here. - */ - if (Ruleset->IsRulesScript) - continue; - - if (!serv_printf("MSIV getscript|%s", ChrPtr(Ruleset->Name))) - break; + serv_printf("MSIV getscript|%s", ChrPtr(Ruleset->Name)); StrBuf_ServGetln(Line); if (GetServerStatus(Line, NULL) == 1) { Ruleset->Content = NewStrBuf(); + Done = 0; while(!Done && (rc = StrBuf_ServGetln(Line), rc >= 0) ) if ( (StrLength(Line)==3) && !strcmp(ChrPtr(Line), "000")) @@ -1406,7 +689,7 @@ typedef struct __SieveRule { int ConditionalSieveRule_hfield(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, @@ -1417,7 +700,7 @@ int ConditionalSieveRule_hfield(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_compare(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, 3, @@ -1427,7 +710,7 @@ int ConditionalSieveRule_compare(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_action(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, 3, @@ -1437,7 +720,7 @@ int ConditionalSieveRule_action(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_sizecomp(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, 3, @@ -1447,7 +730,7 @@ int ConditionalSieveRule_sizecomp(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_final(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, 3, @@ -1457,7 +740,7 @@ int ConditionalSieveRule_final(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_ThisRoom(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return GetTemplateTokenNumber(Target, TP, 3, @@ -1467,39 +750,39 @@ int ConditionalSieveRule_ThisRoom(StrBuf *Target, WCTemplputParams *TP) } int ConditionalSieveRule_Active(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); return Rule->active; } void tmplput_SieveRule_htext(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); StrBufAppendTemplate(Target, TP, Rule->htext, 0); } void tmplput_SieveRule_fileinto(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); StrBufAppendTemplate(Target, TP, Rule->fileinto, 0); } void tmplput_SieveRule_redirect(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); StrBufAppendTemplate(Target, TP, Rule->redirect, 0); } void tmplput_SieveRule_automsg(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); StrBufAppendTemplate(Target, TP, Rule->automsg, 0); } void tmplput_SieveRule_sizeval(StrBuf *Target, WCTemplputParams *TP) { - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); StrBufAppendPrintf(Target, "%d", Rule->sizeval); } void tmplput_SieveRule_lookup_FileIntoRoom(StrBuf *Target, WCTemplputParams *TP) { void *vRoom; - SieveRule *Rule = (SieveRule *)CTX; + SieveRule *Rule = (SieveRule *)CTX(CTX_SIEVESCRIPT); wcsession *WCC = WC; HashList *Rooms = GetRoomListHashLKRA(Target, TP); @@ -1613,6 +896,8 @@ void InitModule_SIEVE (void) { + RegisterCTX(CTX_SIEVELIST); + RegisterCTX(CTX_SIEVESCRIPT); REGISTERTokenParamDefine(from); REGISTERTokenParamDefine(tocc); REGISTERTokenParamDefine(subject); @@ -1652,21 +937,21 @@ InitModule_SIEVE RegisterIterator("SIEVE:SCRIPTS", 0, NULL, GetSieveScriptListing, NULL, NULL, CTX_SIEVELIST, CTX_NONE, IT_NOFLAG); - RegisterConditional(HKEY("COND:SIEVE:SCRIPT:ACTIVE"), 0, ConditionalSieveScriptIsActive, CTX_SIEVELIST); - RegisterConditional(HKEY("COND:SIEVE:SCRIPT:ISRULES"), 0, ConditionalSieveScriptIsRulesScript, CTX_SIEVELIST); + RegisterConditional("COND:SIEVE:SCRIPT:ACTIVE", 0, ConditionalSieveScriptIsActive, CTX_SIEVELIST); + RegisterConditional("COND:SIEVE:SCRIPT:ISRULES", 0, ConditionalSieveScriptIsRulesScript, CTX_SIEVELIST); RegisterNamespace("SIEVE:SCRIPT:NAME", 0, 1, tmplput_SieveScriptName, NULL, CTX_SIEVELIST); RegisterNamespace("SIEVE:SCRIPT:CONTENT", 0, 1, tmplput_SieveScriptContent, NULL, CTX_SIEVELIST); RegisterIterator("SIEVE:RULES", 0, NULL, GetSieveRules, NULL, DeleteHash, CTX_SIEVESCRIPT, CTX_NONE, IT_NOFLAG); - RegisterConditional(HKEY("COND:SIEVE:ACTIVE"), 1, ConditionalSieveRule_Active, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:HFIELD"), 1, ConditionalSieveRule_hfield, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:COMPARE"), 1, ConditionalSieveRule_compare, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:ACTION"), 1, ConditionalSieveRule_action, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:SIZECOMP"), 1, ConditionalSieveRule_sizecomp, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:FINAL"), 1, ConditionalSieveRule_final, CTX_SIEVESCRIPT); - RegisterConditional(HKEY("COND:SIEVE:THISROOM"), 1, ConditionalSieveRule_ThisRoom, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:ACTIVE", 1, ConditionalSieveRule_Active, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:HFIELD", 1, ConditionalSieveRule_hfield, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:COMPARE", 1, ConditionalSieveRule_compare, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:ACTION", 1, ConditionalSieveRule_action, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:SIZECOMP", 1, ConditionalSieveRule_sizecomp, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:FINAL", 1, ConditionalSieveRule_final, CTX_SIEVESCRIPT); + RegisterConditional("COND:SIEVE:THISROOM", 1, ConditionalSieveRule_ThisRoom, CTX_SIEVESCRIPT); RegisterNamespace("SIEVE:SCRIPT:HTEXT", 0, 1, tmplput_SieveRule_htext, NULL, CTX_SIEVESCRIPT); RegisterNamespace("SIEVE:SCRIPT:SIZE", 0, 1, tmplput_SieveRule_sizeval, NULL, CTX_SIEVESCRIPT); @@ -1676,13 +961,8 @@ InitModule_SIEVE /* fetch our room into WCC->ThisRoom, to evaluate while iterating over rooms with COND:THIS:THAT:ROOM */ RegisterNamespace("SIEVE:SCRIPT:LOOKUP_FILEINTO", 0, 1, tmplput_SieveRule_lookup_FileIntoRoom, NULL, CTX_SIEVESCRIPT); - -#if FOO - WebcitAddUrlHandler(HKEY("display_sieve"), "", 0, display_sieve, 0); - WebcitAddUrlHandler(HKEY("display_add_remove_scripts"), "", 0, _display_add_remove_scripts, 0); -#endif WebcitAddUrlHandler(HKEY("save_sieve"), "", 0, save_sieve, 0); - WebcitAddUrlHandler(HKEY("create_script"), "", 0, create_script, 0); WebcitAddUrlHandler(HKEY("delete_script"), "", 0, delete_script, 0); + WebcitAddUrlHandler(HKEY("display_sieve_add_or_delete"), "", 0, display_sieve_add_or_delete, 0); }