On 02/11/2014 09:16 AM, George Kasica wrote:
Currently have mailman working here with Postfix and MySQL and in the
transport it has


/etc/postfix/transport
lists.netwrx1.org     mailman:

I have a couple lists under the netwrx1.org domain here that are working
well and aliases look like the below but they are all under the
netwrx1.org setup:

INSERT INTO aliases (mail,destination) VALUES
('[email protected]','[email protected]'),
...

I want to add a couple lists with their own domains...would the aliases
look something like:

INSERT INTO aliases (mail,destination) VALUES
('[email protected]','[email protected]'),
...

OR would they be like this with the lists own domain and would I need to
do anything to transport or another setting??

INSERT INTO aliases (mail,destination) VALUES
('[email protected]','[email protected]'),
...


Based on what I can glean from your prior posts, the above are not Postfix aliases, but rather Postfix virtual domain mappings. I.e. the first set map list addresses in the virtual netwrx1.org domain of the form [email protected] into addresses in the real lists.netwrx1.org domain of the form [email protected].

Then the transport mapping

lists.netwrx1.org     mailman:

Tells postfix to deliver mail to the lists.netwrx1.org domain via the mailman transport which is postfix_to_mailman.py.

Assuming the above is correct, you can do either of your suggested mappings for the [email protected] list with the addition that mappings like

('[email protected]','[email protected]')

also require an additional

lists.petdiabetes.net   mailman:

entry in the transport table with the caveat that as with all postfix_to_mailman domains, the domain cannot have user addresses that aren't Mailman lists.

--
Mark Sapiro <[email protected]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan
------------------------------------------------------
Mailman-Users mailing list [email protected]
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to