Navigation

    Kopano
    • Register
    • Login
    • Search
    • Categories
    • Get Official Kopano Support
    • Recent
    Statement regarding the closure of the Kopano community forum and the end of the community edition

    Kopano spamd error - PermissionError: [Errno 1] Operation not permitted

    Kopano Groupware Core
    9
    53
    5788
    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.
    • cblaha
      cblaha last edited by

      Hi, the hint of @ckruijntjens was the last piece of the puzzle to the solution. After changing sa_group to kopano, kopano-spamd runs without errors.

      1 Reply Last reply Reply Quote 0
      • BMWfan
        BMWfan @Guest last edited by BMWfan

        @ckruijntjens thank you, this works for me now also after i changed the sa_group to kopano in the configuration etc/kopano/spamd.cfg but now is my inotify-spamlearn not more functioning as here described define-ham-and-spam-for-spamassassin, or what could i do that i could use amavis as the sa_group?

        A Former User 1 Reply Last reply Reply Quote 0
        • A Former User
          A Former User @BMWfan last edited by

          @BMWfan

          Glad it worked👍👍👍

          1 Reply Last reply Reply Quote 0
          • ashceryth
            ashceryth last edited by ashceryth

            @cblaha @ckruijntjens @BMWfan

            Guys, I think what you did is a workaround. Since you set the sa_group to kopano there is no change when executing chown (https://github.com/Kopano-dev/kopano-core/blob/master/ECtools/spamd/kopano_spamd/__init__.py#L104 line 104 onwards) on the files as they’re already owned by kopano:kopano. So, this way the original problem discussed in this thread isn’t triggered (that’s just what I think). Of course it works the other way round if you add amavis to the kopano group and then run inotify-spamlearn as user amavis. This way the user amavis has read and write permissions on the files as the user is member of the kopano group. Just my two cents.

            And please don’t mix up spamd and inotify-spamlearn. These are two different things.

            BMWfan 1 Reply Last reply Reply Quote 1
            • BMWfan
              BMWfan @ashceryth last edited by BMWfan

              @ashceryth thanks for your opinion. You are right i think. I added kopano as described in my post before in the amavis group but the problem exists still if i configure this sa_group = amavis.
              I can execute this manually sudo -H -u kopano chown kopano:amavis /var/lib/kopano/spamd/spam/9DFD4A4E633343C081465B7B8EDBCBE4.eml but the script gives us the following error if it has to execute it triggerd by the mail displacements in Kopano Webapp.

              PermissionError: [Errno 1] Operation not permitted: '/var/lib/kopano/spamd/spam/9DFD4A4E633343C081465B7B8EDBCBE4.eml'

              1 Reply Last reply Reply Quote 0
              • BMWfan
                BMWfan @mark dufour last edited by

                @mark-dufour do you need more informations to reproduce this issue?

                1 Reply Last reply Reply Quote 0
                • fbartels
                  fbartels Kopano last edited by

                  This ultimately seems to be an issue with/experienced through systemd. The permission denied when chown’ing comes from systemd denying it.

                  We will still need to think about alternative approaches for this.

                  Regards Felix

                  Resources:
                  https://kopano.com/blog/how-to-get-kopano/
                  https://documentation.kopano.io/
                  https://kb.kopano.io/

                  Support overview:
                  https://kopano.com/support/

                  BMWfan 1 Reply Last reply Reply Quote 0
                  • BMWfan
                    BMWfan @fbartels last edited by

                    @fbartels thanks for your answer. Should i open a request anywhere or what are the next steps?

                    1 Reply Last reply Reply Quote 0
                    • fbartels
                      fbartels Kopano last edited by

                      @cblaha @ckruijntjens @BMWfan Did some further thinking today and the simplest approach is probably the easiest.

                      Could you try the following (assuming you need your eml files to be kopano:amavis in the end):

                      in spamd.cfg
                      -> set run_as_group to amavis
                      -> sa_group should then be amavis as well

                      make sure kopano is member of the amavis group (writing this out i am not 100% this is really a requirement)
                      make sure that /var/lib/kopano/spamd (recursively) is owned by kopano:amavis

                      If this works for you as well, then we will remove the sa_group option and its related mechanism from kopano-spamd and adopt documentation accordingly.

                      Regards Felix

                      Resources:
                      https://kopano.com/blog/how-to-get-kopano/
                      https://documentation.kopano.io/
                      https://kb.kopano.io/

                      Support overview:
                      https://kopano.com/support/

                      1 Reply Last reply Reply Quote 0
                      • cblaha
                        cblaha last edited by

                        @fbartels : I will try it tomorrow

                        1 Reply Last reply Reply Quote 0
                        • cblaha
                          cblaha last edited by

                          @fbartels: Sorry, that I am reporting so late. Your solution works perfect for me. Thank you

                          1 Reply Last reply Reply Quote 0
                          • A Former User
                            A Former User last edited by

                            for me this is also working. Except i am using rspamd so for me the group is _rspamd

                            This works as expected!

                            1 Reply Last reply Reply Quote 0
                            • weini
                              weini last edited by

                              Works for me too!
                              Many thanks for your support!

                              1 Reply Last reply Reply Quote 0
                              • pschoond
                                pschoond last edited by pschoond

                                I had the same problem on CentOS 7.

                                I think I solved this easily by:

                                adding the amavis user to the group kopano.
                                Since amavis/sa-learn is now able to read the files in /var/lib/kopano/spamd/spam, it is no longer necessary to do a chow or chmod in kopano-spamd. So I commented these two lines (106,107) out in /usr/lib/python2.7/site-packages/kopano_spamd/init.py, like this:
                                #os.chown(emlfilename, uid, gid)
                                #os.chmod(emlfilename, 0o660)
                                By increasing the loglevel to Info in /etc/kopano/spamd.cfg I could verify that the results are now as expected in the systemlog:

                                aug 02 07:33:33 server03.xxxxx.local kopano-spamd[17541]: 2019-08-02 07:33:33,488 - spamd - INFO - Learning message as SPAM, entryid: 0000000000D9DA0165C843EBB498FB6BD1E7C5820100000005000000519FE396E2274687B6E78B016896BC6000000000

                                I’m not sure though if sa-learn is automatically triggered within kopano-spamd on CentOS.

                                Paul

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post