PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, November 9, 2022

[FIXED] How use custom dkim selector on mailu?

 November 09, 2022     dkim, docker, docker-compose     No comments   

Issue

I have a server with mailu installed and would like to know how to use a specific dkim selector.

I tried putting a file inside mailu/overrides/rspamd/dkim.conf

selector = "dkim1";
path = "/var/lib/rspamd/dkim/$domain.$selector.key";

and also mailu/overrides/rspamd/dkim_signing.conf

dkim_signing {
allow_envfrom_empty = true;
allow_hdrfrom_mismatch = false; 
allow_hdrfrom_multiple = false; 
allow_username_mismatch = false; 
path = "/var/lib/rspamd/dkim/$domain.$selector.key"; 
selector = "dkim1"; 
sign_authenticated = true; 
sign_local = true; 
symbol = "DKIM_SIGNED"; 
try_fallback = true; 
use_domain = "header"; 
use_esld = true; 
use_redis = true; 
key_prefix = "DKIM_KEYS";
}

but apparently I was not successful


Solution

I found the answer, just set the variable "DKIM_SELECTOR" in "mailu.env"



Answered By - Luam Navega Ribeiro
Answer Checked By - Marie Seifert (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing