diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-09-09 13:58:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-09-09 13:58:49 +0000 |
commit | 513d197596afc978ad1e068f03efa3ff7fa31139 (patch) | |
tree | 9caff4d247bc366c304c62bc1a561d1df36cb7ca /fetchmail.c | |
parent | 91341f7be66f2865fe4000dae05dd78f448b3ca6 (diff) | |
download | fetchmail-513d197596afc978ad1e068f03efa3ff7fa31139.tar.gz fetchmail-513d197596afc978ad1e068f03efa3ff7fa31139.tar.bz2 fetchmail-513d197596afc978ad1e068f03efa3ff7fa31139.zip |
Default antispam code list to empy.
svn path=/trunk/; revision=3708
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fetchmail.c b/fetchmail.c index b01787db..74ccc4f4 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -894,13 +894,6 @@ static int load_params(int argc, char **argv, int optind) def_opts.smtp_socket = -1; def_opts.smtpaddress = (char *)0; def_opts.smtpname = (char *)0; -#define ANTISPAM(n) save_str(&def_opts.antispam, STRING_DUMMY, 0)->val.status.num = (n) - ANTISPAM(571); /* sendmail */ - ANTISPAM(550); /* RFC2821 */ - ANTISPAM(501); /* old exim */ - ANTISPAM(554); /* Postfix */ -#undef ANTISPAM - def_opts.server.protocol = P_AUTO; def_opts.server.timeout = CLIENT_TIMEOUT; def_opts.server.esmtp_name = user; |