[toaster] greylisting

2008-10-15 Thread Shane Chrisp
Just setup greylisting on one of my servers and I noticed that the greylisting-delete-expired.sh file can be simplified from mysql -h $MYSQLHOST -u $MYSQLUSER -p$MYSQLPASS $MYSQLDB -e "delete FROM relaytofrom WHERE origin_type = \"AUTO\" and ( unix_timestamp( )- unix_timestamp( record_expires )

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread Lampa
Hello, about tcprules, read http://cr.yp.to/ucspi-tcp/tcprules.html So for whitelisting recipient, i think that is not possible in current version gl but is not problem modify code in local_scan.c (function checkWhiteListDomain to whitelist whole domain or recipent) or try set variable relayclien

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread John Harmon
If I understand your suggestion below, you are whitelisting a sender. Is that right? If so, I am not trying to whitelist a sender; rather, I am trying to whitelist a local address to receive emails from everywhere without ever being blocked by greylisting. Please let me know. Thanks, John L

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread John Harmon
I found the following: mail:~ # locate tcprules /usr/local/bin/tcprules /usr/local/bin/tcprulescheck /var/src/ucspi-tcp-0.88/tcprules /var/src/ucspi-tcp-0.88/tcprules.c /var/src/ucspi-tcp-0.88/tcprules.o /var/src/ucspi-tcp-0.88/tcprulescheck /var/src/ucspi-tcp-0.88/tcprulescheck.c /var/src/ucspi-

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread Lampa
Hello, depends on installed gl version. In my version is possible to turn off gl for some host: 10.10.10.:allow,RBLSMTP="",MAXCONNIP="7",MAXCONNC="7",QMAILQUEUE="/usr/local/qmailscanner/bin/qmail-scanner-queue.pl" # rest :allow,MAXCONNIP="7",MAXCONNC="7",LOCAL_SCAN_DEBUG="1",GREYLIST="",CHKUSER_

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread John Harmon
Wow you lost me completely. Can you explain a little more? Lampa wrote: Hello, try whitelist sender server (in tcprules - disable gl for host(s), in gl table) 2008/10/9 John Harmon <[EMAIL PROTECTED]>: Is there a way to have greylisting ignore all emails to a particular address on my

Re: [toaster] Greylisting exclusion question

2008-10-09 Thread Lampa
Hello, try whitelist sender server (in tcprules - disable gl for host(s), in gl table) 2008/10/9 John Harmon <[EMAIL PROTECTED]>: > Is there a way to have greylisting ignore all emails to a particular address > on my server? Often, when ordering stuff online I need to receive immediate > informa

[toaster] Greylisting exclusion question

2008-10-09 Thread John Harmon
Is there a way to have greylisting ignore all emails to a particular address on my server? Often, when ordering stuff online I need to receive immediate information from the site. Greylisting prevents that obviously, but I am a big fan of greylisting. It cuts my spam drastically. Is there a

[toaster] greylisting

2008-04-24 Thread Lampa
Hello, which value do you use for minutes/seconds until email is accepted ? I tried many values and found that something between 6 - 13 (15 for some servers) are optimal. I'm using greylisting for incoming emails, clients have own dedicated ip range. Thank you. -- Lampa

[toaster] greylisting

