I recently installed milter-greylist on two machines and it works well on both, except that on one machine the database dumpfile is being touched every ten...
433
manu@...
Sep 4, 2004 6:57 pm
... Does milter-greylist has the write permission on the file? What version is it (run milter-greylist -r) -- Emmanuel Dreyfus Il y a 10 sortes de personnes...
Hi, New to the list. Not having used a milter before, I could only get it to work with sendmail.cf, except the greylist part got trashed any time I updated ...
Hi, ... antispamz> For those of you who build your .cf from a .mc file with m4, you must antispamz> define: antispamz> define(`_FFR_MILTER', `1')dnl. Then,...
438
manu@...
Sep 5, 2004 7:42 pm
... The other lines specify which sendmail macro should be made visible to milter-greylist. If you remove them, you loose the queue id display in the logs, the...
439
Hajimu UMEMOTO
ume@...
Sep 6, 2004 4:28 am
Hi, ... manu> The other lines specify which sendmail macro should be made visible to manu> milter-greylist. If you remove them, you loose the queue id display...
440
manu@...
Sep 6, 2004 5:05 am
... I think you're right. Note that you don't need verify if you don't use SMTP authentication to whitelist the sender. -- Emmanuel Dreyfus Il y a 10 sortes de...
441
Jack L. Stone
jacks@...
Sep 6, 2004 1:15 pm
... I found I had to comment out the use of milter-greylist macros because I had errors with them. The Sendmail-8.12.11 seemed to have everything needed for...
442
manu@...
Sep 6, 2004 10:42 pm
... No idea, I don't use macros, I use the kit Jussieu (excellent sendmail.cf preprocessor, but the documentation is only in french) ... I won't add it to...
443
hans hm04
hm04.yer@...
Sep 7, 2004 12:19 pm
hi all i am using milter-greylist ver 1.5.6 it seems that the senders address is cutting off after 30 characters. so some rules defined in...
444
Matthias Scheler
tron@...
Sep 7, 2004 1:36 pm
... That's a known "feature". ... Change "ADDRLEN" in "dump.h" to 65 and rebuild. Kind regards -- Matthias Scheler...
445
Emmanuel Dreyfus
manu@...
Sep 7, 2004 2:40 pm
... You can use a regex. ... Sure: bump ADDRLEN in dump.h and rebuild. -- Emmanuel Dreyfus manu@......
446
jothev
Sep 7, 2004 10:20 pm
... I'm a newbie here, but looking at the code it appears that the printf statements (when dumping to greylist.db) use a hardcoded "%32s", so you probably ...
447
manu@...
Sep 7, 2004 10:27 pm
... True, you need to bump this as well, else the dump reload won't work as expected. -- Emmanuel Dreyfus Il y a 10 sortes de personnes dans le monde: ceux qui...
448
attila.bruncsak@...
Sep 8, 2004 3:12 am
Hello, Dynamic memory allocation would be cleaner. No need to have 'magic numbers' hardcoded. In my greylist.conf there are 5477 subscriber at this moment,...
449
manu@...
Sep 8, 2004 4:55 am
... Yes, it's planned for some day. Feel free to submit a patch for it. ... Not yet. Any suggestion? -- Emmanuel Dreyfus Il y a 10 sortes de personnes dans le...
450
hans hm04
hm04.yer@...
Sep 8, 2004 6:34 pm
hi thanks to all, who did response to my posting, especially to you emmanuel for milter-greylist. it's really a great tool for preventing spam. i did made the...
451
hans hm04
hm04.yer@...
Sep 8, 2004 6:41 pm
hi emmanuel ... yes, i am using regex. but cutting off is on the right site of the address, not on the left. so my regex for example for /.*\.at/ didn't work,...
452
hans hm04
hm04.yer@...
Sep 8, 2004 7:00 pm
... i don't wont to break down a discussion about memory allocation here. my opinion is, that 32 characters is a little bit less. names ( first + family ) in...
453
manu@...
Sep 8, 2004 7:04 pm
... The right way is to malloc the string, we should move forward to this solution. -- Emmanuel Dreyfus Il y a 10 sortes de personnes dans le monde: ceux qui...
454
Matthias Scheler
tron@...
Sep 9, 2004 6:42 am
... Either that should read 65 ... ... [...] ... [...] ... ... or these should read "%62s". Kind regards -- Matthias Scheler...
455
hans hm04
hm04.yer@...
Sep 9, 2004 10:20 pm
hi matthias i agree, if the string has 64 char, then the buffer should have + 1 for the (char)0 but then the original source would be wrong too. ADDRLEN was 31...
456
hans hm04
hm04.yer@...
Sep 9, 2004 10:36 pm
hi i did say, i will give an answer about the result. i can say, it's great. there are several email-addresses between 35 and 40 chars long. all those...
457
l_facq
Sep 10, 2004 10:03 am
i have think to this : using a hash function like md5 on ip/from/to info could be a good mean to - speed up (to check) the matching process - limit memory...
458
manu@...
Sep 10, 2004 7:47 pm
... milter-greylist supports regexs matching, you can't do that if you store hashes. If the performance was a real problem, we could store both the strings, ...
459
l_facq
Sep 10, 2004 9:06 pm
... as far as i undestrand/imagine the process, i think that this regex matching could be done *before* hashing 1 regex match on from/to => exit if ok 2 hash 3...
460
l_facq
Sep 11, 2004 4:56 am
... allocation in ... store ... well, all regex functions call are in except_ fuctions and except functions are only call from milter-greylist.c : ...
461
l_facq
Sep 11, 2004 5:11 am
... an other solution for the next minor release, is to keep long strings for from/to field before regex matching (mlfi_envfrom, mlfi_envrcpt, strip blanks) in...