Num ber wrote:
(Sorry for the last message, it's was not readable !! )
Hello,I'm sorry i know that the question was already asked, but i have try
manything, and no one work..
I'm try to have mailman with postfix..
I use Postfix with mysql, and for my domaine everything work perfectly..
Now i have do that :Add mailman aliases and virtual-mailman to main.cf, but i
always have the same error :
_____
Aug 18 12:13:29 soez postfix/pipe[2699]: 9445DAE578: to=, relay=maildrop, delay=0.19,
delays=0.03/0.02/0/0.14, dsn=5.1.1, status=bounced (user unknown. Command output: Invalid user specified. )
_____
This is my configuration file :
____
alias_maps = hash:/etc/aliases, hash:/etc/mailman/aliases
mydestination = $myhostname, localhost.$mydomain, localhost
mydomain = soez.be
myhostname = mail.soez.be
myorigin = $mydomainnew
virtual_alias_maps =
proxy:mysql:/etc/postfix/sql/mysql_virtual_alias_maps.cf,hash:/etc/mailman/virtual-mailman
virtual_gid_maps = static:9000
virtual_mailbox_base = /
virtual_mailbox_domains =
proxy:mysql:/etc/postfix/sql/mysql_virtual_domains_maps.cf
virtual_mailbox_maps =
proxy:mysql:/etc/postfix/sql/mysql_virtual_mailbox_maps.cf
virtual_transport = maildrop
virtual_uid_maps = static:9000
_________
# cat /etc/mailman/virtual-mailman
# This file is generated by Mailman, and is kept in sync with the binary hash
# file virtual-mailman.db. YOU SHOULD NOT MANUALLY EDIT THIS FILE unless you
# know what you're doing, and can keep the two files properly in sync. If you
# screw it up, you're on your own.
## Note that you should already have this virtual domain set up properly in
# your Postfix installation. See README.POSTFIX for details.
# LOOP ADDRESSES [EMAIL PROTECTED] mailman-loop
# LOOP ADDRESSES END# STANZA START: mailman
# CREATED: Mon Aug 18 12:19:41 [EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
mailman-unsubscribe
# STANZA END: mailman
__________
What can i do to make this working ?
I'm sorry if it's a beginner question, but i'm really lost..
Thanks for all, and sorry for the bad english..
_________________________________________________________________
Des programmes gratuits pour partager vos photos d'été… Et bien plus encore !
http://get.live.com/fr-be/WL/config_all
First, understand that you need rewrite the destination in
/etc/mailman/virtual-mailman to a domain listed in mydestination.
This allows alias_maps to come into play because it is otherwise skipped
by the virtual_transport.
Example:
mydestination = $myhostname, localhost.$mydomain, localhost, lists.$mydomain
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
You can also just publish the list as <listname>@lists.soez.be and list
lists.soez.be in mydestination, instead of keeping a virtual alias list
updated.
Brian