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

    Don't receive email notifications

    Scheduled Pinned Locked Moved General pfSense Questions
    25 Posts 6 Posters 1.8k Views
    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.
    • S
      Sessa45
      last edited by

      Hi Guys!

      I have configured the E-Mail notofications by SMTP successfully and received the Test E-Mail as well.
      After that i have installed the mailreport package and configured some reports.

      Unfortunately, i receive not the reports as e-mail.
      Any idea what is going wrong? In the systen logs i can't find any entry.

      Regards!

      1 Reply Last reply Reply Quote 0
      • V
        viragomann
        last edited by

        Does it work if you hit the "Send Now" button in Status > Email Reports > Edit Reports?

        1 Reply Last reply Reply Quote 0
        • S
          Sessa45
          last edited by

          Thanks for reply!

          Unfortunately, not. I have only configure the DHCP log which i wanna receive as report.

          1 Reply Last reply Reply Quote 0
          • GertjanG
            Gertjan
            last edited by

            You could try this : https://forum.netgate.com/topic/145722/notification-email-settings-allow-starttls-option/6

            Set the debug to 'true as mentioned.

            Now do some test mails on both places, from here System > Advanced > Notifications and here Status > Email Reports > Edit Reports.

            No "help me" PM's please. Use the forum, the community will thank you.
            Edit : and where are the logs ??

            T 1 Reply Last reply Reply Quote 0
            • S
              Sessa45
              last edited by

              Thanks for reply!

              I have set the function to true and can see a DEBUG after i have sent the Test E-Mail (which was successfully delivered).
              Unfortunately, when i send some mail from Status > Email Reports > Edit Reports, it do not work so i do not received any report e-mail.

              1 Reply Last reply Reply Quote 0
              • T
                talzub @Gertjan
                last edited by

                @Gertjan This is a good tip. It has the basic functions and guidance provided. I am sure our friend's issue will be resolved

                1 Reply Last reply Reply Quote 0
                • GertjanG
                  Gertjan
                  last edited by

                  @Sessa45 : I had a closer look.

                  The button "Send now" from the package Status => Email Reports => Edit Reports doesn't use the same scripts/code used by other notices.
                  It's uses the /etc/inc/phpmailer/* scripts.

                  Still it should work fine - at least, for me, it does.

                  No "help me" PM's please. Use the forum, the community will thank you.
                  Edit : and where are the logs ??

                  S 1 Reply Last reply Reply Quote 0
                  • S
                    Sessa45 @Gertjan
                    last edited by

                    @Gertjan said in Don't receive email notifications:

                    It's uses the /etc/inc/phpmailer/* scripts.

                    In which file do I have to adapt which code?
                    I am still confused that the test e-mail arrives but the actual reports are not.

                    GertjanG 1 Reply Last reply Reply Quote 0
                    • GertjanG
                      Gertjan @Sessa45
                      last edited by Gertjan

                      @Sessa45 said in Don't receive email notifications:

                      In which file do I have to adapt which code?

                      Yes and no ;)

                      When I installed the "email report package" it worked for me right away.
                      And guess what : you and I use the same code !! ;)

                      But, as usuall, you and I have not the same settings ^^ (so change your settings).

                      The fact is : the recent pfSense Notification code uses new code "PHP Pearl" stuff.
                      The Email report package still uses the old phpmailer.

                      The phpmailer code is here : /etc/inc/phpmailer
                      There are debug facilities present in the main file class.phpmailer.php
                      Set it to

                      public $SMTPDebug = 3;
                      

                      and see what happens.

                      Possibilities are : you see nothing (system logs / in the GUI screen)
                      Or : The phpmailer code isn't even called (the problem lies above).
                      Something else.

                      There is a reason why phpmailer was replaced in pfSense code although phpmailer is still present (because packages might use it, like the Email Report package).

                      You could also try to change the System => Advanced => Notifications for a gmail email address - I know that that one will work - it does for me.

                      No "help me" PM's please. Use the forum, the community will thank you.
                      Edit : and where are the logs ??

                      S GertjanG 3 Replies Last reply Reply Quote 0
                      • S
                        Sessa45 @Gertjan
                        last edited by

                        @Gertjan said in Don't receive email notifications:

                        Possibilities are : you see nothing (system logs / in the GUI screen)

                        That is what happened ... :)
                        I have edited the debug level to 3 but unfortunately, i see nothing.

                        @Gertjan said in Don't receive email notifications:

                        You could also try to change the System => Advanced => Notifications for a gmail email address - I know that that one will work - it does for me.

                        Alright. So i just create an gmail e-mail address and use this? With standard port 25?

                        1 Reply Last reply Reply Quote 0
                        • GertjanG
                          Gertjan
                          last edited by Gertjan

                          Port 25 ????

                          Never ever a mail client should use port 25.
                          That was banished last century.
                          The "25" number should not be used in any mail capable device these days.
                          There ar no exceptions anymore - not on planet earth.

                          True : only some old-school ISP's are still exposing a "port 25 realy mail server" for their clients.
                          Because : your are on their internal network, they know who you are.
                          You shouldn't use this port.
                          Use the 587 or better 465 equivalent - I'm sure they propose that also.

                          GMail can only be used for sending mail on port 465.
                          You have to instruct GMail up front (as any other public mail provider these days) that it should accept incoming (== smtp) mails using your account.

                          How to set up gmail for smtp relaying : start up your memory extension and type gmail smtp 465

                          ( actually, they were saying the truth in The Matrix - knowledge is one phone number or click away ^^ )

                          Btw : if you were really using 25 before, it should be normal that phpmailer bails out .... and thus the mail package .

                          No "help me" PM's please. Use the forum, the community will thank you.
                          Edit : and where are the logs ??

                          1 Reply Last reply Reply Quote 0
                          • GertjanG
                            Gertjan @Gertjan
                            last edited by

                            @Gertjan said in Don't receive email notifications:

                            Set it to
                            public $SMTPDebug = 3;

                            and see what happens.

                            and .... set

                                 public $Debugoutput = 'html';
                            

                            to

                                public $Debugoutput = 'error_log';
                            

                            Now, when sending the test report, go back to the main Dashboard GUI page.

                            You will find a "PHP error" - download it into a text editor and you see the entire mail-send process with all the details.

                            Do not forget to set

                            public $SMTPDebug = 3;
                            

                            back to the default value when your done.

                            No "help me" PM's please. Use the forum, the community will thank you.
                            Edit : and where are the logs ??

                            S 1 Reply Last reply Reply Quote 0
                            • S
                              Sessa45 @Gertjan
                              last edited by

                              @Gertjan

                              Thank you for this answer!

                              I have followed your instructions. This is the content from the PHP_errors.log file:

                              [02-Sep-2019 13:43:42 Europe/Berlin] CLIENT -> SERVER: STARTTLS
                              
                              [02-Sep-2019 13:43:42 Europe/Berlin] SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
                              
                              [02-Sep-2019 13:43:42 Europe/Berlin] SMTP Error: Could not connect to SMTP host.
                              [02-Sep-2019 13:43:42 Europe/Berlin] CLIENT -> SERVER: QUIT
                              
                              [02-Sep-2019 13:43:42 Europe/Berlin] SERVER -> CLIENT: M
                              [02-Sep-2019 13:43:42 Europe/Berlin] SMTP ERROR: QUIT command failed: M
                              [02-Sep-2019 13:43:42 Europe/Berlin] Connection: closed
                              

                              What does this mean? Sure: "SMTP Error: Could not connect to SMTP host." But how exactly can i fix this?

                              GertjanG 1 Reply Last reply Reply Quote 0
                              • johnpozJ
                                johnpoz LAYER 8 Global Moderator
                                last edited by

                                what is the server you have setup for smtp - your saying the test notification works? But mail reports don't?

                                I tried to duplicate your issue, but working here - just installed the email reports package.. had it send me some logs (dhcp) and got it as soon as I hit send now

                                cannotdup.png

                                An intelligent man is sometimes forced to be drunk to spend time with his fools
                                If you get confused: Listen to the Music Play
                                Please don't Chat/PM me for help, unless mod related
                                SG-4860 24.11 | Lab VMs 2.8, 24.11

                                1 Reply Last reply Reply Quote 0
                                • GertjanG
                                  Gertjan @Sessa45
                                  last edited by Gertjan

                                  This :
                                  @Sessa45 said in Don't receive email notifications:

                                  [02-Sep-2019 13:43:42 Europe/Berlin] CLIENT -> SERVER: STARTTLS

                                  Before, when pfSense was using phpmailer itself, there was a setting in the GUI that controlled the STARTSSL usage.
                                  Now, that is gone because the new pearl PHP mailer is smart enough to find that out for itself.

                                  But : as said, the Email report package usages phpmailer. And phpmailer is probably missing that option now. That might explain why it has troubles to connect to 'some' smtp servers. [ edit : read on : this is not true - a STARTSSL capable mail server on port 587 works for me ]

                                  I use the https version of mailing : smtps from point to point - to make things short : use port 465. That's what I do.

                                  Here it is (I cut out the mail body itself ) : https://pastebin.com/A42BhsB7

                                  I'll set up my pfSense to use the older submission (smtp over port 587) - I'm using my own mail server so I can see on both sides what happens.
                                  These are my settings :

                                  16a6268e-6c58-44d9-bd75-319e4c86d1ad-image.png

                                  Your settings are any different ?

                                  Mail server log : https://pastebin.com/cbR2h3EY

                                  The PHP_eroor log from pfSense / the Email report package :

                                  And of course I received also the test mail from the Mail report package.

                                  Maybe the mail server you are using is not 100 % RFC xxxx comliant ?
                                  I can :
                                  send mail using 587 (my own mail servers, my ISP mail server)
                                  send mail using 465 (gmail and my own servers)
                                  just fine.

                                  This is my logs - using port "587" on my mail server :

                                  ....
                                  [02-Sep-2019 14:20:42 Europe/Paris] Connection: opened
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 220 mail.----------.me ESMTP Postfix
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: EHLO pfsense.brit-hotel-fumel.nxt
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 250-mail.----------.me
                                  250-PIPELINING
                                  250-SIZE 31457280
                                  250-VRFY
                                  250-ETRN
                                  250-STARTTLS
                                  250-ENHANCEDSTATUSCODES
                                  250-8BITMIME
                                  250 DSN
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: STARTTLS
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: EHLO pfsense.brit-hotel-fumel.nxt
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 250-mail.----------.me
                                  250-PIPELINING
                                  250-SIZE 31457280
                                  250-VRFY
                                  250-ETRN
                                  250-AUTH PLAIN LOGIN
                                  250-AUTH=PLAIN LOGIN
                                  250-ENHANCEDSTATUSCODES
                                  250-8BITMIME
                                  250 DSN
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: AUTH LOGIN
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 334 VXNlsdferscm5hbWU6
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: Z2ViydffGfphbqkBrqcmqsd9lYi5tZQ==
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 334 UGFzc3eddvctmQ6
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: aVbHRzZWNhiNDc=
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 235 2.7.0 Authentication successful
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] CLIENT -> SERVER: MAIL FROM:<pfsense@brit-hotel-fumel.nxt>
                                  
                                  [02-Sep-2019 14:20:42 Europe/Paris] SERVER -> CLIENT: 250 2.1.0 Ok
                                  ........
                                  

                                  After your (and mine )

                                  SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
                                  

                                  You did cut out important server - client mail communication - maybe hiding important issues.
                                  something is pulling the plug out of the connection. Probably the mail server in front of you.

                                  My server doesn't do that - neither the mail server from gmail.com - and others.

                                  gmail worked for you ?

                                  What you see in my logs is:

                                  First, over clear pipe communication - and the option that STARTSSL is present as a server option.
                                  Then the mail client uses the STARTSSL command - now the connection becomes "SSL".
                                  Again the options are shown - without STARTSSL this time, because it's already active.
                                  Authentication happens,
                                  The mail is sent.

                                  No "help me" PM's please. Use the forum, the community will thank you.
                                  Edit : and where are the logs ??

                                  1 Reply Last reply Reply Quote 0
                                  • S
                                    Sessa45 @Gertjan
                                    last edited by

                                    @Gertjan said in Don't receive email notifications:

                                    You could also try to change the System => Advanced => Notifications for a gmail email address - I know that that one will work - it does for me.

                                    Alright. I have created an gmail e-mail account and tried to send the test e-mail after i have set the following configuration:

                                    smtp_config.PNG

                                    I have followed the instruction which are given on the following site which you have given me:

                                    @Gertjan said in Don't receive email notifications:

                                    How to set up gmail for smtp relaying : start up your memory extension and type gmail smtp 465

                                    SMTP:
                                    
                                    Postausgangsserver: smtp.googlemail.com
                                    
                                    Port: 465 (SSL) oder 587 (TLS/STARTTLS)
                                    

                                    When i use port 465, i receive the following message when i try tp send the test mail:
                                    Could not send the message to test.pfsense2019@gmail.com -- Error: Failed to connect to smtp.googlemail.com:465 [SMTP: Invalid response code received from server (code: -1, response: )]

                                    When i use port 587:
                                    Could not send the message to test.pfsense2019@gmail.com -- Error: Failed to set sender: admin@pfsense.de [SMTP: Invalid response code received from server (code: 530, response: 5.7.0 Must issue a STARTTLS command first. m7sm39593166wmi.18 - gsmtp)]

                                    What do i wrong?

                                    GertjanG 1 Reply Last reply Reply Quote 0
                                    • GertjanG
                                      Gertjan @Sessa45
                                      last edited by

                                      @Sessa45 said in Don't receive email notifications:

                                      What do i wrong?

                                      fd216e3c-2f66-4c9d-8680-0f99a9da4afb-image.png

                                      According to the English doc the URL is smtp.gmail.com

                                      See point 2 : I don't understand why you didn't enter a login mail and password .....
                                      These days, you couldn't and you shouldn't send and receive mails without identification/authentication.

                                      No "help me" PM's please. Use the forum, the community will thank you.
                                      Edit : and where are the logs ??

                                      S 1 Reply Last reply Reply Quote 0
                                      • S
                                        Sessa45 @Gertjan
                                        last edited by

                                        @Gertjan said in Don't receive email notifications:

                                        @Sessa45 said in Don't receive email notifications:

                                        What do i wrong?

                                        fd216e3c-2f66-4c9d-8680-0f99a9da4afb-image.png

                                        According to the English doc the URL is smtp.gmail.com

                                        See point 2 : I don't understand why you didn't enter a login mail and password .....
                                        These days, you couldn't and you shouldn't send and receive mails without identification/authentication.

                                        Even if i use this configuration i received an error message when i try to send a test mail:

                                        Could not send the message to test.pfsense2019@gmail.com -- Error: Failed to connect to smtp.gmail.com:465 [SMTP: Invalid response code received from server (code: -1, response: )]

                                        1 Reply Last reply Reply Quote 0
                                        • GertjanG
                                          Gertjan
                                          last edited by

                                          When you use your gmail address and password, pfSense should tell you this (using a red background) :

                                          Could not send the message to gertjan@kroeb.me -- Error: LOGIN authentication failure [SMTP: Invalid response code received from server (code: 534, response: 5.7.9 Application-specific password required. Learn more at 5.7.9 https://support.google.com/mail/?p=InvalidSecondFactor v8sm35044038wra.79 - gsmtp)]

                                          It's URL reading time again.

                                          You have to generate a special password for your pfSense Notification setup.
                                          One done :

                                          86f44830-faf1-4b96-bc60-f0fadc065cf7-image.png

                                          No "help me" PM's please. Use the forum, the community will thank you.
                                          Edit : and where are the logs ??

                                          S 1 Reply Last reply Reply Quote 0
                                          • S
                                            Sessa45 @Gertjan
                                            last edited by

                                            @Gertjan said in Don't receive email notifications:

                                            It's URL reading time again.

                                            Done. I set an App password in my gmail account and take this in my pfSense configuration. Unfortunately, i received the same error.

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