Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

* Bumped version #6

Merged
merged 1 commit into from Mar 15, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion smf-spf.c
Expand Up @@ -55,6 +55,7 @@
#define ADD_HEADER 1
#define QUARANTINE 0
#define DAEMONIZE 1
#define VERSION "2.0.2b"

#define MAXLINE 258
#define HASH_POWER 16
Expand Down Expand Up @@ -972,7 +973,7 @@ int main(int argc, char **argv) {
if (conf.spf_ttl && !cache_init()) syslog(LOG_ERR, "[ERROR] cache engine init failed");
ret = smfi_main();
if (ret != MI_SUCCESS) syslog(LOG_ERR, "[ERROR] terminated due to a fatal error");
else syslog(LOG_NOTICE, "stopping smf-spf 2.0.2 listening on %s", conf.sendmail_socket);
else syslog(LOG_NOTICE, "stopping smf-spf %s listening on %s", VERSION, conf.sendmail_socket);
if (cache) cache_destroy();
pthread_mutex_destroy(&cache_mutex);
done:
Expand Down