diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-08-31 15:34:09 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-08-31 15:34:09 +0400 |
commit | 155f154d7aa04a7132a675b8040cbf7657b8dc68 (patch) | |
tree | 7f2e9ff7f5fc44e27c5b6e8065954a105fadbcb6 /src/cfg_file.h | |
parent | d77c3021ccbdf4994c8a5681ec99b99d978cb044 (diff) | |
download | rspamd-155f154d7aa04a7132a675b8040cbf7657b8dc68.tar.gz rspamd-155f154d7aa04a7132a675b8040cbf7657b8dc68.zip |
* Reorganze lua support in rspamd
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r-- | src/cfg_file.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h index 6529fea51..7e3f035bc 100644 --- a/src/cfg_file.h +++ b/src/cfg_file.h @@ -92,9 +92,9 @@ struct memcached_server { }; /** - * Perl module list item + * script module list item */ -struct perl_module { +struct script_module { char *path; /**< path to module */ }; @@ -140,7 +140,7 @@ struct statfile { }; /** - * Config option for importing to perl module + * Config option for importing to script module */ struct config_scalar { void *pointer; /**< pointer to data */ @@ -210,7 +210,7 @@ struct config_file { char *deliver_agent_path; /**< deliver to pipe instead of socket */ gboolean deliver_lmtp; /**< use LMTP instead of SMTP */ - GList *perl_modules; /**< linked list of perl modules to load */ + GList *script_modules; /**< linked list of script modules to load */ GList *filters; /**< linked list of all filters */ GList *workers; /**< linked list of all workers params */ |