Re: greylist patch

2007-01-26 Thread Nuno Pais Fernandes
On Tuesday 23 January 2007 13:37, Hugo Monteiro wrote: > Nuno Pais Fernandes wrote: > > Hi, > > > > I'm in the process of testing :) > > > > Two remarks > > > > 1 - If user is authenticated via SMTP, GREYLIST should be disabled. > > Check qmail-smtp.c > > > > if (flagauthok==1) env_unset("

Re: greylist patch

2007-01-23 Thread Hugo Monteiro
Nuno Pais Fernandes wrote: Hi, I'm in the process of testing :) Two remarks 1 - If user is authenticated via SMTP, GREYLIST should be disabled. Check qmail-smtp.c if (flagauthok==1) env_unset("GREYLIST"); Hello Nuno, Thanks for the input and i hope that all the testing goe

Re: greylist patch

2007-01-22 Thread Nuno Pais Fernandes
Hi, I'm in the process of testing :) Two remarks 1 - If user is authenticated via SMTP, GREYLIST should be disabled. Check qmail-smtp.c if (flagauthok==1) env_unset("GREYLIST"); 2 - Mysql host, user and password should come from Makefile and not hardcoded in dbdef.sql greylist-c

greylist patch

2007-01-22 Thread Hugo Monteiro
REYLIST +void err_tempfail() { out("421 temporary envelope failure (#4.3.0)\r\n"); } +void err_permfail() { out("553 sorry, permanent envelope failure (#5.7.1)\r\n"); } +#endif void err_bmf(void) { out("553 sorry, your mail was administratively denied. (#5.7.1)\r\n"); } vo