Browse Source

Add default host and helo for a client.

tags/0.8.3
Vsevolod Stakhov 9 years ago
parent
commit
da47ee6006
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/client/rspamc.c

+ 3
- 3
src/client/rspamc.c View File

@@ -36,13 +36,13 @@

static gchar *connect_str = "localhost";
static gchar *password = NULL;
static gchar *ip = NULL;
static gchar *ip = "127.0.0.1";
static gchar *from = NULL;
static gchar *deliver_to = NULL;
static gchar *rcpt = NULL;
static gchar *user = NULL;
static gchar *helo = NULL;
static gchar *hostname = NULL;
static gchar *helo = "localhost.localdomain";
static gchar *hostname = "localhost";
static gchar *classifier = "bayes";
static gchar *local_addr = NULL;
static gint weight = 0;

Loading…
Cancel
Save