Re: IMAP library

2015-04-14 Thread D Denizen since a year via Digitalmars-d-learn
On Tuesday, 14 April 2015 at 14:01:10 UTC, Jens Bauer wrote: On Tuesday, 14 April 2015 at 02:28:40 UTC, Laeeth Isharc wrote: My first 'open source' contribution was to a data structure in his BBS system a few years later. Those were the days. I wrote my own BBS for Atari ST in 1988 (which w

Re: IMAP library

2015-04-14 Thread Jens Bauer via Digitalmars-d-learn
On Tuesday, 14 April 2015 at 02:31:23 UTC, Adam D. Ruppe wrote: You might like my email.d too https://github.com/adamdruppe/arsd/blob/master/email.d It is able to help construct emails and also read an mbox format - part of that code might help your imap library too. This looks very nice. I

Re: IMAP library

2015-04-14 Thread Jens Bauer via Digitalmars-d-learn
On Tuesday, 14 April 2015 at 02:28:40 UTC, Laeeth Isharc wrote: My first 'open source' contribution was to a data structure in his BBS system a few years later. Those were the days. I wrote my own BBS for Atari ST in 1988 (which was never released to the public) - and I started writing a ma

Re: IMAP library

2015-04-13 Thread Laeeth Isharc via Digitalmars-d-learn
On Tuesday, 14 April 2015 at 02:31:23 UTC, Adam D. Ruppe wrote: You might like my email.d too https://github.com/adamdruppe/arsd/blob/master/email.d It is able to help construct emails and also read an mbox format - part of that code might help your imap library too. Thanks, Adam. Was just

Re: IMAP library

2015-04-13 Thread Adam D. Ruppe via Digitalmars-d-learn
You might like my email.d too https://github.com/adamdruppe/arsd/blob/master/email.d It is able to help construct emails and also read an mbox format - part of that code might help your imap library too.

Re: IMAP library

2015-04-13 Thread Laeeth Isharc via Digitalmars-d-learn
On Monday, 13 April 2015 at 18:03:12 UTC, Jens Bauer wrote: On Monday, 13 April 2015 at 14:31:56 UTC, Johannes Pfau wrote: Am Sun, 12 Apr 2015 17:27:31 + schrieb "Jens Bauer" : I won't say it's impossible, but it would be cumbersome processing email on an AVR. There are HTTP servers for

Re: IMAP library

2015-04-13 Thread Jens Bauer via Digitalmars-d-learn
On Monday, 13 April 2015 at 14:31:56 UTC, Johannes Pfau wrote: Am Sun, 12 Apr 2015 17:27:31 + schrieb "Jens Bauer" : I won't say it's impossible, but it would be cumbersome processing email on an AVR. There are HTTP servers for AVR(8bit) devices, so it should be possible. That's absolu

Re: IMAP library

2015-04-13 Thread Johannes Pfau via Digitalmars-d-learn
Am Sun, 12 Apr 2015 17:27:31 + schrieb "Jens Bauer" : > On Saturday, 11 April 2015 at 22:45:39 UTC, Laeeth Isharc wrote: > > > > Yes - nice to know it can do that also. For me I need to have > > a way of managing large amounts of email (I have about 2mm > > messages) including for natural l

Re: IMAP library

2015-04-12 Thread Laeeth Isharc via Digitalmars-d-learn
On Sunday, 12 April 2015 at 17:27:32 UTC, Jens Bauer wrote: I won't say it's impossible, but it would be cumbersome processing email on an AVR. I do miss the days of having to work within very real hardware constraints to achieve something only just about achievable. But part of the joy goe

Re: IMAP library

2015-04-12 Thread Jens Bauer via Digitalmars-d-learn
On Saturday, 11 April 2015 at 22:45:39 UTC, Laeeth Isharc wrote: Yes - nice to know it can do that also. For me I need to have a way of managing large amounts of email (I have about 2mm messages) including for natural language processing etc. Dovecot/sieve + pipe facility is ok, but not per

Re: IMAP library

2015-04-11 Thread Laeeth Isharc via Digitalmars-d-learn
Need to have some way of manipulating email in D though. I agree. This would especially be cool, if you can do it from a small device like a microcontroller! Yes - nice to know it can do that also. For me I need to have a way of managing large amounts of email (I have about 2mm messages)

Re: IMAP library

2015-04-10 Thread Jens Bauer via Digitalmars-d-learn
On Friday, 10 April 2015 at 19:59:49 UTC, Laeeth Isharc wrote: Started working on a simple one. Sounds very good to me. :) It's not exactly rocket science, but a bit fiddly. Simple is good. Need to have some way of manipulating email in D though. I agree. This would especially be cool,

IMAP library

2015-04-10 Thread Laeeth Isharc via Digitalmars-d-learn
Started working on a simple one. It's not exactly rocket science, but a bit fiddly. Need to have some way of manipulating email in D though. Is async important (so you can pipeline commands) and also multiple threads ? Or is a simple enough version useful as a start? If async (ie pipelinin