@@ -470,27 +470,27 @@ level = {{ logging__level }}
470470# explicitly include a domain.
471471# Do not include the '@' symbol.
472472# Default: NO DEFAULT
473- domain = {{ pillar.get('roundup_secrets', {}).get('mail__domain ', 'roundup.psfhosted.org') }}
473+ domain = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('domain ', 'roundup.psfhosted.org') }}
474474
475475# SMTP mail host that roundup will use to send mail
476476# Default: NO DEFAULT
477- host = {{ pillar.get('roundup_secrets', {}).get('mail__host ', 'localhost') }}
477+ host = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('host ', 'localhost') }}
478478
479479# SMTP login name.
480480# Set this if your mail host requires authenticated access.
481481# If username is not empty, password (below) MUST be set!
482482# Default:
483- username = {{ pillar.get('roundup_secrets', {}).get('mail__username ', '') }}
483+ username = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('username ', '') }}
484484
485485# SMTP login password.
486486# Set this if your mail host requires authenticated access.
487487# Default: NO DEFAULT
488- password = {{ pillar.get('roundup_secrets', {}).get('mail__password ', '') }}
488+ password = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('password ', '') }}
489489
490490# Default port to send SMTP on.
491491# Set this if your mail server runs on a different port.
492492# Default: 25
493- port = {{ pillar.get('roundup_secrets', {}).get('mail__port ', '25') }}
493+ port = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('port ', '25') }}
494494
495495# The local hostname to use during SMTP transmission.
496496# Set this if your mail server requires something specific.
@@ -501,7 +501,7 @@ local_hostname = {{ mail__local_hostname }}
501501# (Transport Layer Security) then set this option to 'yes'.
502502# Allowed values: yes, no
503503# Default: no
504- tls = {{ pillar.get('roundup_secrets', {}).get('mail__tls ', 'no') }}
504+ tls = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('tls ', 'no') }}
505505
506506# If TLS is used, you may set this option to the name
507507# of a PEM formatted file that contains your private key.
0 commit comments