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

    Email Notification - OpenVPN Client Connect (Common Name)

    Scheduled Pinned Locked Moved OpenVPN
    138 Posts 20 Posters 42.0k 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.
    • noplanN
      noplan
      last edited by

      i'm so happy that you came up with a version i can play on.
      and look its workin. pretty fine.

      if someone digs into it a cool thing would be a email
      and a weekly report send by cron
      vpn-client | date | time-in | time-out | client-vpn-ip | client foreign ip | duration connection (hours) | received (MB) | send (MB) |

      mybe a nice project.
      so a weekly report of VPN-clients "timesheets" could be generated

      but maybe all things niceToHave on a firewall ;)

      writtin this post
      i am thinking to write the informations vom disconnect.sh into a txt file and send it via cron to
      another machine doing the formating and generating a sweet pdf. (this could be fun i think )

      #stayHealthy

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

        Hi guys, sorry if I reopen this discussion;

        • I have configured the pfsense notifications and by sending the smtp test, the e-mail will arrive safely.
        • I created the notify.sh file and placed it under root
        • I ran the command: chmod + x /root/notify.sh to make it executable
        • I also ran the ls -al notify.sh command and the result is this:
          notify.sh ls -al.JPG
        • but I don't receive any email when I connect remotely, nothing at all :(
          The notify.sh file contains this:
          notify.sh.JPG
          I tried to manually start the notify.sh file with the ./notify.sh command under root, but nothing happens ...
          at this point I would like to check the notification logs and together with you understand the problem. Do you know where the notification logs are located?
        1 Reply Last reply Reply Quote 0
        • M
          mikekoke
          last edited by

          Create the notify.sh file from the pfsense gui with Diagnostics -> Edit File or from the terminal, I had the same error, I had created the file on windows and moved it to pfsense through winscp but it didn't work.

          V 1 Reply Last reply Reply Quote 0
          • V
            vettalex @mikekoke
            last edited by

            @mikekoke Hello and thank you first.
            After some time I managed to create the file and compile it, but despite this, it still doesn't go.
            I did this procedure:notify.sh diagnostics.JPG
            Compiled like this and saved:
            notify.sh diagnostics intern.JPG
            After that I sent the command chmod +x /root/notify.sh from ssh (putty), since I don't know how to send it from diagnostics-command prompt.
            Where am I wrong?

            ArmstrongA 1 Reply Last reply Reply Quote 0
            • ArmstrongA
              Armstrong @vettalex
              last edited by

              @vettalex said in Email Notification - OpenVPN Client Connect (Common Name):

              Where am I wrong?

              Did you definitely add the client-connect /root/notify.sh part to the configuration of OpenVPN?

              V 1 Reply Last reply Reply Quote 0
              • V
                vettalex @Armstrong
                last edited by

                @Armstrong Yes, in OpenVPN - Server - Edit Server:
                edit server openvpn.JPG

                ArmstrongA 1 Reply Last reply Reply Quote 0
                • ArmstrongA
                  Armstrong @vettalex
                  last edited by

                  @vettalex OK, I just tested by running my own notify.sh (which is different now to the one you're using) and that sends me an empty email. That suggests you have a problem with the notification and probably some kind of syntax error.

                  I would maybe try to run php -l notify.sh or lint the raw php to see if there are any syntax errors. I would generally suggest coding the script yourself from scratch (not copying and pasting) to avoid random errors. Lint first, then rebuild and test again. If the code checks out you have a notification issue.

                  Equally I would test with one of the newer notify.sh scripts deeper into the thread.

                  V 2 Replies Last reply Reply Quote 0
                  • noplanN
                    noplan
                    last edited by

                    Hey folks
                    What I don't get and what's pretty frustrating
                    Readin this from top to bottom gives you a step by step howto for dummies to achieve a pretty professional solution for the request the only f#@&* thing u have to do is read and think

                    I don't get it
                    NP

                    1 Reply Last reply Reply Quote 1
                    • V
                      vettalex @Armstrong
                      last edited by

                      @Armstrong Just done, the result I think is, no syntax errors:
                      no error.JPG

                      1 Reply Last reply Reply Quote 0
                      • V
                        vettalex @Armstrong
                        last edited by

                        @Armstrong Maybe there we are .... I am finding these errors .. even if they do not correspond to the sending time of the notify.sh scirpt (how can I check the correct date and time of pfsense?).
                        The strange thing is that the SMTP test during the configuration of the notification, is successful:
                        eroro log sent mail.JPG

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

                          Everything ok, it was a google problem ... I don't know what problem it was. I used another email and everything works. Thanks a lot to all guys

                          1 Reply Last reply Reply Quote 0
                          • M
                            mrvanity
                            last edited by

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0
                            • P
                              PM_13
                              last edited by

                              @Armstrong I followed these instructions:

                              1. SMTP notification is working from "Advanced Setup", checked it again!
                              2. Added under OpenVPN server following lines:
                              client-connect /root/notify.sh
                              
                              1. The script at /etc/notify.sh has executable flag and reads as follows:
                              #!/usr/local/bin/php -q
                              <?php
                              
                                      require_once("/etc/inc/notices.inc");
                                      notify_all_remote("VPN Connected");
                              ?>
                              
                              1. The client connects to OpenVPN but not getting email notification.

                              And do not see any errors in the log either. Is there anything I missed from the steps above or you have any pointers?

                              Thanks!

                              FuzzzyWuzzzyF 1 Reply Last reply Reply Quote 0
                              • FuzzzyWuzzzyF
                                FuzzzyWuzzzy @PM_13
                                last edited by

                                @PM_13 You're calling the script at /root, but you say that you're script is actually located in /etc ?

                                P 1 Reply Last reply Reply Quote 0
                                • P
                                  PM_13 @FuzzzyWuzzzy
                                  last edited by

                                  @CollectiveSoul thanks for your comments.

                                  I checked the configuration, the script is at "/root/notify.sh" and have mis-typed in the message above.

                                  One sideline question, if I run this script (as root) from command line then it should send an email..correct?Just hoping that I do not have to log in from OpenVPN to test it.

                                  Thanks.

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

                                    @PM_13 said in Email Notification - OpenVPN Client Connect (Common Name):

                                    if I run this script (as root) from command line then it should send an email..correct?

                                    Yes. The mail would be send.

                                    Can you test this :

                                    [2.4.5-RELEASE][admin@pfsense.internal.net]/root: file notify.sh
                                    notify.sh: PHP script, ASCII text executable
                                    [2.4.5-RELEASE][admin@pfsense.internal.net]/root: ls -al notify.sh
                                    -rwxr-xr-x  2 root  wheel  504 Jun 26  2019 notify.sh
                                    

                                    edit : when a mail is actually send - accepted by the mail server, you see this in the main log :

                                    4d159e3f-85e2-4aa1-b38c-1dc670dc3f31-image.png

                                    Not seeing such a line means : the mail never got out.

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

                                    P 1 Reply Last reply Reply Quote 1
                                    • P
                                      PM_13 @Gertjan
                                      last edited by

                                      @Gertjan Found some interesting things:

                                      [2.4.5-RELEASE][admin@pfSense.localdomain]/root: file notify.sh
                                      notify.sh: PHP script, ASCII text executable
                                      [2.4.5-RELEASE][admin@pfSense.localdomain]/root: ls -al notify.sh
                                      -rwxr-xr-x  1 root  wheel  124 Oct  5 19:56 notify.sh
                                      

                                      After executing notify.sh from command line (as root), in the logs I see following:

                                      Oct 7 19:51:09	php-cgi		notify_monitor.php: Could not send the message to <redacted> -- Error: Failed to set sender: <redacted> [SMTP: Invalid response code received from server (code: 550, response: 5.1.0 Authentication required)]
                                      

                                      So went back to System => Advanced => Notifications and re-entered the values for email server, smtp server, login, password, port etc. Then hit "Test SMTP Settings" and I receive a test email promptly.

                                      Went back to command prompt and executed "notify.sh" and got the same error again.

                                      So the SMTP works for test settings but not for "notify.sh" command line execution.
                                      Any ideas what I might be missing here?

                                      GertjanG 1 Reply Last reply Reply Quote 0
                                      • P
                                        PM_13
                                        last edited by

                                        I ran few more commands and output is listed below:

                                        [2.4.5-RELEASE][admin@pfSense.localdomain]/root: tcsh -v notify.sh
                                        
                                        < ?php
                                        Invalid null command.
                                        [2.4.5-RELEASE][admin@pfSense.localdomain]/root: cat notify.sh
                                        #!/usr/local/bin/php -q
                                        <?php
                                        
                                                require_once("/etc/inc/notices.inc");
                                                notify_all_remote("VPN Connected");
                                        ?>
                                        

                                        I am not conversant in php, is there any syntax error in notify.sh?

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

                                          @PM_13 said in Email Notification - OpenVPN Client Connect (Common Name):

                                          re-entered the values for email server, smtp server, login, password, port etc. Then hit "Test SMTP Settings"

                                          Noop.

                                          You enter all the details.
                                          Then you hit Save.
                                          Only then you hit "Test SMTP Settings".

                                          Add a log line in your script file :

                                          ...
                                                  require_once("/etc/inc/notices.inc");
                                                  log_error("About to send a mail ...");
                                                  notify_all_remote("VPN Connected");
                                          ....
                                          

                                          Now you should see this in your :

                                          509174bf-b45e-4a75-aa77-46b8978e6857-image.png

                                          This simple test shows that the script is executed.

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

                                          P 1 Reply Last reply Reply Quote 1
                                          • P
                                            PM_13 @Gertjan
                                            last edited by

                                            @Gertjan Thanks, I saved the settings then tried test SMTP which went smoothly.

                                            The execution of /root/notify.sh from command line still gives the same error as before. So I went to webUI => Diagnostics => Command Prompt => Execute PHP Commands and typed following in the text box:

                                            require_once("/etc/inc/notices.inc");
                                            log_error("About to send a mail ...");
                                            notify_all_remote("VPN Connected");
                                            

                                            Now under Status => System => Logs => System => General, I see following:

                                            Oct 8 10:22:35	php-cgi		notify_monitor.php: Message sent to <redacted> OK
                                            Oct 8 10:22:23	php		/tmp/user_code/zZQWIi: About to send a mail ...
                                            

                                            And the email was also received with message "VPN Connected" in the body!!

                                            So seems like we made some progress but still cannot figure out why /root/notify.sh execution from command line is not working as it should.

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