WIP: nyarlathotep: cleanup after deployment #55
1 changed files with 2 additions and 3 deletions
|
@ -214,9 +214,8 @@ in {
|
||||||
++ ["sieve.trusted.*"]; #for macros to be able to include our redirection script
|
++ ["sieve.trusted.*"]; #for macros to be able to include our redirection script
|
||||||
sieve.trusted = {
|
sieve.trusted = {
|
||||||
scripts.redirects.contents = "%{file:/tmp/virt_aliases}%"; # generated redirect script
|
scripts.redirects.contents = "%{file:/tmp/virt_aliases}%"; # generated redirect script
|
||||||
from-addr = "sender"; # set the from-address to the original sender as specified in the MAIL FROM.
|
return-path = "sender"; # set the outgoing MAIL FROM to the original sender as specified in the incoming MAIL FROM.
|
||||||
Gonne marked this conversation as resolved
Outdated
|
|||||||
from-name = "sender";
|
|
||||||
Gonne marked this conversation as resolved
Outdated
nerf
commented
I couldn't figure out what I couldn't figure out what `from-name` or `from-addr` actually do. Reading the documentation I believe combined they
set the default value for the `From:` header of a generated mail. But I couldn't verify this in tests.
Maybe it does something different that has to do with the `MAIL FROM:` see comment below
|
|||||||
return-path = "sender";
|
|
||||||
# If we are the sender, we sign the message with DKIM. Else we leave it alone.
|
# If we are the sender, we sign the message with DKIM. Else we leave it alone.
|
||||||
Gonne marked this conversation as resolved
Outdated
nerf
commented
This seems to do what we want, even though the documentation reads like it sets the This seems to do what we want, even though the documentation reads like it sets the `Return-Path:` header. But it seems to set the reverse path (which is the argument to the `MAIL FROM:` smtp command). Maybe it does both?
nerf
commented
This parameter seems to control the This parameter seems to control the `MAIL FROM:` and with this all the headers we want to set.
The documentation reads to me as if it sets the `Return-Path:` header. I'm unsure if it actually does it.
|
|||||||
sign = [
|
sign = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue
the
trusted
part is to much, also see the comment atfrom-name
below