I don't know of any. (Nothing comes up on http://www.djangopackages.com/grids/g/email/) But I might be able to say why you might not find any.
Desktop e-mail clients usually consist of the interface plus a local cache. The client connects to the mail storage and (via POP or IMAP) retrieves what messages there are, and may retrieve a copy of the messages, and cache them for quicker access and indexing. Conversely, a web based client often does _not_ include a cache, but instead simply uses a connection to the mail storage via IMAP as its database, which still has some rudimentary features such as searching and indexing, etc. So, why bother having a separate database if IMAP does just about all you need? And since there's no local database, the actual web app itself becomes stateless, and thus a lot of Django's benefit is not used. Sure, there can be some.. such as maintaining session state separately from the IMAP connection. On Tuesday, December 18, 2012 8:02:13 AM UTC-8, davidjensen wrote: > > I am using the mailgun emailserver which has an api but not a web gui. > mailgun suggests using an desktop client. Are there web guis for email > servers written for django? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/zG_u_hJtpLAJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.