summaryrefslogtreecommitdiffstats
path: root/mailmap.toml
blob: eecd9f2be1eaa37e28a8432accf24f404a9c1791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# All mailing lists managed on Mailgun.
#
# This file is synchronized to configuration on Mailgun via Travis whenever a
# commit is pushed to master. Travis just runs `cargo run` for this. The
# configuration for this file is one top-level key, `lists`, which is an array
# of mailing lists.
#
# Each mailing list has three keys:
#
#   * `address` - the email address of this mailing list (including the domain)
#   * `access_level` - one of the following:
#       * `readonly` - only authenticated users can post
#       * `members` - only members can post to the list
#       * `everyone` - anyone can post to the list
#   * `members` - an array of email addresses to forward mail to
#
# All mailing lists behave the same way. When an email is received it then
# broadcasts the email to all users of the mailing list.
#
#
# Current list of domains you can choose from:
#
#   * rustlang.com
#   * rustlang.net

[[lists]]
address = 'test@rustlang.com'
access_level = 'everyone'
members = [
  'acrichton@mozilla.com',
]

[[lists]]
address = 'recursive@rustlang.com'
access_level = 'everyone'
members = [
  'test@rustlang.com',
]

[[lists]]
address = 'test-another-domain@rustlang.net'
access_level = 'everyone'
members = [
  'test@rustlang.com',
  'acrichton@mozilla.com',
]