diff options
-rw-r--r-- | antispam-plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/antispam-plugin.c b/antispam-plugin.c index e50f926..cabc0f5 100644 --- a/antispam-plugin.c +++ b/antispam-plugin.c @@ -259,12 +259,12 @@ int parse_folder_setting(const char *setting, char ***strings, t_push(); - for (i = 0; i <= NUM_MT; ++i) { + for (i = 0; i < NUM_MT; ++i) { tmp = get_setting(t_strconcat(setting, pmatch_name[i].suffix, NULL)); if (tmp) { strings[i] = p_strsplit(global_pool, tmp, ";"); - if (i == 2) { + if (i == MT_PATTERN_IGNCASE) { /* lower case the string */ char **list = strings[i]; while (*list) { |