Re: SMTP configuration in a dict

2014-05-28 Thread Andi Albrecht
Hi, On Wed, May 28, 2014 at 1:06 PM, Julian Wachholz wrote: > Hi django-developers > > I'd like to propose a relatively small change to the way we configure our > SMTP email backends. > Up until now, configuring your SMTP backend took up to 6 individual > settings, ranging

Re: EmailBackends

2010-02-22 Thread Andi Albrecht
While discussing the implementation details of the email backends, Russel came up with a nice view on this topic: "If you have highly specialized mail requirements, then it makes sense that you should have a highly specialized mail server handling." [1] If I recall it correctly the consenus was

Re: django + memcached: problem with limit of 1 mb

2010-02-18 Thread Andi Albrecht
Items in memcached are limited to 1MB, see http://code.google.com/p/memcached/wiki/FAQ#Why_are_items_limited_to_1_megabyte_in_size? Andi On Thu, Feb 18, 2010 at 8:34 PM, ramu...@gmail.com

Re: Last chance to object to new features

2009-11-04 Thread Andi Albrecht
= 'django.core.mail.backends.locmem' mail.outbox = [] Sorry for pasting it here, but it's really just one line :) Andi On Tue, Nov 3, 2009 at 6:27 AM, Andi Albrecht <albrecht.a...@googlemail.com> wrote: > On Mon, Nov 2, 2009 at 4:53 PM, Jacob Kaplan-Moss <ja...@jacobian.org> wrote: >

Re: Last chance to object to new features

2009-11-04 Thread Andi Albrecht
On Tue, Nov 3, 2009 at 8:23 PM, Waldemar Kornewald wrote: > > On Tue, Nov 3, 2009 at 6:37 AM, Russell Keith-Magee > wrote: >> I've already integrated Jacob's comments into the code in my local >> checkout. Actually, Jacob's comments pointed out an

Re: Last chance to object to new features

2009-11-02 Thread Andi Albrecht
On Mon, Nov 2, 2009 at 4:53 PM, Jacob Kaplan-Moss wrote: > > On Mon, Nov 2, 2009 at 10:02 AM, Russell Keith-Magee > wrote: >> A quick reminder - if you have any objections or feedback on #10109, >> the M2M refactor [1], I intend to land this patch in

Re: Advocacy for Email-01 (email backends)

2009-10-30 Thread Andi Albrecht
On Fri, Oct 30, 2009 at 4:03 PM, Alex Gaynor wrote: > > On Fri, Oct 30, 2009 at 10:58 AM, Luke Plant wrote: >> >> On Sunday 25 October 2009 07:22:27 Russell Keith-Magee wrote: >> >>> I'm keen to see a resolution to this problem. To that end, I'm >>>

Re: non-relational DB

2009-10-22 Thread Andi Albrecht
On Thu, Oct 22, 2009 at 2:07 PM, Russell Keith-Magee wrote: > > On Thu, Oct 22, 2009 at 7:46 PM, Waldemar Kornewald > wrote: >> >> Hi again, >> now a little question: >> >> Some fields do type conversions. For example, TimeField converts >> datetime

Re: backend query_class() question

2009-09-02 Thread Andi Albrecht
AFAIKT query_class() is only used to set the Query attribute in django.db.models.sql.query. The relevant code part in sql.query is # Use the backend's custom Query class if it defines one. Otherwise, use the # default. if connection.features.uses_custom_query_class: Query =

Re: App Engine support

2009-08-30 Thread Andi Albrecht
On Sun, Aug 30, 2009 at 2:52 PM, Waldemar Kornewald wrote: > > On Aug 28, 1:49 am, Russell Keith-Magee > wrote: >> To the extent that I'm in a position to provide design guidance and >> feedback from the perspective of the Django Core, put me on this

Re: #10355 Add support for email backends

2009-08-24 Thread Andi Albrecht
available on bitbucket: http://bitbucket.org/andialbrecht/django_mailbackend_examples/ Andi On Sat, Aug 22, 2009 at 9:15 AM, Russell Keith-Magee<freakboy3...@gmail.com> wrote: > > On Sat, Aug 22, 2009 at 1:34 PM, Andi > Albrecht<albrecht.a...@googlemail.com> wrote: >> >

Re: #10355 Add support for email backends

2009-08-21 Thread Andi Albrecht
On Fri, Aug 21, 2009 at 1:45 PM, Russell Keith-Magee<freakboy3...@gmail.com> wrote: > > On Fri, Aug 21, 2009 at 5:53 PM, Zachary > Voase<zacharyvo...@googlemail.com> wrote: >> >> Hi Andi, >> >> On 21 Aug 2009, at 05:34, Andi Albrecht wrote: >>

Re: #10355 Add support for email backends

2009-08-21 Thread Andi Albrecht
On Fri, Aug 21, 2009 at 7:23 AM, Russell Keith-Magee<freakboy3...@gmail.com> wrote: > > On Fri, Aug 21, 2009 at 12:34 PM, Andi > Albrecht<albrecht.a...@googlemail.com> wrote: >> >> Hi, >> >> I'm interested in working on #10355 "Add support for ema

Re: #10355 Add support for email backends

2009-08-21 Thread Andi Albrecht
On Fri, Aug 21, 2009 at 11:53 AM, Zachary Voase<zacharyvo...@googlemail.com> wrote: > > Hi Andi, > > On 21 Aug 2009, at 05:34, Andi Albrecht wrote: > >> Hi, >> >> I'm interested in working on #10355 "Add support for email backends." >&

Re: #10355 Add support for email backends

2009-08-21 Thread Andi Albrecht
On Fri, Aug 21, 2009 at 12:39 PM, Tim Chase wrote: > >> In terms of the SMTP-specific settings (host, port, username, password >> and use_tls), I personally feel that those parameters should be in the >> settings module and not in the code. Although at the moment,

#10355 Add support for email backends

2009-08-20 Thread Andi Albrecht
Hi, I'm interested in working on #10355 "Add support for email backends." IMHO it's an good idea to make the email backend configurable. There are at least two use cases I can think of. The first is to send email with other services than SMTP, like App Engine as noted in the ticket's