This is a discussion on SpamAssassin setup. within the Mail Servers forums, part of the Mastering Servers category; Hello Linux GURUS, I am farely new to Linux systems.. I have some working knowledge of Linux but thats very ...
|
|||||||
| Register | FAQ | Members List | Calendar | Forgotten your password? | Mark Forums Read |
|
||||
|
Hello Linux GURUS,
I am farely new to Linux systems.. I have some working knowledge of Linux but thats very little. I have setup Spamassassin for one of my clients. I did it by following the online tutorials available on the Spamassassin site. Now I want to check : 1. On which port spamassassin is running.. 2. and my spamd configuration. I have to set SpamAssassin to be set up to listen on IP xx.xxx.xx.xxx, and in addition, it should be set up to accept connections from IP yy.yyy.yyy.yyy. To the best of my knowledge, this is done by adding the following parameters with spamd command: spamd -i xx.xxx.xx.xxx spamd -A yy.yyy.yyy.yyy Now after configuring how can I check my Spamd configuration. Expecting your early reply. Thanks Diptanjan Last edited by diptanjan; 06-06-2007 at 12:47 PM.. |
| Sponsored Links | ||
|
|
|
|||
|
Is usually listen on tcp 783 port. netstat -ntulpn is your friend to get open port list and program name:
Code:
netstat -ntulpn If you are using Postfix add following command to /etc/postfix/main.cf Code:
mailbox_command = /usr/bin/procmail Next in /etc/procmailrc you add something as follows.. which tells to filter everything through spamassassin: Code:
# Send all mail through Spamassassin :0 fw * < 256000 | /usr/bin/spamc -f -u mail That is all you need to do to get started with Spamassassin. |
![]() |
| Bookmarks |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Spamassassin URI rule not working properly | diptanjan | Mail Servers | 2 | 06-26-2007 12:11 PM |