2008-02-29 Thread Lampa
Hello, something is wrong with greylisting (http://shupp.org/patches/greylisting-20060105.patch) ? I got only @400047c888570801fed4 local_scan: protocol = notneeded4qmail [EMAIL PROTECTED] @400047c888570828d054 and i don't have enabled LOCAL_SCAN_DEBUG (default 0) Thank you. --

Re: [toaster] greylisting continues

2007-11-02 Thread Lampa
Hello, from patch file: +# This table is not used yet, possibly never will be +create table mail_log# Stores a record for every mail delivery attempt grep dns_name * dbdef.sql:create table dns_name# Stores the reverse dns name lookup for records grep mail_log * dbdef.sql:create t

[toaster] greylisting continues

2007-11-02 Thread Roman Bělonohý
Hi, thanks to Lampa it seems greylisting patch is doing something now. But after one day of patch being "working" I have about 30 records in db table relaytofrom with for example "blocked_count=28, passed_count=30" I am ok with this. But ... there is NO record in dns_name and NO record in maillo

Re: [toaster] Greylisting howto

2007-10-31 Thread Roman Bělonohý
Well I googled a little bit and found in Bill's toaster: *NOTE:* If you get an error like this: 20656:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:s23_clnt.c:473: your qmail install might need the cipher lists. Debian does this, I don't know why. The following

Re: [toaster] Greylisting howto

2007-10-31 Thread Roman Bělonohý
Ee another problem. I installed it using the rest of Jaroslav's man. Now I tried to send e-mail from my computer to the server with greylisting patch. I am using another server as my smtp outgoing server. I then found a record on that smtp outgoing server. It unfortunately is: @400047

Re: [toaster] Greylisting howto

2007-10-31 Thread Roman Bělonohý
Lampa thanks a lot! It's solved. Going to continue it all. Hope my toaster still works after this "upgrade" lol :D Will let you all know. Btw those lines after change: qmail-envelope-scanner: \ load qmail-envelope-scanner.o local_scan.o /usr/lib/mysql/libmysqlclient.a /usr/lib/libssl.so

Re: [toaster] Greylisting howto

2007-10-31 Thread Lampa
Hello, i tried as you. Same problem, edit Makefile find followed section: qmail-envelope-scanner: \ load qmail-envelope-scanner.o local_scan.o /usr/lib/mysql/libmysqlclient.a ./load qmail-envelope-scanner -lz -lm local_scan.o /usr/mysql/libmysqlclient.a and add after /usr/mysql/libmysqlclient.

Re: [toaster] Greylisting howto

2007-10-31 Thread Lampa
Hello, ok so try another: add libssl when linking qmail-envelope-scanner. See pattern " -L/usr/local/ssl/lib -lssl -lcrypto" below. When linking qmail-smtpd where is not missing " -L/usr/local/ssl/lib -lssl -lcrypto" pattern when linking mail-envelope-scanner.c there is missing. Do you have non

Re: [toaster] Greylisting howto

2007-10-31 Thread Roman Bělonohý
Strange, ./compile qmail-envelope-scanner.c ./compile local_scan.c ./load qmail-envelope-scanner -lz -lm local_scan.o /usr/lib/mysql/libmysqlclient.a /usr/lib/mysql/libmysqlclient.a(client.o): In function `mysql_close_free_options': (.text+0xa08): undefined reference to `SSL_CTX_free' ls -la

Re: [toaster] Greylisting howto

2007-10-30 Thread Lampa
Hello, i think that mysql isn't compiled with ssl support. Try recompile mysql with ssl support. Simply chech libmysqlclient.so with ldd, you should get something similar (specialy check libssl.so line) ldd libmysqlclient_r.so.15.0.0 libpthread.so.0 => /lib/libpthread.so.0 (0x2ac1dc6

Re: [toaster] Greylisting howto

2007-10-30 Thread Roman Bělonohý
Hi Jaroslav, thanks for your howto. I forced myself to give it a try on less important machine. Unfortunately during "make": rm -f tryltai.o tryltai ./compile base64.c ./compile chkuser.c ./load qmail-smtpd chkuser.o qregex.o rcpthosts.o commands.o timeoutread.o \ timeoutwrite.o ip.o ip

Re: [toaster] Greylisting howto

2007-10-22 Thread Jaroslav
Hello, my mini-howTO hope it helps: cd /var/src cp -rp netqmail-1.05 netqmail-1.05_org cd netqmail-1.05/netqmail-1.05 wget http://shupp.org/patches/greylisting-20060105.patch #maybe change BLOCK_EXPIRE ? patch < greylisting-20060105.patch make clean make ### creating Database CREATE DATA

Re: [toaster] Greylisting howto

2007-10-21 Thread Roman Bělonohý
Ok I will patch it, then create database, import sql file (create structure) and add mysql auth info into local_scan.c make clean make make setup check then run that garbage collector through crontab every hour or so. Any chmod required after this "reinstall" of qmail? Toaster force me to do i

Re: [toaster] Greylisting howto

2007-10-21 Thread Rick Macdougall
Roman Bělonohý wrote: Hello, is there any toaster addon how to install greylisting into already installed Bill's toaster? I am really sick of the spam and would like another step to fight with it. But I am affraid of breaking working toaster, lol. Thanks, Roman http://www.shupp.org There

[toaster] Greylisting howto

2007-10-21 Thread Roman Bělonohý
Hello, is there any toaster addon how to install greylisting into already installed Bill's toaster? I am really sick of the spam and would like another step to fight with it. But I am affraid of breaking working toaster, lol. Thanks, Roman

[toaster] GREYLISTING whitelist some rcpt_to

2007-10-12 Thread Jaroslav
Hello all. Is there an option to whitelist for example some relay_ip's or some rcpt_to email addresses? Thanks, Jaroslav

Re: [toaster] Greylisting ....

2007-10-04 Thread Jaroslav
Hello everyone. It is ok now. Thanks Rick. I have some more questions to be get it clearer ... I see, that with greylist more complex filtering can be done, like : mysql -h $MYSQLHOST -u $MYSQLUSER -p$MYSQLPASS $MYSQLDB -e \ "delete FROM relaytofrom WHERE mail_from = '' || rcpt_to = '';" so all

Re: [toaster] Greylisting ....

2007-10-03 Thread Rick Macdougall
Jaroslav wrote: Hello. I did like you said but got the error while doing make: ./compile local_scan.c local_scan.c:15:38: error: /usr/include/mysql/mysql.h: No such file or directory local_scan.c:34: error: expected Б─≤)Б─≥ before Б─≤*Б─≥ token local_scan.c:64: error: expected Б─≤)Б─≥ before Б

