From: Vsevolod Stakhov Date: Sat, 27 Feb 2016 13:43:41 +0000 (+0000) Subject: [Fix] Don't set default values for hostname and helo X-Git-Tag: 1.2.0~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53402f91c612eae647ca0f51348c63bed7877bfa;p=thirdparty%2Frspamd.git [Fix] Don't set default values for hostname and helo --- diff --git a/src/client/rspamc.c b/src/client/rspamc.c index 7240d53676..30d1b57cc8 100644 --- a/src/client/rspamc.c +++ b/src/client/rspamc.c @@ -34,8 +34,8 @@ static gchar *from = NULL; static gchar *deliver_to = NULL; static gchar **rcpts = NULL; static gchar *user = NULL; -static gchar *helo = "rspamc.local"; -static gchar *hostname = "localhost"; +static gchar *helo = NULL; +static gchar *hostname = NULL; static gchar *classifier = NULL; static gchar *local_addr = NULL; static gchar *execute = NULL;