diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 15:22:08 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 15:22:08 +0200 |
commit | 578203db95c876f4fe6ec5d096525411dcbd8b42 (patch) | |
tree | b7fde86a7eeebd18e5d07a4ea6fffc588b06ea40 /antispam-plugin.c | |
parent | 1e0e6cb3faa75a80e63df5ef0d4b7274345d2391 (diff) | |
download | dovecot-antispam-578203db95c876f4fe6ec5d096525411dcbd8b42.tar.gz dovecot-antispam-578203db95c876f4fe6ec5d096525411dcbd8b42.tar.xz dovecot-antispam-578203db95c876f4fe6ec5d096525411dcbd8b42.zip |
rename, add install target
Diffstat (limited to '')
-rw-r--r-- | antispam-plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/antispam-plugin.c b/antispam-plugin.c index 993c8c1..9a84c07 100644 --- a/antispam-plugin.c +++ b/antispam-plugin.c @@ -72,7 +72,7 @@ bool mailbox_is_trash(struct mailbox *box) return mailbox_in_list(box, trash_folders); } -void antispam_init(void) +void antispam_plugin_init(void) { char *tmp, **iter; @@ -112,7 +112,7 @@ void antispam_init(void) hook_mail_storage_created = antispam_mail_storage_created; } -void antispam_deinit(void) +void antispam_plugin_deinit(void) { hook_mail_storage_created = antispam_next_hook_mail_storage_created; backend_exit(); @@ -120,4 +120,4 @@ void antispam_deinit(void) } /* put dovecot version we built against into plugin for checking */ -const char *antispam_version = PACKAGE_VERSION; +const char *antispam_plugin_version = PACKAGE_VERSION; |