brechmos

Results 13 comments of brechmos

@glynjackson I am late to this part too and believe that I might be seeing a similar issue (just posted an Issue, then saw this one). Can you expand on...

Here is my customauth/models.py file: ``` $ cat customauth/models.py from django.db import models # Create your models here. from django.db import models from django.contrib.auth.models import ( BaseUserManager, AbstractBaseUser ) class...

Sadly it didn't seem to work: ``` TENANT_MODEL = "customers.Client" AUTH_USER_MODEL = 'customauth.MyUser' # Application definition SHARED_APPS = ( 'tenant_schemas', # mandatory 'customers', # you must list the app where...

Would you mind posting the full custom user models.py and site settings.py files (for some reason I am still getting the unknown app issue, so I must have something different...

Just to put this to rest now. I finally figured out one issue and might have been my issue. I was clearing out the migrations directory (including the **init**.py file)....

@mikeharvey: Did you get this worked out? I have exactly the same error.

I am in the same boat (185,000 email to transfer though). I was watching my Spam as the transfer was happening and saw some go in and then automatically go...

Definitely good ideas. :)

I am having the same issue of text disappearing when I use the "scheduled" part. Sometimes all the text will disappear, sometimes a few words and sometimes none. It is...

The part that isn't working currently is in `imap_utils.py`: ``` class GIMAPFetcher(object): #pylint:disable=R0902,R0904 ''' IMAP Class reading the information ''' GMAIL_EXTENSION = b'X-GM-EXT-1' # GMAIL capability GMAIL_ALL = '[Gmail]/All Mail'...