So we have 4 haraka boxes for both redundancy and multi-provider/multi-datacenter robustness. I want to use shared greylisting between them, and have a local greylist constantly replicating. Redis doesn't do multi-master, so what other tools out there might work?
etcd?
tarasis_ joined the channel
baudehlo
MySQL?
Postgres with xDB?
Cassandra?
Lots of options.
busybox42
+1 for cassandra.
EyePulp
Ah cassandra, hadn't thought of that one.
Hoping to use something that is as set-it-and-forget-it as redis usually is, with low machine overhead as well as low operator overhead. Is cassandra pretty bulletproof, or is it like elastic search -- very operator needy.
baudehlo
I don't think anything multi-master is set it and forget it.
_smf_
Modify the plugin and get it to write to multiple Redis instances at once ;-)
Blimey. I'm surprised it came back via UDP (at least it appeared to).
busybox42
Thanks rfc6891! But ya it might not everywhere since it's at least strongly recommended to limit your DNS response size to under 512 bytes.
baudehlo
Huh, I've never read that RFC before. Thanks.
AdNauseum joined the channel
AdNauseum
afternoon
have two haraka servers. one for mx and one for smtp.
if client wants to email another user in same domain, how to get the haraka smtp server to send it to the haraka mx server?
i guess a less confusing way to say it is, if I want to email myself, the smtp server sends it to vpopmail. I need smtp server to sent it to the mx server
busybox42
relay_dest_domains.ini
something like domain.tld { "action": "continue", "nexthop": "1.2.3.4"}
AdNauseum
thanks.
Where is that file?
i dont have one in /config
busybox42
or maybe domain.tld = { "action": "accept" }. That should make you accept the email and pass it off to the MX reocrd.
for some reason the smtp haraka server is not relaying the messages out to the mx haraka server
need to somehow tell the smtpd server, hey there are no local vdomains here!
busybox42
domain.tld = { "action": "continue", "nexthop": "1.2.3.4"} should do it I'd think
AdNauseum
busybox42: in plugins i have rcpt_to.qmail_deliverable
doesnt' that tell haraka any inbound mail, send it to vpopmail?
its ignoring the relay file relay_dest_domains.ini . I added the nexthop : ip.add.ress. and sent an email to myself. Doesnt go anywhere
busybox42
I wouldn't think so. I think it's just a way to validate the recipient against qmail. I don't know a ton about how qmail works though.
AdNauseum
well i changed plugins and #'d vpopmail and enabled rcpt_to.in_host_list and there is no host list. So I would have thought it would just send any email out using the relay_dest_domains.ini