Yahoo Groups archive

Milter-greylist

Index last updated: 2026-04-28 23:32 UTC

Thread

milter-greylist 1.7.3 released

milter-greylist 1.7.3 released

2004-12-16 by manu@netbsd.org

milter-greylist 1.7.3 is available from our favorite FTP server

http://ftp.espci.fr/pub/milter-greylist/milter-greylist-1.7.3.tgz
MD5 (milter-greylist-1.7.3.tgz) = ad9a860688f192202f32ed412422d24b

New since 1.7.2:
+ SUSe startup script, by Stephane Lentz
+ Builds again with SPF enabled
+ Update doc: flex is required
+ Prefix all install paths by ${DESTDIR} to help sandbox builds for RPM
+ Pull config from /etc/sysconfig/milter-greylist in rc-rdehat.sh
+ Whitelist when sendmail sets ${greylist} to WHITE (Ivan F. Martinez)

-- 
Emmanuel Dreyfus
Il y a 10 sortes de personnes dans le monde: ceux qui comprennent 
le binaire et ceux qui ne le comprennent pas.
manu@...

Re: [milter-greylist] milter-greylist 1.7.3 released

2004-12-16 by Ivan F. Martinez

On Fri, 17 Dec 2004 00:13:40 +0100
manu@... wrote:

MO> 
MO> milter-greylist 1.7.3 is available from our favorite FTP server
MO> 
MO> http://ftp.espci.fr/pub/milter-greylist/milter-greylist-1.7.3.tgz
MO> MD5 (milter-greylist-1.7.3.tgz) = ad9a860688f192202f32ed412422d24b
MO> 
MO> New since 1.7.2:
MO> + SUSe startup script, by Stephane Lentz
MO> + Builds again with SPF enabled
MO> + Update doc: flex is required
MO> + Prefix all install paths by ${DESTDIR} to help sandbox builds for
RPM
MO> + Pull config from /etc/sysconfig/milter-greylist in rc-rdehat.sh
MO> + Whitelist when sendmail sets ${greylist} to WHITE (Ivan F.
Martinez)
MO> 

I have created a new .spec file to be used with 1.7.3 :
http://www.saisp.br/ifm/patches/

I didn't not tested the install, I have only built a rpm to test the
spec.
I will test tomorrow.


--

Re: [milter-greylist] milter-greylist 1.7.3 released

2004-12-18 by Thomas Cameron

----- Original Message ----- 
Show quoted textHide quoted text
From: <manu@...>
To: <milter-greylist@yahoogroups.com>
Sent: Thursday, December 16, 2004 5:13 PM
Subject: [milter-greylist] milter-greylist 1.7.3 released


>
> milter-greylist 1.7.3 is available from our favorite FTP server
>
> http://ftp.espci.fr/pub/milter-greylist/milter-greylist-1.7.3.tgz
> MD5 (milter-greylist-1.7.3.tgz) = ad9a860688f192202f32ed412422d24b
>
> New since 1.7.2:
> + SUSe startup script, by Stephane Lentz
> + Builds again with SPF enabled
> + Update doc: flex is required
> + Prefix all install paths by ${DESTDIR} to help sandbox builds for RPM
> + Pull config from /etc/sysconfig/milter-greylist in rc-rdehat.sh
> + Whitelist when sendmail sets ${greylist} to WHITE (Ivan F. Martinez)

It appears that DESTDIR is still not quite working as expected:

[thomas.cameron@mail milter-greylist-1.7.3]$ make install 
DESTDIR=/var/tmp/milter-greylist
/usr/bin/install -c -d -m 755 /var/tmp/milter-greylist/usr/bin
/usr/bin/install -c -d -m 755 /var/tmp/milter-greylist/usr/man/man8
/usr/bin/install -c -d -m 755 /var/tmp/milter-greylist/usr/man/man5
/usr/bin/install -c -m 755 milter-greylist /var/tmp/milter-greylist/usr/bin
/usr/bin/install -c -m 644 milter-greylist.8 
/var/tmp/milter-greylist/usr/man/man8
/usr/bin/install -c -m 644 greylist.conf.5 
/var/tmp/milter-greylist/usr/man/man5
test -f /var/tmp/milter-greylist/etc/mail/greylist.conf -o -f 
/var/tmp/milter-greylist/etc/mail/greylist.except || \
     /usr/bin/install -c -m 644 greylist.conf 
/var/tmp/milter-greylist/etc/mail
/usr/bin/install: cannot create regular file 
`/var/tmp/milter-greylist/etc/mail': No such file or directory
make: *** [install] Error 1

It seems to skip making $DESTDIR/etc/mail.  If I knew how to code I'd submit 
a patch.  I would think that the same code that executes:

/usr/bin/install -c -d -m 755 /var/tmp/milter-greylist/usr/bin

could be made to execute something like

/usr/bin/install -c -d -m 755 /var/tmp/milter-greylist/etc/mail

Thanks,
Thomas

Re: [milter-greylist] milter-greylist 1.7.3 released

2004-12-18 by Eugene Crosser

--- Thomas Cameron <thomas.cameron@...>
wrote:

> could be made to execute something like
> 
> /usr/bin/install -c -d -m 755
> /var/tmp/milter-greylist/etc/mail

Insert this line into Makefile.in before line 97:

${INSTALL} -d -m 755 ${DESTDIR}/etc/mail

Eugene


		
__________________________________ 
Do you Yahoo!? 
Jazz up your holiday email with celebrity designs. Learn more. 
http://celebrity.mail.yahoo.com

Re: [milter-greylist] milter-greylist 1.7.3 released

2004-12-18 by Thomas Cameron

----- Original Message ----- 
Show quoted textHide quoted text
From: "Eugene Crosser" <egcrosser@...>
To: <milter-greylist@yahoogroups.com>
Sent: Saturday, December 18, 2004 7:25 AM
Subject: Re: [milter-greylist] milter-greylist 1.7.3 released


> 
> --- Thomas Cameron <thomas.cameron@...>
> wrote:
> 
>> could be made to execute something like
>> 
>> /usr/bin/install -c -d -m 755
>> /var/tmp/milter-greylist/etc/mail
> 
> Insert this line into Makefile.in before line 97:
> 
> ${INSTALL} -d -m 755 ${DESTDIR}/etc/mail
> 
> Eugene

Many thanks!

Thomas

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.