Hi.
First of all:
Please turn OFF HTML-formatting for E-Mails. It's an ugly nonsense.
Am Dienstag, 24. Juli 2007 schrieb Daniele Piaggesi:
does anyone have instructions or guides on how to integrate mailman
with courier mta?
I don't know if this is the finest way, but I made it like that:
- create a user "mailman" who owns all the mailman stuff (this is from mailman
install instructions
- copy ./bin/qmail-to-mailman.py to courier-to-mailman.py
- Inside this script, change the lines with "qmail-inject" to "sendmail" [1]
(Don't forget to check MailmanOwner and the other vars around it also!)
- put this in .courier-default in mailman's home directory:
|preline -f ./bin/courier-to-mailman.py
- all domains that should be handled by mailman get an entry in "aliases" file
@lists.domain.tld: mailman
(don't forget to run makealiases and change your esmtpacceptmailfor-settings
if needed!)
[1] Relevant part of my diff:
@@ -70,8 +70,8 @@
"abuse")
for i in names:
if i == local:
- os.execv("/var/qmail/bin/qmail-inject",
- ("/var/qmail/bin/qmail-inject", MailmanOwner))
+ os.execv("/usr/bin/sendmail",
+ ("/usr/bin/sendmail", MailmanOwner))
sys.exit(0)
type = "post"
cu, Bernd