I would like to install greylisting on my new plesk 8.3 FC7 server. I searched these forums and found bits and pieces on how to do the installation but I am still not very confident. I do not want to do a mess and would appreciate if someone could give me a step by step instruction on how to install greylisting after: su - root
In some posts I read that a new version of greylisting was being developed .. is this ready please?
Thanks
greylisting
-
- Atomicorp Staff - Site Admin
- Posts: 8355
- Joined: Wed Dec 31, 1969 8:00 pm
- Location: earth
- Contact:
Add the atomic channel:
wget -q -O - http://www.atomicorp.com/installers/atomic |sh
Install it
yum install qgreylist
I'm not working on any new version of qgreylist, its a pretty simple app. I can't really think of anything that needs to be added to it.
wget -q -O - http://www.atomicorp.com/installers/atomic |sh
Install it
yum install qgreylist
I'm not working on any new version of qgreylist, its a pretty simple app. I can't really think of anything that needs to be added to it.
-
- Forum User
- Posts: 93
- Joined: Sun Feb 13, 2005 2:24 pm
- Location: TN
-
- Forum Regular
- Posts: 190
- Joined: Sun Nov 20, 2005 4:16 pm
- Location: Right Behind You!
- Contact:
You can follow the instructions here:
http://atomicrocketturtle.com/forum/vie ... php?t=1268
Or you can edit the smtps chain and remove the greylisting portion. Remove the part in between the [**] in the file /etc/xinetd.d/smtps_psa. This will remove greylisting altogether from smtps, but only your customers should be going there anyway. Connections to the regular port 25 will still be greylisted.
You will need to restart xinetd for this to take effect.
http://atomicrocketturtle.com/forum/vie ... php?t=1268
Or you can edit the smtps chain and remove the greylisting portion. Remove the part in between the [**] in the file /etc/xinetd.d/smtps_psa. This will remove greylisting altogether from smtps, but only your customers should be going there anyway. Connections to the regular port 25 will still be greylisted.
Code: Select all
service smtps
{
socket_type = stream
protocol = tcp
wait = no
disable = no
user = root
instances = UNLIMITED
per_source = 1
env = SMTPAUTH=1
server = /var/qmail/bin/tcp-env
server_args = -Rt0 /usr/sbin/rblsmtpd -r sbl.spamhaus.org -r xbl.spamhaus.org /var/qmail/bin/relaylock [**]/var/qmail/bin/greylist[**] /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true
}
-Andy