How can you emulate a mailing list in Django?

I am working on a project that is trying to write down what constitutes the Mailing List application in Django, and we are facing several problems / questions.

Code that we still do not set with different List headers, and re-sets the To header as the person to whom we send it, instead of the address of the list.

Now we can do all these small details, but I was wondering if anyone had any code that already did such things that we could break out of, so we don’t have to go through all the trial and error. Specific RFC sections that showed us what we should send will also be useful.

Thanks
Blake.

+3
source share
3 answers

RFC 2919 contains some information and more links to this.

+1
source

How about http://labs.freehackers.org/projects/colibri/wiki It seems to do what you want: a mailing list manager with django interface.

+3
source

Have you watched majordomo or mailman ?

+1
source

Source: https://habr.com/ru/post/1699215/


All Articles