Use split function instead of filter, which isn't compatible with Debian's ansible
This commit is contained in:
parent
6a8c5893d4
commit
24282145e2
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# neomuttrc file for {{ account.fulladdress }}
|
||||
|
||||
set hostname = "{{ account.fulladdress | split('@') | last }}"
|
||||
set hostname = "{{ account.fulladdress.split('@') | last }}"
|
||||
|
||||
# SMTP
|
||||
#set sendmail = "msmtp -a {{ account.fulladdress }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue