Re: Pyramid and Mass mailing tool

2013-03-28 Thread Carlos Daniel Ruvalcaba Valenzuela
You are probably better off using a service such as sendgrid, mailchip, etc. Usually mass mailing (even if not spam) is a very good way of having your host blacklisted pretty fast :-), also having to setup your own mail server and all that. If you want something simple you can try using

Re: pylons + nginx error 404 not found for all styles, scripts, images

2012-11-17 Thread Carlos Daniel Ruvalcaba Valenzuela
The answer is simple, your current setup is not serving any css, js or any other static files, set nginx to serve your static files folder. For example, add inside your server section: location /static { alias /path/to/my/static/files; expires 1d; } On Sat, Nov

Re: Turbogears to Pyramid

2012-02-01 Thread Carlos Daniel Ruvalcaba Valenzuela
I think a sensible approach is to stay with turbogears if you have already invested time on it for that project, turbogears is not going anywhere any time soon, recent development has even decoupled the codebase from pylons if that is what bothers you, but if all you want is to migrate it to

Re: Pyramid Integration with Celery

2012-01-28 Thread Carlos Daniel Ruvalcaba Valenzuela
Nice, this should really help ease development with celery and pyramid, a pypi release should speedup testing also making the license terms clearer would be good also :) Overall nice work, I will test it soon on a small app I have on production to see how it handles. Regards, Carlos Daniel