Not is is related to django.....

A lot of email system stores email account   (not mailbox) in the
database. It is not hard task to create a  django class using database
which is used for  SMTP system.  Take a look at the next URL:
http://bowe.id.au/michael/isp/postfix-server.htm
part of mysql :
CREATE TABLE mailbox_domains (

    domain varchar(255) NOT NULL default '',
    description varchar(255) NOT NULL default 'Postfix virtual mailbox domain',
    maxaliases int(10) NOT NULL default '-1',
    maxmailboxes int(10) NOT NULL default '-1',


 and it is possible to create django model for this:

 class mailbox_domains(model.Models):
    domain=models.CharField(max_length=256)
    .......


 I think  idea is clear. But your mail server should use database  for
user auth and mailbox storing


 Thanks,
Serge






2011/6/10 Cal Leeming [Simplicity Media Ltd]
<cal.leem...@simplicitymedialtd.co.uk>:
> My apologies.
> I didn't realise I had accidently sent this email to the list, rather than
> directly to the OP.
> Thank you for letting me know.
> Cal
>
> On Fri, Jun 10, 2011 at 4:14 PM, Brian Bouterse <bmbou...@gmail.com> wrote:
>>
>> This conversation is off topic, and should not be facilitated through the
>> Django users mailing list.  There are sites setup for these kinds of things.
>> Brian
>>
>> On Fri, Jun 10, 2011 at 11:09 AM, Cal Leeming [Simplicity Media Ltd]
>> <cal.leem...@simplicitymedialtd.co.uk> wrote:
>>>
>>> Hey Lillian,
>>> I've noticed a few emails on the list from you.. Could you possibly
>>> explain a little bit about the situation you are currently in, and what it
>>> is you are looking for? I might be able to offer some assistance, depending
>>> on what the problem is.
>>> Cal
>>>
>>> On Fri, Jun 10, 2011 at 2:40 PM, lillian <lillian.cauldw...@gmail.com>
>>> wrote:
>>>>
>>>> Thanks for the recommendation.
>>>>
>>>> Any IT guys out there?
>>>>
>>>> Also, is it difficult to set up email accounts with Django or do I
>>>> require an IT guy for that as well?
>>>>
>>>> Need to set up some accounts and could use a little help.
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "Django users" group.
>>>> 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.
>>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "Django users" group.
>>> 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.
>>
>>
>>
>> --
>> Brian Bouterse
>> ITng Services
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> 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.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> 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.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
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.

Reply via email to