-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BACK-2760] Punycode email addresses before sending. #132
base: master
Are you sure you want to change the base?
Conversation
b66697c
to
dc62ca1
Compare
dc62ca1
to
ee82f9b
Compare
clients/sesNotifier.go
Outdated
@@ -78,7 +83,11 @@ func NewSesNotifier(cfg *SesNotifierConfig, log *zap.SugaredLogger) (*SesNotifie | |||
func (c *SesNotifier) Send(to []string, subject string, msg string) (int, string) { | |||
var toAwsAddress = make([]*string, len(to)) | |||
for i, x := range to { | |||
toAwsAddress[i] = aws.String(x) | |||
encodedAddress, err := idna.ToASCII(x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should apply the same changes to mailer, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should apply the same changes to mailer, right?
It's already applied and merged on mailer becda4799c26
/deploy dev1 hydrophone |
/deploy dev hydrophone |
lostlevels updated values.yaml file in dev1 |
lostlevels updated flux policies file in dev1 |
lostlevels deployed hydrophone punycode-email-addresses branch to dev1 namespace |
/deploy qa1 hydrophone |
lostlevels updated values.yaml file in qa1 |
lostlevels updated flux policies file in qa1 |
lostlevels deployed hydrophone punycode-email-addresses branch to qa1 namespace |
3a7f0a2
to
215592d
Compare
No description provided.