Skip to content

Commit

Permalink
Typo in master.cf for automatic list configuration (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedas committed Aug 25, 2022
1 parent 928f835 commit e3d869d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions manual/customize/automatic-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ First of all we configure our MTA to deliver mail to `'auto-*`' to `familyqueue`
...
transport_maps = regexp:/etc/postfix/transport_regexp
local_recipient_maps = pcre:/etc/postfix/local_recipient_regexp unix:passwd.byname $alias_maps
sympa_destination_recipient_limit = 1
sympabounce_destination_recipient_limit = 1
sympafamily_destination_recipient_limit = 1
```
/etc/postfix/transport_regexp
``` code
Expand All @@ -57,9 +60,9 @@ local_recipient_maps = pcre:/etc/postfix/local_recipient_regexp unix:passwd.byna
sympa unix - n n - - pipe
flags=hqRu null_sender= user=sympa argv=$LIBEXECDIR/queue ${recipient}
sympabounce unix - n n - - pipe
flags=hqRu null_sender= user=sympa argv=$LIBEXECDIR/bouncequeue ${user}
flags=hqRu null_sender= user=sympa argv=$LIBEXECDIR/bouncequeue ${recipient}
sympafamily unix - n n - - pipe
flags=hqRu null_sender= user=sympa argv=$LIBEXECDIR/familyqueue ${user} age-occupation
flags=hqRu null_sender= user=sympa argv=$LIBEXECDIR/familyqueue ${recipient} age-occupation
```

A mail sent to `auto-cto.50@lists.domain.com` will be queued to the [``$SPOOLDIR``](../layout.md#spooldir)`/automatic` spool, defined by the `queueautomatic` `sympa.conf` parameter (see [`queueautomatic`](/gpldoc/man/sympa_config.5.html#queueautomatic)). The mail will first be processed by an instance of the `sympa.pl` process dedicated to automatic list creation, then the mail will be sent to the newly created mailing list.
Expand Down

0 comments on commit e3d869d

Please sign in to comment.