Re: Send mail bug needs password passed as bytearray

2017-02-01 Thread elliot
Thanks for getting back to me. I guess I have gotten myself confused. Im using 1.10.5 and have been looking at the master version on github. My work around has the emails working so I'll just leave it and get with the times and work with python 3 in the future. On Thursday, February 2, 2017 a

Re: Send mail bug needs password passed as bytearray

2017-02-01 Thread Tim Graham
Following the Django 1.11 alpha release, the stable/1.11.x branch was created and master became Django 2.0 pre-alpha. You can read more details about how that works at https://docs.djangoproject.com/en/dev/internals/release-process/#release-process On Tuesday, January 31, 2017 at 9:24:13 PM UTC

Re: Send mail bug needs password passed as bytearray

2017-01-31 Thread elliot
Really? I should look at moving to python 3 but my understanding was that python 2.7 would be supported until Django 2.0 according to the docs On Wednesday, February 1, 2017 at 1:21:21 PM UTC+13, Tim Graham wrote: > > Oh, I see, you're using

Re: Send mail bug needs password passed as bytearray

2017-01-31 Thread Tim Graham
Oh, I see, you're using bytearray to try to workaround the issue. Well, Django master no longer supports Python 2.7, that's why force_str() was removed. Is there a problem with Django master and Python 3? On Tuesday, January 31, 2017 at 7:16:41 PM UTC-5, ell...@makecollective.co.nz wrote: > > N

Re: Send mail bug needs password passed as bytearray

2017-01-31 Thread elliot
Neither. I haven't seen anything with webfaction and I have used webfaction in the past on several projects and not had any trouble. On Wednesday, February 1, 2017 at 12:12:56 PM UTC+13, Tim Graham wrote: > > I've never seen a password as a bytearray. Is there webfaction > documentation about t

Re: Send mail bug needs password passed as bytearray

2017-01-31 Thread Tim Graham
I've never seen a password as a bytearray. Is there webfaction documentation about this? On Tuesday, January 31, 2017 at 6:06:04 PM UTC-5, ell...@makecollective.co.nz wrote: > > myMail = EmailMessage('subject', 'message', 'some...@address.com > ', ['mye...@address.com ']) > myMail.send() > > Th

Send mail bug needs password passed as bytearray

2017-01-31 Thread elliot
myMail = EmailMessage('subject', 'message', 'someem...@address.com', ['myem...@address.com']) myMail.send() The error I'm getting: File "/Users/Elliot/.virtualenvs/allright/lib/python2.7/site-packages/django/core/mail/message.py" , line 342, in send return self.get_connection(fail_silent