Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/submit_email/web/submit_email.py

Issue 29323033: Issue 2846 - Service for processing Microsoft Edge announcement subscription (Closed)
Patch Set: Created July 30, 2015, 1:30 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/submit_email/template/edge_verification.mail ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/submit_email/web/submit_email.py
===================================================================
--- a/sitescripts/submit_email/web/submit_email.py
+++ b/sitescripts/submit_email/web/submit_email.py
@@ -49,8 +49,14 @@
if lang:
params.append(('lang', lang))
+ if data.get('edge', '') == '':
Sebastian Noack 2015/08/12 08:53:03 I'd rather not hard-code "edge" here. How about ca
+ email_template = 'verification_email_template'
+ else:
+ email_template = 'edge_verification_email_template'
+ params.append(('edge', 'true'))
+
sendMail(
- config.get('submit_email', 'verification_email_template'),
+ config.get('submit_email', email_template),
{
'recipient': email,
'verification_url': '%s?%s' % (
@@ -79,7 +85,11 @@
'Invalid signature in verification request.'
)
- filename = config.get('submit_email', 'filename')
+ if params.get('edge', '') == 'true':
+ filename = config.get('submit_email', 'edge_filename')
+ else:
+ filename = config.get('submit_email', 'filename')
+
with open(filename, 'ab', 0) as file:
fcntl.lockf(file, fcntl.LOCK_EX)
try:
« no previous file with comments | « sitescripts/submit_email/template/edge_verification.mail ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld