I updated from the X3 to X4 Docker successfully save for a few issues and I’m hoping either they’re bugs/issues and can get fixed or maybe I’m just doing something wrong and someone can point out what.
TNEF-
The bin does not start during the container start up, if you manually activate it from /axigen/bin/axigen-tnef -p 8888 &
Then everything runs great, otherwise, failure to connect.
SpamAssassin-
I run in compose and I have a separate container for SpamAssassin, I’d like to simply use the dns name via the local resolver but it appears that Axigen isn’t capable of resolving names for SA URIs?
The name definitely resolves ( can ping from container after adding ping… ) but even the port ends up being blanked out if a name value is in the URI:
E.g.:
{
name = "AV:SpamAssassin"
address = "inet://spamassassin:783"
protocolFile = "afsl/spamassassin.afsl"
idleTimeout = 300
actionOnMatch = pass
maxConnections = 10
maxMessageSize = 10240
}
ping spamassassin
PING spamassassin (172.30.0.2) 56(84) bytes of data.
64 bytes from mail-spamassassin-1.mail_default (172.30.0.2): icmp_seq=1 ttl=64 time=0.165 ms
64 bytes from mail-spamassassin-1.mail_default (172.30.0.2): icmp_seq=2 ttl=64 time=0.052 ms
However, when we try and check that connection ( or use it, since I know that check has had issues in the past ) we get:
2023-01-07 17:10:45 +0000 02 8f7489f7be3b PROCESSING:000768FF: Filter SpamAssassin Filter(0.0.0.0:0):[ERROR]: Could not connect to filter
2023-01-07 17:10:45 +0000 02 8f7489f7be3b PROCESSING:000768FF: Error connecting to socket filter: SpamAssassin Filter(0.0.0.0:0)
Changing it to the IP URI works just fine:
{
name = "AV:SpamAssassin"
address = "inet://172.30.0.2:783"
protocolFile = "afsl/spamassassin.afsl"
idleTimeout = 300
actionOnMatch = pass
maxConnections = 10
maxMessageSize = 10240
}
2023-01-07 17:12:26 +0000 08 8f7489f7be3b PROCESSING:003C24B3: Filter SpamAssassin Filter(172.30.0.2:783):[PASS]: Spam: False ; 0.2 / 5.0
Is it a bug/known issue or, I’m doing something stupid?
Thanks all, lol