e.g. if you add a Foo header, before parse, and do remove('foo'), should that remove the one you added, or ignore more coming in when you parse, or both?
bramzor
Should not allow adding multiple From headers for example.
And you can expect that there is always at least one From
Do I need to use aliases or can I just remove the To header and add a different To header?
Because I don't like that you can't add a name <email> alias.
_smf_
baudehlo: it would only ignore headers coming in from the stream
bramzor
show something if you ignore something...
Nice module btw. Might only be handy for the newbies on the block to have some kind of tutorial showing how to start a server, add custom module, how to use hooks and which order the plugin config file needs to have etc.
_smf_
bramzor: you're making the same mistake everyone makes when they work on e-mail
The headers of a message have absolutely *nothing* to do with the routing of the message.
You could change the From: header to whatever you like and it would make absolutely no difference.
To change the actual recipient; you have to change the message envelope recipients which is what is specified by the RCPT TO: command and stored in txn.rcpt_to
bramzor
Just need to change it for privacy reasons. Have to hide the From: so I'm replacing it with a different one.
_smf_
Right - you can do that. Absolutely.
bramzor
Ah, you are referring to the aliases part?
That changing the To would not change the routing?
bramzor: Yeah - changing the To: header will do nothing for the routing.
girishr
i.e why not change connection.js to say if (this.relaying && !me_domain) { queue_outbound } else { queue }
_smf_
girishr: because it would fundimentally change how Haraka works and would likely cause quite a bit of breakage.
We might do that in 3.0 ....
girishr
the extra mx lookup is not a problem for me but it does makes it hard for me to test same domain mail delivery
by test i mean i have automated tests...
i could have sworn i saw some mechanim to overwrite mx records
but i cannot find it anymore
ah, i think rcpt_to.routes is probably what i want
nedry_ joined the channel
piklu has quit
zombified has quit
darkpixel has quit
Night__ has quit
darkpixel2k joined the channel
darkpixel2k is now known as darkpixel
Night joined the channel
darkpixel has quit
darkpixel joined the channel
johngrasty_ has quit
nedry has quit
johngrasty joined the channel
piklu- joined the channel
busybox42 has quit
busybox42 joined the channel
howitdo joined the channel
swerter has quit
zombified joined the channel
Night__ joined the channel
howitdo has quit
SynchroM_ joined the channel
piklu joined the channel
SynchroM has quit
SynchroM_ is now known as SynchroM
darkpixel has quit
Night has quit
busybox420 joined the channel
piklu- has quit
johngrasty has quit
busybox42 has quit
johngrasty joined the channel
whatitdo joined the channel
darkpixel joined the channel
girishr has quit
nedry joined the channel
nedry_ has quit
SynchroM has quit
busybox69 joined the channel
busybox420 has quit
SynchroM_ joined the channel
hidwid joined the channel
SynchroM_ is now known as SynchroM
SynchroM_ joined the channel
bramzor has quit
johngrasty has quit
SynchroM has quit
johngrasty joined the channel
SynchroM_ is now known as SynchroM
hidwid joined the channel
hidwid has quit
busybox69 has quit
busybox69 joined the channel
johngrasty has quit
johngrasty joined the channel
busybox69 has quit
busybox69 joined the channel
knutix has quit
Cheery joined the channel
Cheery has quit
Cheery joined the channel
mocx has quit
notkoos has quit
johngrasty has quit
Cheery_ joined the channel
notkoos_ joined the channel
johngrasty joined the channel
mocx joined the channel
mocx has quit
notkoos_ has quit
johngrasty joined the channel
Cheery_ has quit
Cheery joined the channel
notkoos_ joined the channel
mocx joined the channel
knutix joined the channel
mocx has quit
mocx joined the channel
Bramzor joined the channel
knutix has quit
notkoos_ has quit
knutix joined the channel
notkoos_ joined the channel
Cheery has quit
knutix has quit
knutix_ joined the channel
johngrasty joined the channel
Cheery joined the channel
knutix joined the channel
johngrasty has quit
knutix_ has quit
Bramzor
Does config/header_hide_version work for anyone?
johngrasty joined the channel
SynchroM has quit
_smf_
Bramzor: huh?
Bramzor
_smf_: Yes, creating the file config/header_hide_version with the content true should in fact hide connection version etc, but added the file and does not seem to work here.