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

    plugin - store send mails

    Kopano WebApp
    5
    9
    434
    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.
    • VincentB
      VincentB last edited by

      ello
      I want to know if there is a plugin to store sent emails in specific folders, indicating the target automatically or manually after each sent
      thank you

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

        Hi @VincentB,

        not as far as I know.

        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
        • marty
          marty Kopano (Inactive) last edited by

          @VincentB
          Perhaps this is something you can script. The only plugin related to moving messages is the PIM folder plugin. But this is all done manually.

          https://documentation.kopano.io/deskapp_admin_manual
          http://documentation.kopano.io/webapp_smime_manual
          https://documentation.kopano.io/webapp_admin_manual

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

            maybe with the rules you can set.

            some think like :

            • Check message after sending.
            • through name map-account
            • move a copy of the message to folder.
            fbartels 1 Reply Last reply Reply Quote 0
            • fbartels
              fbartels Kopano @thctlo last edited by

              Hi @VincentB,

              please disregard what @thctlo was saying. Rules are only executed on delivery and not when sending.

              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
              • thctlo
                thctlo last edited by

                @fbartels ok, that is also 1/2 correct. we are both telling incomplete info… (oeps)…

                Let say it a bit better then.
                For example Outlook , there I can set that, and Outlook then handles that rule. ( not kopano ). ( client rules)
                Kopano only use the rules on delivery (server rules )

                better?

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

                  @thctlo but this is the webapp subforum, isn’t it? ;-)

                  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
                  • thctlo
                    thctlo last edited by

                    argg… totaly missed that…
                    I’m sorry… im getting more koffee here…

                    umgfoin 1 Reply Last reply Reply Quote 0
                    • umgfoin
                      umgfoin @thctlo last edited by umgfoin

                      Hi @VincentB ,
                      if you have administrative access to kopano-server, your idea could be realized server-side (imho):
                      kopano-spooler and kopano-dagent, responsible for outgoing(spooler) and incoming(dagent) mail, both implement a plugin-framework (python), that should be appropriate to handle your task with a manageable effort of python-coding.

                      A user defined plugin hooks into the delivery process of the aforementioned daemons and will get invoked on below events:

                      def PostConverting(self, session, addrbook, store, folder, message):
                      def PreDelivery(self, session, addrbook, store, folder, message):
                      def PostDelivery(self, session, addrbook, store, folder, message):
                      def PreRuleProcess(self, session, addrbook, store, rulestable):
                      def SendNewMailNotify(self, session, addrbook, store, folder, message):
                      

                      The prototypes are declared in /usr/share/kopano-spooler/python/plugintemplates.py

                      But, as Felix, said, this is off-topic for the webapp-forum.
                      ++umgfoin.

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