Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-27 Thread Thomas Raschbacher
Hi. Probably a questionable idea, but you could put a TRIGGER on the database table and run some SP that moves the message -- or rather copies it some other folder (in which the user will not have delete permission).. but not sure if that is .. feasable ;) __

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-27 Thread Harald Leithner
Hi, you can avoid deleting messages from the database by changing the delete bit for each message in the "Trash" folder. This can be done in 2 ways, simple before running dbmail-utils run this query UPDATE dbmail_messages set deleted_flag=0, status=0; with this query all messages get res

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-24 Thread Matt .
Hi Reindl, Yes Mail archiver is the next option. We don't use dbmail in an ordinary way, so we are just looking for the possibilities with DBMAIL. So more ideas are welcome. 2015-04-24 12:38 GMT+02:00 Reindl Harald : > > > Am 24.04.2015 um 12:34 schrieb Matt .: >> >> According to this: >> >> Is

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-24 Thread Reindl Harald
Am 24.04.2015 um 12:34 schrieb Matt .: According to this: Is it possible to avoid people empying their trashcan ? frankly that all makes no sense and is not the job of a IMAP server because it would confuse the MUA - what you seek is a mail archiver which is far far away from the IMAP serv

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-24 Thread Matt .
According to this: Is it possible to avoid people empying their trashcan ? 2015-04-21 0:55 GMT+02:00 Matt . : > Hi, > > True what you say but it would be great to have such option. > > I have investigated it in the past, but as it's a DB behind it we > should be able to do in some way... ACL's he

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-20 Thread Matt .
Hi, True what you say but it would be great to have such option. I have investigated it in the past, but as it's a DB behind it we should be able to do in some way... ACL's help half. If I'm right you cannot stop the move as you cannot write an email anymore which is saved as draft and send. Di

Re: [Dbmail] Avoid remove of messages but able to move them (same for concepts)

2015-04-20 Thread Reindl Harald
Am 20.04.2015 um 16:36 schrieb Matt .: Hi guys. I'm trying to avoid people removing messages but allow moving them. The issue here is that moving disallows removal at the moment (same for concepts) and I get duplicates on moves in the old folder it stays and in the new folder it's copied. Thi