email testing: Store the SMTP settings in dev-secrets.

It's super annoying to set this up each time I have to test
email templates in gmail.
This commit is contained in:
Vishnu KS
2020-10-30 17:26:23 +05:30
committed by Tim Abbott
parent 95cd031274
commit 7a6285ede7
3 changed files with 39 additions and 9 deletions

View File

@@ -661,7 +661,7 @@ markdown_rules = RuleList(
{'pattern': r'\[(?P<url>[^\]]+)\]\((?P=url)\)',
'description': 'Linkified Markdown URLs should use cleaner <http://example.com> syntax.'},
{'pattern': 'https://zulip.readthedocs.io/en/latest/[a-zA-Z0-9]',
'exclude': {'docs/overview/contributing.md', 'docs/overview/readme.md', 'docs/README.md'},
'exclude': {'docs/overview/contributing.md', 'docs/overview/readme.md', 'docs/README.md', 'docs/subsystems/email.md'},
'include_only': {'docs/'},
'description': "Use relative links (../foo/bar.html) to other documents in docs/",
},