Re: Resubmission after N days

2015-02-06 Thread Håkon Alstadheim
On 04. feb. 2015 07:01, Thomas Güttler wrote: Hi, I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this mail in 5 days. - Now I want to have some sort

Re: Resubmission after N days

2015-02-06 Thread Mihai Badici
On Wednesday 04 February 2015 07:01:14 Thomas Güttler wrote: Hi, I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this mail in 5 days. - Now I

Re: Resubmission after N days

2015-02-05 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 5 Feb 2015, Thomas Güttler wrote: Am 05.02.2015 um 12:18 schrieb Steffen Kaiser: On Thu, 5 Feb 2015, Thomas Güttler wrote: What specific action shall be done via IMAP? The move? Then use any IMAP client library, use the LIST command to get

Re: Resubmission after N days

2015-02-05 Thread Håkon Alstadheim
On 05. feb. 2015 22:29, Thomas Güttler wrote: Am 05.02.2015 um 12:18 schrieb Steffen Kaiser: On Thu, 5 Feb 2015, Thomas Güttler wrote: What specific action shall be done via IMAP? The move? Then use any IMAP client library, use the LIST command to get the mailboxes, FETCH to get the messages

Re: Resubmission after N days

2015-02-05 Thread Thomas Güttler
Am 05.02.2015 um 12:18 schrieb Steffen Kaiser: On Thu, 5 Feb 2015, Thomas Güttler wrote: What specific action shall be done via IMAP? The move? Then use any IMAP client library, use the LIST command to get the mailboxes, FETCH to get the messages and COPY/EXPUNGE to move them. You are

Re: Resubmission after N days

2015-02-05 Thread Håkon Alstadheim
On 05. feb. 2015 08:59, Steffen Kaiser wrote: On Wed, 4 Feb 2015, Thomas Güttler wrote: Am 04.02.2015 um 07:49 schrieb Steffen Kaiser: On Wed, 4 Feb 2015, Thomas Güttler wrote: I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new

Re: Resubmission after N days

2015-02-05 Thread Thomas Güttler
What specific action shall be done via IMAP? The move? Then use any IMAP client library, use the LIST command to get the mailboxes, FETCH to get the messages and COPY/EXPUNGE to move them. You are right moving the mail should be simple. I ask myself it is possible to store the date of the

Re: Resubmission after N days

2015-02-05 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 5 Feb 2015, Thomas Güttler wrote: What specific action shall be done via IMAP? The move? Then use any IMAP client library, use the LIST command to get the mailboxes, FETCH to get the messages and COPY/EXPUNGE to move them. You are right

Re: Resubmission after N days

2015-02-04 Thread Thomas Güttler
Am 04.02.2015 um 07:49 schrieb Steffen Kaiser: On Wed, 4 Feb 2015, Thomas Güttler wrote: I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this

Re: Resubmission after N days

2015-02-04 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 4 Feb 2015, Thomas Güttler wrote: Am 04.02.2015 um 07:49 schrieb Steffen Kaiser: On Wed, 4 Feb 2015, Thomas Güttler wrote: I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new

Re: Resubmission after N days

2015-02-04 Thread LuKreme
On 03 Feb 2015, at 23:49 , Steffen Kaiser skdove...@smail.inf.fh-brs.de wrote: What mail storage are you using? With Maildir all messages are plain files, you could move those messages into a specific folder and do: find /path/to/folder -mtime +$days -print0 | \ xargs -r0 mv -t

Resubmission after N days

2015-02-03 Thread Thomas Güttler
Hi, I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this mail in 5 days. - Now I want to have some sort of resubmission: the mail should be moved to a

AW: Resubmission after N days

2015-02-03 Thread André Peters
Hi, Sounds to me like it can be implemented using sieve. Something like if is in inbox is read is older than n days; then mark as unread. But this means you need to redeliever this mail somehow. Maybe like this: http://serverfault.com/questions/418681/run-sieve-on-maildir

Re: Resubmission after N days

2015-02-03 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 4 Feb 2015, Steffen Kaiser wrote: On Wed, 4 Feb 2015, Thomas Güttler wrote: I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't

Re: Resubmission after N days

2015-02-03 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 4 Feb 2015, Thomas Güttler wrote: I would like to implement a 43Folder system[1] with dovecot and a mail user agent. Use case: - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this mail in

Re: AW: Resubmission after N days

2015-02-03 Thread Randall Gellens
Is there an extension to allow Sieve to reprocess messages? Normally, Sieve is executed as new messages arrive. Once the message is filed or rejected, Sieve is done and won't get called again on the same message. Now, you could have some other external script that checked periodically for the