Python SMTP Server that uses a modern web application framework design
Questions tagged [lamson]
13 questions
5
votes
2 answers
Process dynamic email addresses using python
I need to do the following and I was wondering if anyone has done something similar, and if so what they did.
I need to write a program that will handle incoming emails for different clients, process them, and then depending on the email address, do…

Ken Cochrane
- 75,357
- 9
- 52
- 60
4
votes
1 answer
Can Lamson run under TLS/SSL and authenticate users?
I can't find anything about users authenticating themselves before being able to send mail to Lamson. The only SSL/TLS mention I found is in Relay class, which I understand runs after Lamson finishes processing the message. I want Lamson to check…

Baczek
- 1,179
- 1
- 13
- 23
4
votes
1 answer
Lamson for clojure?
Are there any java or clojure mail libraries out there that do what lamson does? In particular, the mail routing features of lamson are very cool http://verpa.wordpress.com/2010/11/13/making-your-webapp-react-to-emails-with-lamson-pt-2/ are there…

zcaudate
- 13,998
- 7
- 64
- 124
2
votes
0 answers
How do I setup Lamson to use DKIM signatures?
I would like to use Lamson (lamsonproject.org) to use DKIM signing but I cannot find any information about this in their documentation or generally online.
Could someone suggest a starting point please?

Edvinas
- 725
- 6
- 8
2
votes
2 answers
Sending mail with python - how to set Return-Path that is different from 'From' address
What im trying to do is to set up smail mail server with lamson (lamsonproject.org). Its working very well, but i have problem with setting return path and for that reason, bounces are going to 'From' address and therefore not reaching my mail…

Odif Yltsaeb
- 5,575
- 12
- 49
- 80
2
votes
0 answers
Lamson for multiple Django projects
I'd like to know how to use Django and Lamson together in such a way that Lamson can utilize several Django projects.
I have several Django websites running on my server (e.g., domain1.com, domain2.com and domain3.com). I'm using virtual hosts for…

Jaakko Luttinen
- 695
- 2
- 7
- 21
1
vote
1 answer
Lamson (Python SMTP Server) Error
I've installed Lamson via easy_install on my webfaction shared hosting. Went to do the '30 Second Introduction' (See http://lamsonproject.org/docs/getting_started.html) but after:
[almacmillan@web129 python2.6]$ lamson gen -project mymailserver
I…

handloomweaver
- 4,971
- 7
- 29
- 33
1
vote
0 answers
How to set mails undeliverable in Lamson/Salmon handlers?
Lamson/Salmon puts mails into undeliverable queue if no handler matches. However, I can't do this matching entirely using regex for the route decorator, because I need to validate the address using information from, for instance, a database. Thus, I…

Jaakko Luttinen
- 695
- 2
- 7
- 21
1
vote
0 answers
launch lamson as a process
Can I programmatically launch the lamson SMTP server from inside my python code?
it cam be launched from the command line as:
lamson start
but , I want to launch it from code using the multiprocess package
from multiprocessing import Process
…

Joseph
- 3,085
- 3
- 23
- 33
0
votes
1 answer
Lamsonproject - how to test the changes in the core?
I'm extending the core of lamson server because I need it. What I need is to test it whether I've do it right or wrong by sending the SMTP and ESTMP commands to it such as HELO, EHLO and others and retrieving a reply from it. It's hosted on…

Incerteza
- 32,326
- 47
- 154
- 261
0
votes
1 answer
Why lamson and sendmail can listen to port 25 the same time?
I started sendmail at port 25.
Then started lamson (another SMTP server) at port 25.
They both worked.
Why they can listen to the same port?

Bruce Dou
- 4,673
- 10
- 37
- 56
0
votes
1 answer
lamson: mail address format
I'm using Lamson SMTP server with a Queue receiver for a project. It works fine, but from time to time, I get weird address emails in the "to" and "cc" headers from the email sent with mutt, with the default testing environment.
ex. an email sent to…

user19304
- 55
- 4
0
votes
1 answer
Hooking up lamson with django 1.4
I'm trying to hook-up lamson with django 1.4.
I've seen the documentation on hooking up lamson with django and the librelist example from the source, but it seems to use a previous version of django.
I have created a "webapp" project that contains…

user19304
- 55
- 4