Skip to content

Commit

Permalink
Fix email routing settings
Browse files Browse the repository at this point in the history
  • Loading branch information
linyinfeng committed Jan 27, 2024
1 parent 5416267 commit 63dba32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloudflare.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "cloudflare_email_routing_rule" "postmaster" {
matcher {
type = "literal"
field = "to"
value = "postmaster@li7g.com"
value = "postmaster@njulug.org"
}
action {
type = "forward"
Expand All @@ -77,15 +77,15 @@ resource "cloudflare_email_routing_rule" "admin" {
matcher {
type = "literal"
field = "to"
value = "admin@li7g.com"
value = "admin@njulug.org"
}
action {
type = "forward"
value = ["[email protected]"]
}
}

resource "cloudflare_email_routing_catch_all" "li7g" {
resource "cloudflare_email_routing_catch_all" "njulug" {
zone_id = cloudflare_zone.njulug-org.id
name = "catch all"
enabled = true
Expand Down

0 comments on commit 63dba32

Please sign in to comment.