Re: [toaster] Greylisting ....

2007-10-03 Thread Jaroslav
Hello. I did like you said but got the error while doing make: ./compile local_scan.c local_scan.c:15:38: error: /usr/include/mysql/mysql.h: No such file or directory local_scan.c:34: error: expected Б─≤)Б─≥ before Б─≤*Б─≥ token local_scan.c:64: error: expected Б─≤)Б─≥ before Б─≤*Б─≥ token local_s

Re: [toaster] Greylisting ....

2007-10-02 Thread Yalcin Cekic
Rick Macdougall wrote: > Yalcin Cekic wrote: >> Hi All, >> >> I have working mail box. I used shupp toaster v.0.9.2. >> I want to install greylisting due to spam. >> Here is what I did: >> --- >> ([EMAIL PROTECTED]:/var/src)# cp -rp netqmail-1.05 netqmail-1.05_org >> ([EMAIL PROTECTED]:/var/s

Re: [toaster] Greylisting ....

2007-10-01 Thread Rick Macdougall
Yalcin Cekic wrote: Hi All, I have working mail box. I used shupp toaster v.0.9.2. I want to install greylisting due to spam. Here is what I did: --- ([EMAIL PROTECTED]:/var/src)# cp -rp netqmail-1.05 netqmail-1.05_org ([EMAIL PROTECTED]:/var/src)# cd netqmail-1.05/netqmail-1.05 ([EMAIL PROT

[toaster] Greylisting ....

2007-10-01 Thread Yalcin Cekic
Hi All, I have working mail box. I used shupp toaster v.0.9.2. I want to install greylisting due to spam. Here is what I did: --- ([EMAIL PROTECTED]:/var/src)# cp -rp netqmail-1.05 netqmail-1.05_org ([EMAIL PROTECTED]:/var/src)# cd netqmail-1.05/netqmail-1.05 ([EMAIL PROTECTED]:/var/src/netqma

Re: [toaster] Greylisting questions

2007-08-01 Thread John Harmon
Rick Macdougall wrote: John Barton wrote: I have a toaster I set up a LONG time ago using shupp.org, and everything has worked very well for some time. I am starting to get hammered by spam pretty bad though, and spamassassin is just not cutting it any longer. I am considering implementing the g

Re: [toaster] Greylisting questions

2007-08-01 Thread John Harmon
Joey Novak wrote: Doesn't greylisting delay mail delivery by a few hours atleast? Joey On 8/1/07, *John Harmon* <[EMAIL PROTECTED] > wrote: John Barton wrote: > I have a toaster I set up a LONG time ago using shupp.org , and > eve

Re: [toaster] Greylisting questions

2007-08-01 Thread Rick Macdougall
John Barton wrote: I have a toaster I set up a LONG time ago using shupp.org, and everything has worked very well for some time. I am starting to get hammered by spam pretty bad though, and spamassassin is just not cutting it any longer. I am considering implementing the greylisting patch that is

Re: [toaster] Greylisting questions

2007-08-01 Thread Joey Novak
My config, or the sending mail servers config? On 8/1/07, Ahmet YAZICI <[EMAIL PROTECTED]> wrote: > > depends on your config > > Joey Novak wrote: > > Doesn't greylisting delay mail delivery by a few hours atleast? > > > > Joey > > > > On 8/1/07, *John Harmon* <[EMAIL PROTECTED] > >

Re: [toaster] Greylisting questions

