On Tue, Aug 29, 2017 at 09:10:26PM +0000, Tom Browder wrote: > On Tue, Aug 29, 2017 at 15:46 Wietse Venema <wie...@porcupine.org> wrote: > > > Tom Browder: > > > It's clear that list items in main.cf can be comma or space separated. > > Is > > > that also true for alias and virtual lists? > > > > What is an alias or virtual list? > > > I mean the RHS of aliases, e.g., as in simple mailing lists in the alias > file: > > needles: > j...@examp.com > bu...@foo.com
Use commas, that's the separator in lists of email addresses in RFC2822 headers, and is also used by the Postfix *SQL and LDAP drivers to translate multiple results into a list of addresses. You can add spaces after commas for readability, you can also fold lines, which makes "diffs" easier to read. aliases: users: moe, larry, curly virtual: us...@example.com m...@example.com, la...@example.com, cu...@example.com -- Viktor.