@@ -470,27 +470,27 @@ level = {{ logging__level }}
470
470
# explicitly include a domain.
471
471
# Do not include the '@' symbol.
472
472
# 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') }}
474
474
475
475
# SMTP mail host that roundup will use to send mail
476
476
# 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') }}
478
478
479
479
# SMTP login name.
480
480
# Set this if your mail host requires authenticated access.
481
481
# If username is not empty, password (below) MUST be set!
482
482
# Default:
483
- username = {{ pillar.get('roundup_secrets', {}).get('mail__username ', '') }}
483
+ username = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('username ', '') }}
484
484
485
485
# SMTP login password.
486
486
# Set this if your mail host requires authenticated access.
487
487
# Default: NO DEFAULT
488
- password = {{ pillar.get('roundup_secrets', {}).get('mail__password ', '') }}
488
+ password = {{ pillar.get('roundup_secrets', {}).get('mail', {}).get(tracker, {}).get('password ', '') }}
489
489
490
490
# Default port to send SMTP on.
491
491
# Set this if your mail server runs on a different port.
492
492
# 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') }}
494
494
495
495
# The local hostname to use during SMTP transmission.
496
496
# Set this if your mail server requires something specific.
@@ -501,7 +501,7 @@ local_hostname = {{ mail__local_hostname }}
501
501
# (Transport Layer Security) then set this option to 'yes'.
502
502
# Allowed values: yes, no
503
503
# 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') }}
505
505
506
506
# If TLS is used, you may set this option to the name
507
507
# of a PEM formatted file that contains your private key.
0 commit comments