2007-08-01 Thread Ahmet YAZICI
depends on your config Joey Novak wrote: Doesn't greylisting delay mail delivery by a few hours atleast? Joey On 8/1/07, *John Harmon* <[EMAIL PROTECTED] > wrote: John Barton wrote: > I have a toaster I set up a LONG time ago using shupp.org

Re: [toaster] Greylisting questions

2007-08-01 Thread Joey Novak
Doesn't greylisting delay mail delivery by a few hours atleast? Joey On 8/1/07, John Harmon <[EMAIL PROTECTED]> wrote: > > John Barton wrote: > > I have a toaster I set up a LONG time ago using shupp.org, and > > everything has worked very well for some time. I am starting to get > > hammered b

Re: [toaster] Greylisting questions

2007-07-31 Thread John Harmon
John Barton wrote: I have a toaster I set up a LONG time ago using shupp.org, and everything has worked very well for some time. I am starting to get hammered by spam pretty bad though, and spamassassin is just not cutting it any longer. I am considering implementing the greylisting patch that is

[toaster] Greylisting questions

2007-07-31 Thread John Barton
I have a toaster I set up a LONG time ago using shupp.org, and everything has worked very well for some time. I am starting to get hammered by spam pretty bad though, and spamassassin is just not cutting it any longer. I am considering implementing the greylisting patch that is available from shup

[toaster] Greylisting

2007-01-18 Thread Bill Shupp
Speaking of greylisting, yesterday I finished testing integration of the greylisting patch I maintain with qmailtoater's qmail-toaster src rpm. If anyone is interested, you can download it here: http://shupp.org/grey-rpm/ To build it, you'll need to use: --define 'srs 1' --define 'greylisting 1

Re: [toaster] Greylisting

2007-01-18 Thread Bill Shupp
Rick Macdougall wrote: > Nitchi DaMon wrote: >> Ok, I got it all installed. >> >> How can you tell its working ? I keep checking the >> MySQL tables and they stay empty. >> >> I don't see anyhting in the logs. >> >> i tried to telnet to port 25 and run a test there, it >> accepted it all. >> > >

Re: [toaster] Greylisting

2007-01-18 Thread Rick Macdougall
Nitchi DaMon wrote: Ok, I got it all installed. How can you tell its working ? I keep checking the MySQL tables and they stay empty. I don't see anyhting in the logs. i tried to telnet to port 25 and run a test there, it accepted it all. Hi, If you did the make setup check in the netqmail

Re: [toaster] Greylisting

2007-01-18 Thread Nitchi DaMon
Ok, I got it all installed. How can you tell its working ? I keep checking the MySQL tables and they stay empty. I don't see anyhting in the logs. i tried to telnet to port 25 and run a test there, it accepted it all. H Nitch. --- Nitchi DaMon <[EMAIL PROTECTED]> wrote: > > > N

Re: [toaster] Greylisting

2007-01-17 Thread Nitchi DaMon
> Nitchi DaMon wrote: > > > I can download and recompile MySQL and that is > where I > > am leaning at the moment, but I'm still holding > out > > hope that there is a solution out there. > > That may very well be the best. > > You have installed the server, client AND > development RPMs for My

Re: [toaster] Greylisting

2007-01-17 Thread Rick Widmer
Nitchi DaMon wrote: I can download and recompile MySQL and that is where I am leaning at the moment, but I'm still holding out hope that there is a solution out there. That may very well be the best. You have installed the server, client AND development RPMs for MySQL, right? Server _may_

Re: [toaster] Greylisting

2007-01-17 Thread Nitchi DaMon
MySQL 5.0 oh yeah. I see that 4.x does not have the problem I defined in an earlier message, but 5.0 does. I'd like to stay with 5.0 but. thanks nitch. --- Rick Macdougall <[EMAIL PROTECTED]> wrote: > Nitchi DaMon wrote: > > So ? just for grins and giggles... > > > > is there anyone

Re: [toaster] Greylisting

2007-01-17 Thread Rick Macdougall
Nitchi DaMon wrote: So ? just for grins and giggles... is there anyone using the toaster software on Redhat and/or a fedra core that has runinto the same problem that I have? I can download and recompile MySQL and that is where I am leaning at the moment, but I'm still holding out hope that th

Re: [toaster] Greylisting

2007-01-17 Thread Nitchi DaMon
So ? just for grins and giggles... is there anyone using the toaster software on Redhat and/or a fedra core that has runinto the same problem that I have? I can download and recompile MySQL and that is where I am leaning at the moment, but I'm still holding out hope that there is a solution out

