• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Search
  • Register
  • Login
Netgate Discussion Forum
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Search
  • Register
  • Login

Postfix - antispam and relay package

pfSense Packages
136
855
1.0m
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J
    jamesc
    last edited by Feb 29, 2012, 9:41 AM

    Thank you Marcello.

    The first thing i'm trying to implement is some simple anti-spoofing checks.

    For example, the Postfix server is configured to accept email for mydomain.com and then to forward on to our internal mail server located within the trusted network zone.

    I want Postfix to carry out a check on the MAIL FROM and RCPT TO addresses, it should immediately drop any email where both the sender address and recipient is equal to mydomain.com because these emails would never genuinely hit the Postfix gateway.

    Any ideas?

    1 Reply Last reply Reply Quote 0
    • M
      marcelloc
      last edited by Feb 29, 2012, 11:51 AM

      This is done on postfix antispam tab.

      Set strong header verification, reject when spf fails, etc.

      Almost all options has a minihelp on description and default value.

      Treinamentos de Elite: http://sys-squad.com

      Help a community developer! ;D

      1 Reply Last reply Reply Quote 0
      • J
        jamesc
        last edited by Mar 1, 2012, 2:31 PM

        Thanks.

        I would like to use basic header verification and then build the rest of my config using the custom main.cf options.

        Is this possible or not recommended?

        If I try adding the below to my custom main.cf (when using basic header verification) I cannot get an SMTP connection into the server

        disable_vrfy_command = yes
        strict_rfc821_envelopes = yes
        
        smtpd_sender_restrictions = reject_non_fqdn_sender,
        reject_unauth_pipelining,
        reject_multi_recipient_bounce,
        permit
        

        Any ideas?

        1 Reply Last reply Reply Quote 0
        • M
          marcelloc
          last edited by Mar 1, 2012, 2:37 PM

          This options are applied to header checks, it could not be alone on configuration.

          Check current config file on view configuration postfix tab.

          This way you can check what is applied to postfix.

          Treinamentos de Elite: http://sys-squad.com

          Help a community developer! ;D

          1 Reply Last reply Reply Quote 0
          • J
            jamesc
            last edited by Mar 1, 2012, 2:47 PM

            This is my main.cf

            /usr/local/etc/postfix/main.cf
            #main.cf\
            #Part of the Postfix package for pfSense
            #Copyright (C) 2010 Erik Fonnesbeck
            #Copyright (C) 2011 Marcello Coutinho
            #All rights reserved.
            #DO NOT EDIT THIS FILE
            
            mynetworks = /usr/local/etc/postfix/mynetwork_table
            mynetworks_style = host
            disable_vrfy_command = yes
            strict_rfc821_envelopes = yes
            
            smtpd_sender_restrictions = reject_non_fqdn_sender,
            reject_unauth_pipelining,
            reject_multi_recipient_bounce,
            permit
            
            smtpd_client_restrictions = reject_unknown_client_hostname,
            reject_unauth_pipelining,
            reject_multi_recipient_bounce,
            permit
            relay_domains = mydomain.com
            transport_maps = hash:/usr/local/etc/postfix/transport
            local_recipient_maps =
            mydestination =
            mynetworks_style = host
            message_size_limit = 10240000
            default_process_limit = 100
            #Just reject after helo,sender,client,recipient tests
            smtpd_delay_reject = yes
            
            # Don't talk to mail systems that don't know their own hostname.
            smtpd_helo_required = yes
            smtpd_helo_restrictions = 
            
            smtpd_sender_restrictions = reject_unknown_sender_domain,
            				permit
            
            # Allow connections from specified local clients and rbl check everybody else if rbl check are set.
            smtpd_client_restrictions = check_client_access pcre:/usr/local/etc/postfix/cal_pcre,
            				check_client_access cidr:/usr/local/etc/postfix/cal_cidr,
            				permit
            
            # Whitelisting: local clients may specify any destination domain.
            #,
            smtpd_recipient_restrictions = permit_mynetworks, 
            				reject_unauth_destination,
            				reject_spf_invalid_sender,
            				permit
            
            postscreen_access_list = permit_mynetworks,
            			cidr:/usr/local/etc/postfix/cal_cidr
            postscreen_dnsbl_action= drop
            postscreen_blacklist_action= drop
            
            

            As you can see, the smtpd_sender_restrictions section appears twice, one is from my custom main.cf and the second is what you get as standard with basic header verification.

            Are you saying this is not a valid configuration?

            1 Reply Last reply Reply Quote 0
            • M
              marcelloc
              last edited by Mar 1, 2012, 3:10 PM

              I don't know how postfix handles with two smtpd_sender_restrictions on config file.

              Why don't you use strong header check and configure your internal servers on acls?

              Treinamentos de Elite: http://sys-squad.com

              Help a community developer! ;D

              1 Reply Last reply Reply Quote 0
              • J
                jamesc
                last edited by Mar 2, 2012, 4:07 PM

                That seems to work, thanks.  I just like to do things from scratch because it helps me learn  :)

                I'm currently logging to /var/log/maillog.  I only want to retain 30 days worth of logs, is there a way I can set this up?

                Also, how can I manage 'dead messages', is it possible to delete these from the queue?

                1 Reply Last reply Reply Quote 0
                • M
                  marcelloc
                  last edited by Mar 2, 2012, 4:49 PM

                  These extra steps can be done via shell/php scripts

                  Treinamentos de Elite: http://sys-squad.com

                  Help a community developer! ;D

                  1 Reply Last reply Reply Quote 0
                  • J
                    jamesc
                    last edited by Mar 5, 2012, 11:15 AM

                    Could the .db files just be deleted from /var/db/postfix or would I need to run some SQL to perform the maintenance?

                    1 Reply Last reply Reply Quote 0
                    • M
                      marcelloc
                      last edited by Mar 5, 2012, 11:37 AM

                      You mean per day log files in db format?

                      If so, just delete it to cleanup disk.

                      Treinamentos de Elite: http://sys-squad.com

                      Help a community developer! ;D

                      1 Reply Last reply Reply Quote 0
                      • J
                        jamesc
                        last edited by Mar 5, 2012, 11:53 AM

                        Yes that's correct, e.g:

                        2012-03-01.db
                        2012-03-02.db
                        2012-03-03.db
                        2012-03-04.db

                        Do I just delete the .db file, simple as that?

                        Thanks for all your advice Marcello, you have been very helpful while i've been getting to grips with this excellent package :-)

                        1 Reply Last reply Reply Quote 0
                        • M
                          marcelloc
                          last edited by Mar 5, 2012, 12:57 PM

                          @jamesc:

                          Do I just delete the .db file, simple as that?

                          Yes  :)

                          Treinamentos de Elite: http://sys-squad.com

                          Help a community developer! ;D

                          1 Reply Last reply Reply Quote 0
                          • J
                            jamesc
                            last edited by Mar 6, 2012, 2:59 PM

                            Marcello, I notice when I disable the anvil daemon I get these warning messages in the log:

                            Mar  6 13:16:58 smtp postfix/smtpd[19050]: warning: connect to private/anvil: Connection refused
                            Mar  6 13:16:58 smtp postfix/smtpd[19050]: warning: problem talking to server private/anvil: Connection refused
                            
                            

                            When I run the postfix upgrade-configuration command, this is what happens:

                            [2.0.1-RELEASE][root@smtp.lab.local]/var/log(51): postfix upgrade-configuration
                            Editing /usr/local/etc/postfix/master.cf, adding missing entry for anvil service
                            Editing /usr/local/etc/postfix/master.cf, adding missing entry for postscreen TCP service
                            

                            Then these lines are added back into master.cf:

                            anvil	  unix	-	-	n	-	1	anvil
                            #smtp      inet  n       -       n       -       1       postscreen
                            
                            1 Reply Last reply Reply Quote 0
                            • M
                              marcelloc
                              last edited by Mar 6, 2012, 3:02 PM

                              The disable anvil option was added to avoid delays between connections(maybe just for debug).

                              If you do not have this issue, leave it enabled.

                              Treinamentos de Elite: http://sys-squad.com

                              Help a community developer! ;D

                              1 Reply Last reply Reply Quote 0
                              • J
                                jamesc
                                last edited by Mar 6, 2012, 3:35 PM

                                I have internal clients relaying directly to the Postfix box and the helper text suggests it should be disabled in this scenario?

                                anvil - Postfix session count and request rate control.
                                You can disable it if your server relays mail from internal clients to internet.
                                
                                1 Reply Last reply Reply Quote 0
                                • M
                                  marcelloc
                                  last edited by Mar 6, 2012, 6:27 PM

                                  I do. :)

                                  Take a look on mailscanner topic.

                                  Treinamentos de Elite: http://sys-squad.com

                                  Help a community developer! ;D

                                  1 Reply Last reply Reply Quote 0
                                  • K
                                    ktims
                                    last edited by Mar 7, 2012, 5:49 PM

                                    Great package, thanks. I used to install postfix manually, and this makes life a lot easier especially on NanoBSD installs.

                                    I have one simple request: could you add fields for relayhost and smtp_fallback_relay, as I'm just using it as a relay?

                                    1 Reply Last reply Reply Quote 0
                                    • M
                                      marcelloc
                                      last edited by Mar 7, 2012, 7:57 PM

                                      @ktims:

                                      Great package, thanks. I used to install postfix manually, and this makes life a lot easier especially on NanoBSD installs.

                                      I have one simple request: could you add fields for relayhost and smtp_fallback_relay, as I'm just using it as a relay?

                                      Try to paste this options on custom field.

                                      Treinamentos de Elite: http://sys-squad.com

                                      Help a community developer! ;D

                                      1 Reply Last reply Reply Quote 0
                                      • J
                                        jamesc
                                        last edited by Mar 8, 2012, 1:16 PM

                                        @marcelloc:

                                        I do. :)

                                        Take a look on mailscanner topic.

                                        I did, but no mention of the anvil daemon on there, unless i'm missing something obvious?

                                        1 Reply Last reply Reply Quote 0
                                        • M
                                          marcelloc
                                          last edited by Mar 8, 2012, 1:21 PM

                                          @jamesc:

                                          I did, but no mention of the anvil daemon on there, unless i'm missing something obvious?

                                          If you are having no issues with anvil, just leave it enabled.

                                          Treinamentos de Elite: http://sys-squad.com

                                          Help a community developer! ;D

                                          1 Reply Last reply Reply Quote 0
                                          141 out of 855
                                          • First post
                                            141/855
                                            Last post
                                          Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.