Difference between pages "Linuxintro:About" and "Greylisting"

From Linuxintro
(Difference between pages)
 
imported>ThorstenStaerk
 
Line 1: Line 1:
Sharp thiignnk! Thanks for the answer.
+
There are different tools for greylisting.
  
= How was it done =
+
= Postgrey =
I used plain mediawiki software. I added and removed
+
Postgrey is [[greyListing]] [[software]] for the [[postfix]] [[MTA]].
* [[Mediawiki#FaceBook_like_buttons|added the FaceBook "like" buttons]]  
 
* [http://www.mediawiki.org/wiki/Extension:FacebookComments FaceBook Comments Extension].
 
  
I just added
+
== How to get it ==
* [http://www.staerk.de/thorsten/Google_adds Google Ads]
 
* [https://www.mediawiki.org/wiki/Extension:ConfirmEdit ConfirmEdIt ExTension]
 
  
Due to massive spam I had to disallow registration to this wiki. If you want to register, read on.
+
Download postgrey from http://postgrey.schweikert.ch/
  
= Want to join us =
+
== How to set it up ==
You want to write an own article on here? Help improve other articles?
+
 
Then please write a mail to dev at staerk dot de with the subject "account for linuxintro". Sorry for the inconvenience but there were massive spamming attacks when editing was allowed to everybody.
+
* Extract your postgrey [[package]], e.g.:
 +
tar xvzf postgrey-1.32.tar.gz
 +
* install some needed packages
 +
yast -i perl-BerkeleyDB
 +
* Copy postgrey_whitelist_clients to /etc/postfix/
 +
* Copy postgrey_whitelist_recipients to /etc/postfix/
 +
* Add a user named postgrey:
 +
useradd -m postgrey
 +
* start postgrey
 +
./postgrey --inet 127.0.0.1:60000
 +
If you get an error, see ''TroubleShooting''.
 +
* make sure postgrey is listening on port 60000:
 +
<pre>
 +
$ nmap localhost -p59998-60002
 +
 
 +
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-08-10 07:44 CEST
 +
Interesting ports on lvps87-230-12-146.dedicated.hosteurope.de (127.0.0.1):
 +
PORT      STATE  SERVICE
 +
59998/tcp closed unknown
 +
59999/tcp closed unknown
 +
60000/tcp open  unknown
 +
60001/tcp closed unknown
 +
60002/tcp closed unknown
 +
 
 +
Nmap finished: 1 IP address (1 host up) scanned in 0.049 seconds
 +
</pre>
 +
* Make sure there is a line like this in /etc/postfix/main.cf:
 +
smtpd_recipient_restrictions = permit_mynetworks,
 +
                                permit_sasl_authenticated,
 +
                                reject_unauth_destination,
 +
                                check_policy_service  inet:127.0.0.1:60000
 +
* restart postfix
 +
/etc/init.d/postfix restart
 +
 
 +
= TroubleShooting =
 +
 
 +
'''Symptome:''' When starting postgrey, you get an error message
 +
Can't locate Net/Server.pm in @INC
 +
 
 +
'''Reason:''' Your perl is installed, but missing Net::Server
 +
 
 +
'''Solution:''' Install Net::Server via [[cpan]]:
 +
perl -mCPAN -e CPAN::Shell
 +
If you have never run CPAN before, you have to answer 25 questions now. Then issue:
 +
install Net::Server
 +
 
 +
= See also =
 +
 
 +
http://www.debuntu.org/postfix-and-postgrey-a-proactive-approach-to-spam-filtering

Revision as of 10:31, 12 October 2008

There are different tools for greylisting.

Postgrey

Postgrey is greyListing software for the postfix MTA.

How to get it

Download postgrey from http://postgrey.schweikert.ch/

How to set it up

  • Extract your postgrey package, e.g.:
tar xvzf postgrey-1.32.tar.gz
  • install some needed packages
yast -i perl-BerkeleyDB
  • Copy postgrey_whitelist_clients to /etc/postfix/
  • Copy postgrey_whitelist_recipients to /etc/postfix/
  • Add a user named postgrey:
useradd -m postgrey
  • start postgrey
./postgrey --inet 127.0.0.1:60000

If you get an error, see TroubleShooting.

  • make sure postgrey is listening on port 60000:
$ nmap localhost -p59998-60002

Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-08-10 07:44 CEST
Interesting ports on lvps87-230-12-146.dedicated.hosteurope.de (127.0.0.1):
PORT      STATE  SERVICE
59998/tcp closed unknown
59999/tcp closed unknown
60000/tcp open   unknown
60001/tcp closed unknown
60002/tcp closed unknown

Nmap finished: 1 IP address (1 host up) scanned in 0.049 seconds
  • Make sure there is a line like this in /etc/postfix/main.cf:
smtpd_recipient_restrictions = permit_mynetworks,
                                permit_sasl_authenticated,
                                reject_unauth_destination,
                                check_policy_service  inet:127.0.0.1:60000
  • restart postfix
/etc/init.d/postfix restart

TroubleShooting

Symptome: When starting postgrey, you get an error message

Can't locate Net/Server.pm in @INC 

Reason: Your perl is installed, but missing Net::Server

Solution: Install Net::Server via cpan:

perl -mCPAN -e CPAN::Shell

If you have never run CPAN before, you have to answer 25 questions now. Then issue:

install Net::Server

See also

http://www.debuntu.org/postfix-and-postgrey-a-proactive-approach-to-spam-filtering