RE: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
ROTECTED] > Sent: Tuesday, January 16, 2007 3:03 PM > To: toaster@shupp.org > Subject: Re: [toaster] Greylisting > > > Nitchi DaMon wrote: > > dumb question... > > > > what are most everyone here running for the OS? > > > > I've been using

Re: [toaster] Greylisting

2007-01-16 Thread Rick Widmer
Nitchi DaMon wrote: dumb question... what are most everyone here running for the OS? I've been using redhat for years now and migrated into the Fedora Core. But I'm open to suggestions. SuSE Rick

Re: [toaster] Greylisting

2007-01-16 Thread Rick Macdougall
Bill D'Anjou wrote: Just curious why Debian isn't one of your preferred distro's Bill I prefer Slackware, but I also look after CentOS and FreeBSD machines. Probably about 50 or 60 in all. Regards, Rick Well I do run Ubuntu on the laptop, does that count ? I was never a fan of rpm or a

RE: [toaster] Greylisting

2007-01-16 Thread Bill D'Anjou
Just curious why Debian isn't one of your preferred distro's Bill -Original Message- From: Rick Macdougall [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 16, 2007 3:03 PM To: toaster@shupp.org Subject: Re: [toaster] Greylisting Nitchi DaMon wrote: > dumb question...

Re: [toaster] Greylisting

2007-01-16 Thread David Earp
Nitchi DaMon <[EMAIL PROTECTED]> wrote: > > dumb question... > > what are most everyone here running for the OS? > > I've been using redhat for years now and migrated into > the Fedora Core. But I'm open to suggestions. > > tia. > > nitch.I manage a few servers.  My heart will always be with

Re: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
Same here.. in numbers.. but various flavors of OS's. Started years back on Slackware but needed something a little more... whats the word... secure? Last I touched was like slackware 2 or somewhere around that. I'll bet its different today! tia. nitch --- Rick Macdougall <[EMAIL PROTECTED]> wr

Re: [toaster] Greylisting

2007-01-16 Thread Rick Macdougall
Nitchi DaMon wrote: dumb question... what are most everyone here running for the OS? I've been using redhat for years now and migrated into the Fedora Core. But I'm open to suggestions. I prefer Slackware, but I also look after CentOS and FreeBSD machines. Probably about 50 or 60 in all.

Re: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
dumb question... what are most everyone here running for the OS? I've been using redhat for years now and migrated into the Fedora Core. But I'm open to suggestions. tia. nitch. --- Rick Macdougall <[EMAIL PROTECTED]> wrote: > Nitchi DaMon wrote: > > > > OK kewl, thanks... One problem. >

Re: [toaster] Greylisting

2007-01-16 Thread Bill Shupp
Rick Macdougall wrote: > Nitchi DaMon wrote: >> >> Ok, back at it again >> >> I did a fresh install from the website of everything. >> I made sure that the patch was installed AFTER the >> major patch (qmail-toaster-0.8.3 etc). >> Ok the patch installed fine. >> >> did a make clean >> then make

Re: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
--- Rick Macdougall <[EMAIL PROTECTED]> wrote: > I can't say as I don't run Redhat. I do know that > libmygcc.a is part of > the binary build from dev.mysql.com for linux. > > Regards, > > Rick > > thanks for the information... anyone else have a suggestion BESIDES not using Redhat Fedora

Re: [toaster] Greylisting

2007-01-16 Thread Rick Macdougall
Nitchi DaMon wrote: OK kewl, thanks... One problem. I would assume that the libmygcc.a is created IF you recompile from source MySQL ? Every reference I see towards it say "recompile". It just does not come in an RPM ready to install eh ? I can't say as I don't run Redhat. I do know th

Re: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
OK kewl, thanks... One problem. I would assume that the libmygcc.a is created IF you recompile from source MySQL ? Every reference I see towards it say "recompile". It just does not come in an RPM ready to install eh ? thanks... I hope that this is going to be worth the trouble. Nitch.

Re: [toaster] Greylisting

2007-01-16 Thread Rick Macdougall
Nitchi DaMon wrote: Ok, back at it again I did a fresh install from the website of everything. I made sure that the patch was installed AFTER the major patch (qmail-toaster-0.8.3 etc). Ok the patch installed fine. did a make clean then make and WHAM! I get the following errors: ./load qm

Re: [toaster] Greylisting

2007-01-16 Thread Nitchi DaMon
-scanner] Error 1 I made sure that the path to the libmysqlclient.a was set correctly in the make file. I reinstalled the mysqlclient.. just in case.. and redid this... nope still fails on this any ideas? thanks everyone. nitch --- Rick Macdougall <[EMAIL PROTECTED]> wrote:

