Hi, I've been using milter-greylist for a while and I must say it works great. Recently, I have been trying to install milter-sender (besides milter-greylist,...
2088
Emmanuel Dreyfus
manu@...
Jun 6, 2006 3:11 pm
... The m4 file was contributed by Ivan F. Martinez. I must confess I never used it, so I cannot judge if it is harmful or not. The README file clearly...
2089
Ugo Bellavance
iolubik
Jun 6, 2006 3:38 pm
... http://www.snert.com/Software/ecartis/index.php?go=/milters/2006-06/959 ... never used ... Understood. ... why. ... require ... can ... I didn't see it...
2090
attila.bruncsak@...
Jun 6, 2006 3:43 pm
... I am not an m4 expert at all, but the following simply does the job in my .mc file: INPUT_MAIL_FILTER(`milter-greylist',...
2091
manu@...
Jun 6, 2006 6:13 pm
... Good heavens! A drop of market share! The share holders would surely fire me :-) ... So the question is what should we use instead of define so that the ...
2092
Ugo Bellavance
iolubik
Jun 7, 2006 3:02 pm
... I'd be eager to help, but I don't understand exactly what you need to do. JUst put define(`confMILTER_MACROS_CONNECT39;, confMILTER_MACROS_CONNECT`j, ...
2093
Emmanuel Dreyfus
manu@...
Jun 7, 2006 3:14 pm
... Yes, you'll probably get j and if_addr defined twice. The next step is to run sendmail so see if it hurts or not. -- Emmanuel Dreyfus manu@......
2094
Ugo Bellavance
iolubik
Jun 7, 2006 5:17 pm
... It doesn't seem to be defined twice. [root@server mail]# diff sendmail_in.cf_before sendmail_in.cf_after < O Milter.macros.connect=j, {if_addr} ... This is...
2095
manu@...
Jun 7, 2006 9:05 pm
... That's bad, it removed the macros. Try this (double quotes) define(`confMILTER_MACROS_CONNECT39;, confMILTER_MACROS_CONNECT```, {if_addr}, j'') But there is...
... But isn't this stuff already defined? From what I grasp from that blog page most of these macros, e.g. {if_addr}, are already defined and you would just...
2098
Ugo Bellavance
iolubik
Jun 15, 2006 3:00 pm
... co-exist. ... Howe told me to express his apologies to you, he read your comments and just kept forgetting about telling you... He's not surprised that an...
2099
pinkworld4me
Jun 15, 2006 3:04 pm
Is it the intended behavior for domaincmp() to only match the end of a domain? For example, we had to whitelist ey.com for Ernst & Young, and domains like...
2100
Emmanuel Dreyfus
manu@...
Jun 15, 2006 3:07 pm
... Yes, this is not a good choice, but now some users might rely on it, so I never fixe dthat "feature". The usual advice is to use domain /^ey\.com$/ We...
2101
manu@...
Jun 15, 2006 4:16 pm
... Unless a m4 expert step in, I'm going to just fix the documentation by adding a warning. -- Emmanuel Dreyfus manu@......
2102
manu@...
Jun 15, 2006 7:49 pm
... Erm... Tonight, I had a peek to milter-greylist.m4, which I should have done earlier (I did it a long time ago when I checked it in, but did not remebered...
2103
Adri Koppes
adrik@...
Jun 16, 2006 7:47 am
... I initially had problems with milter-sender crashing, using the proposed macros for milter-greylist. Currently using the following macros in the...
2104
manu@...
Jun 16, 2006 8:23 am
... You took them from the README, right? -- Emmanuel Dreyfus manu@......
2105
Adri Koppes
adrik@...
Jun 16, 2006 8:38 am
... Yes, initially I used the macros from the milter-greylist README. These caused problems with milter-sender. After changing them both milter-greylist and...
2106
Ugo Bellavance
iolubik
Jun 16, 2006 11:47 am
... That's good news, but who suggested the changes? It does not look like the README's macros or like what is suggested by Howe ...
2107
Adri Koppes
adrik@...
Jun 16, 2006 12:19 pm
... Ugo, I started using some macros proposed by Anthony Howe in an earlier post on www.snert.com, but these didn't solve the problem completely. I combined...
2108
c.r.p.
shcv34c
Jun 19, 2006 3:57 am
I really like milter-greylist, except for one thing. Is there a way to change the log file? I really do not want the messages from milter-greylist showing up...
2109
manu@...
Jun 19, 2006 5:10 am
... Patch the call to openlog() in milter-greylist.c and use a different logging facility. If you are ready to contribute a config-file option to control...
2110
Jack L. Stone
jacks@...
Jun 19, 2006 1:12 pm
... Emmanuel, I'd like to log to a different log file too, like "milter-greylist.log" I gather below are the lines to modify, however I'm unsure of what to ...
2111
Martin Paul
mpaul888
Jun 19, 2006 1:20 pm
... Change LOG_MAIL to LOG_LOCAL0 in both lines. Recompile milter-greylist and restart it. Add a line like: local0.debug /var/log/milter-greylist.log ^^ this...
2112
Emmanuel Dreyfus
manu@...
Jun 19, 2006 1:26 pm
... s/LOG_MAIl/LOG_LOCAL0/ Then edit syslog.conf to redirect local0.* to milter-greylist.log, and signal syslogd. There are also local1, local2 ... local7 -- ...
2113
Jack L. Stone
jacks@...
Jun 19, 2006 4:24 pm
... That works great. Thanks Martin! (^_^) Happy trails, Jack L. Stone System Admin Sage-american...
2114
fredrik.pettai@...
Jun 19, 2006 8:51 pm
... I'm not an expert in m4 either, but I use m4 frequently to build the .cf files... Sendmail 8.13.7 (I guess all sendmail 8.13.X) defines these milter-macros...
2115
fredrik.pettai@...
Jun 19, 2006 9:06 pm
... I think you´re trying to do redundant work here... milter-greylist.m4 seems to be design to just append the macros if they are not defined in your...
2116
manu@...
Jun 19, 2006 9:16 pm
... Yes, I noticed that afterwards -- Emmanuel Dreyfus manu@......