diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-09-04 17:44:11 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-09-04 17:44:11 +0000 |
commit | 1516a83452be483c67cd0a7f319cf8a1d6ff3371 (patch) | |
tree | abc7716cdb1ef89b1b9c303bc7da5415e294c64a /fetchmail.c | |
parent | 1a2f7c37e7e368e749caafbb950c605cbd6dc822 (diff) | |
download | fetchmail-1516a83452be483c67cd0a7f319cf8a1d6ff3371.tar.gz fetchmail-1516a83452be483c67cd0a7f319cf8a1d6ff3371.tar.bz2 fetchmail-1516a83452be483c67cd0a7f319cf8a1d6ff3371.zip |
Describe 550 better.
svn path=/trunk/; revision=3697
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index aa078140..b01787db 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -896,8 +896,8 @@ static int load_params(int argc, char **argv, int optind) 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); /* old exim */ - ANTISPAM(501); /* new exim */ + ANTISPAM(550); /* RFC2821 */ + ANTISPAM(501); /* old exim */ ANTISPAM(554); /* Postfix */ #undef ANTISPAM |