Re: [toaster] Greylisting

2007-01-15 Thread Rick Macdougall
(on fedora core 6) just up arrowed until I came to my previous typing of cd /toaster/netqmail-1.05/netqmail-1.05 patch < /toaster/greylisting-20060105.patch and ran it... i swear.. i did nothign else. and it ran cleanly. OK.. So I go and make clean make failed. make: *** No rule to m

RE: [toaster] Greylisting

2007-01-15 Thread Edvin Seferovic
Yup. Just install the mysql client libraries ;) Good night. E:S -Original Message- From: Nitchi DaMon [mailto:[EMAIL PROTECTED] Sent: Montag, 15. Jänner 2007 23:20 To: toaster@shupp.org Subject: RE: [toaster] Greylisting Thanks for the replay. I think I need to go home and get some

Re: [toaster] Greylisting

2007-01-15 Thread Bill Shupp
time!! > Nothing changed... I actually (on fedora core 6) just > up arrowed until I came to my previous typing of > cd /toaster/netqmail-1.05/netqmail-1.05 > patch < /toaster/greylisting-20060105.patch > > and ran it... i swear.. i did nothign else. and it > ran cleanly.

RE: [toaster] Greylisting

2007-01-15 Thread Nitchi DaMon
) just up arrowed until I came to my previous typing of cd /toaster/netqmail-1.05/netqmail-1.05 patch < /toaster/greylisting-20060105.patch and ran it... i swear.. i did nothign else. and it ran cleanly. OK.. So I go and make clean make failed. make: *** No rule to make target `/usr/

RE: [toaster] Greylisting

2007-01-15 Thread Edvin Seferovic
RE: [toaster] Greylisting thats the one I am hitting the wall with. I downloaded greylisting-20060105.patch for the 08 installation that I have. No go. I tried it on another box... still no go. same error/response. thanks for the info though! nitch --- Edvin Seferovic <[EMAIL PRO

RE: [toaster] Greylisting

2007-01-15 Thread Nitchi DaMon
> /usr/local/src/tar/greylisting-20060105.patch ! > > Have fun with greylisting ;) > > Regards, > > E:S > > > -Original Message- > From: Nitchi DaMon [mailto:[EMAIL PROTECTED] > Sent: Montag, 15. Jänner 2007 22:50 > To: toaster@shupp.org > Subject:

RE: [toaster] Greylisting

2007-01-15 Thread Edvin Seferovic
ith greylisting ;) Regards, E:S -Original Message- From: Nitchi DaMon [mailto:[EMAIL PROTECTED] Sent: Montag, 15. Jänner 2007 22:50 To: toaster@shupp.org Subject: [toaster] Greylisting Geetings all, Greylisting sounds good especially if it can help LOWER the amount of traffic and

[toaster] Greylisting

2007-01-15 Thread Nitchi DaMon
Geetings all, Greylisting sounds good especially if it can help LOWER the amount of traffic and/or connections. I grabbed the greylist patch from shupp.org and went to apply it. It keeps coming back "file to patch" and goes no further. I followed the instructions found at: http://www.mail-archi

Re: [toaster] Greylisting - again :(

2007-01-14 Thread Rick Macdougall
Edvin Seferovic wrote: No, all it does is look in the existing relay-delay table and if the domain is in there, it doesn't do any grey listing at all. Hello list members, ( me again ;) ) - could someone give me a hint how to change the greylisting patch so I can "turn off" greylisting for some

RE: [toaster] Greylisting - again :(

2007-01-14 Thread Edvin Seferovic
>No, all it does is look in the existing relay-delay table and if the >domain is in there, it doesn't do any grey listing at all. Hello list members, ( me again ;) ) - could someone give me a hint how to change the greylisting patch so I can "turn off" greylisting for some of my domains ? I have

Re: Re: Re: [toaster] Greylisting

2006-02-26 Thread Anton Lundin
As usal, i forget something, the link to the code... http://www.acc.umu.se/~glance/greylisting-20060112.patch http://www.acc.umu.se/~glance/qmail-envelope-scanner-postgrey-20060112.tar.gz On 26 February, 2006 - Anton Lundin wrote: > Fromn my point of view its crasy to implement greylisting in

Re: Re: [toaster] Greylisting

2006-02-26 Thread Anton Lundin
Fromn my point of view its crasy to implement greylisting in qmail whith mysql. it just takes to mutch time to create and tear down the connection to the database, and it aint any complex querys to the database. So, i made a lite C-hack who uses postgrey for greylisting. I have bin running it on de

Re: [toaster] Greylisting and Gmail

2006-02-25 Thread Rick Macdougall
ElusiveMind wrote: Well, there isn't a tutorial anywhere that I found, I basically interpreted where to patch based on the install. I can share with you what I did. I placed the greylisting-20060105.patch file in my /usr/local/src/tar folder (I put everything in /usr/local/src) I followed t

Re: [toaster] Greylisting and Gmail

2006-02-25 Thread GoodnGo.de \(R\) Zentrale
Hell Michael, Cool, I have a similar installation and I will test it. The results I ´ll make public here. Thank you Michael. Regards, ... from merry ol´ germany Oliver Etzel > Well, there isn't a tutorial anywhere that I found, I basically > interpreted where to patch based on the install

Re: [toaster] Greylisting and Gmail

2006-02-25 Thread ElusiveMind
Well, there isn't a tutorial anywhere that I found, I basically interpreted where to patch based on the install. I can share with you what I did.I placed the greylisting-20060105.patch file in my /usr/local/src/tar folder (I put everything in /usr/local/src)I followed to the toaster instructions (w

RE: [toaster] Greylisting and Gmail

2006-02-25 Thread Seferovic Edvin
Message- From: GoodnGo.de (R) Zentrale [mailto:[EMAIL PROTECTED] Sent: Samstag, 25. Februar 2006 15:57 To: toaster@shupp.org Subject: Re: [toaster] Greylisting and Gmail Hello Michael, hello all, where can I find a HowTo for a toaster installing with greylisting feature?? > Brilliant - I have Gr

Re: [toaster] Greylisting and Gmail

2006-02-25 Thread GoodnGo.de \(R\) Zentrale
Hello Michael, hello all, where can I find a HowTo for a toaster installing with greylisting feature?? > Brilliant - I have Greylisting working and I've shortened the timeout > and things seem to be working swimingly. Regards, Oliver Etzel www.domainfex.de

[toaster] Greylisting and Gmail

2006-02-25 Thread ElusiveMind
Brilliant - I have Greylisting working and I've shortened the timeout and things seem to be working swimingly. The issue I find myself facing now is that no email from Gmail is getting through - because subsequent re-sends are coming from a different IP than the original. Is there a work ar

Re: [toaster] Greylisting

2006-02-25 Thread ElusiveMind
Okay! I was about to ask about that. I just found this however: #define DEFAULT_BLOCK_EXPIRE 55 /* minutes until email is accepted */ I assume by setting this to 1 or 5 I can reduce the time my email sits waiting to be accepted. Thanks; Michael Bagnall ElusiveMind [EMAIL PROTECTED] http:

Re: [toaster] Greylisting

2006-02-25 Thread Rick Macdougall
ElusiveMind wrote: Has anyone had luck in implementing the graylisting patch into the toaster? I've patched it, and compiled it in (along with the qmailtap patch) and mail seems to not be getting through. This is a development system so I'm going to let it sit a while and see if it just takes

[toaster] Greylisting

2006-02-24 Thread ElusiveMind
Has anyone had luck in implementing the graylisting patch into the toaster? I've patched it, and compiled it in (along with the qmailtap patch) and mail seems to not be getting through. This is a development system so I'm going to let it sit a while and see if it just takes longer than th

Re: [toaster] Greylisting patch and local domains

2005-12-16 Thread Bill Shupp
Th. Salditt wrote: Hi Bill, the problem is that the email isn't yet delivert to the postbox. Only the entry in the db appears. I think a whitelist entry for the local server is the solution. regards Thomas What's in the log, as I asked before? Does the mail make it into the queue? If not

Re: [toaster] Greylisting patch and local domains

2005-12-16 Thread Th. Salditt
Hi Bill, the problem is that the email isn't yet delivert to the postbox. Only the entry in the db appears. I think a whitelist entry for the local server is the solution. regards Thomas > Th. Salditt wrote: >> Hi everybody, >> >> I have install shupps toaster and additional the greylisting p

Re: [toaster] greylisting update 20051215

2005-12-15 Thread Rick Macdougall
Bill Shupp wrote: I have updated the greylisting patch to apply over the 0.8 patch cleanly. It also supports configuration via environment variables, rather than compiled in values, as well as logging to standard error. Please see the top of the patch for details: http://shupp.org/patches/gr

[toaster] greylisting update 20051215

2005-12-15 Thread Bill Shupp
I have updated the greylisting patch to apply over the 0.8 patch cleanly. It also supports configuration via environment variables, rather than compiled in values, as well as logging to standard error. Please see the top of the patch for details: http://shupp.org/patches/greylisting-20051215.

Re: [toaster] Greylisting patch and local domains

2005-12-15 Thread Bill Shupp
Th. Salditt wrote: Hi everybody, I have install shupps toaster and additional the greylisting patch. All is working fine but if I want to send an email from domain1 to domain2 on the same server these will only delivery once. No try more. I have waited three hours but no new try. This doesn't

[toaster] Greylisting patch and local domains

2005-12-15 Thread Th. Salditt
Hi everybody, I have install shupps toaster and additional the greylisting patch. All is working fine but if I want to send an email from domain1 to domain2 on the same server these will only delivery once. No try more. I have waited three hours but no new try. Can someone help me ? Best regards

Re: [toaster] Greylisting for toaster-0.8.2

2005-12-02 Thread Bill Shupp
Th. Salditt wrote: Hi Bill, can you give me a small installation paper for the greylisting patch ? Is there something to change in the patch something like FILE? Read http://shupp.org for info on the patch. It covers which patches are available, and how to setup the mysql schema. If you ne

Re: [toaster] Greylisting for toaster-0.8.2

2005-12-02 Thread Mick
> The current greylisting patch applies successfully over the 0.8 toaster > patch. > > Regards, > > Bill > Thanks a lot. I will try it. Regards, Mick

Re: [toaster] Greylisting for toaster-0.8.2

2005-12-02 Thread Th. Salditt
Hi Bill, can you give me a small installation paper for the greylisting patch ? Is there something to change in the patch something like FILE? Thanks a lot. Thomas

Re: [toaster] Greylisting for toaster-0.8.2

2005-12-01 Thread Bill Shupp
Mick wrote: Hi Bill, Will you update greylisting for toaster 0.8.2? Thanks a lot. The current greylisting patch applies successfully over the 0.8 toaster patch. Regards, Bill

[toaster] Greylisting for toaster-0.8.2

2005-11-29 Thread Mick
Hi Bill, Will you update greylisting for toaster 0.8.2? Thanks a lot. Regards, Mick

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread Rick Macdougall
[EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Stephen Harmon wrote: Hi Jason. Thanks for responding. I compiled Mysql from source using the following configure options: |/./configure --with-openssl --with-isam --prefix=/usr/local/mysql/ I did a "locate mysql.h" on my server and f

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread stephen
> > > [EMAIL PROTECTED] wrote: >>>Stephen Harmon wrote: >>> >>> Hi Jason. Thanks for responding. I compiled Mysql from source using the following configure options: |/./configure --with-openssl --with-isam --prefix=/usr/local/mysql/ I did a "locate mysql.h" on my server

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread Rick Macdougall
[EMAIL PROTECTED] wrote: Stephen Harmon wrote: Hi Jason. Thanks for responding. I compiled Mysql from source using the following configure options: |/./configure --with-openssl --with-isam --prefix=/usr/local/mysql/ I did a "locate mysql.h" on my server and found it in the following loca

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread Jason 'XenoPhage' Frisvold
[EMAIL PROTECTED] wrote: >OK, I added "-I/usr/local/mysql/include/mysql" to the conf-cc file. It >currently looks like this: > >cc -O2 -DTLS=20040120 -I/usr/local/ssl/include >-I/usr/local/mysql/include/mysql > >However, I still get the error during make. I also tried going in the >same director

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread stephen
> Stephen Harmon wrote: > >> Hi Jason. Thanks for responding. I compiled Mysql from source using >> the following configure options: >> >> |/./configure --with-openssl --with-isam --prefix=/usr/local/mysql/ >> >> I did a "locate mysql.h" on my server and found it in the following >> location: >>

Re: [toaster] Greylisting Install Problems

2005-05-31 Thread Jason 'XenoPhage' Frisvold
Stephen Harmon wrote: > Hi Jason. Thanks for responding. I compiled Mysql from source using > the following configure options: > > |/./configure --with-openssl --with-isam --prefix=/usr/local/mysql/ > > I did a "locate mysql.h" on my server and found it in the following > location: > | > //usr/l

  1   2   >