Author Topic: How to implement 2048 bit DKIM keys on CWP servers.  (Read 3452 times)

0 Members and 1 Guest are viewing this topic.

Offline
*****
Re: How to implement 2048 bit DKIM keys on CWP servers.
« Reply #15 on: March 05, 2025, 12:55:31 PM »
opendkim-genkey is a perl script. You can open the file /usr/sbin/opendkim-genkey using the text editor like vi, ee, etc and change the value of "bits":

Code: [Select]
my $bits = 1024;
to

Code: [Select]
my $bits = 2048;
right under "Set up defaults".

It will generate 2048bits keys by default.

Please note you do such changed on your own risk.

Offline
*****
Re: How to implement 2048 bit DKIM keys on CWP servers.
« Reply #16 on: March 05, 2025, 01:26:38 PM »
Or I just do it manually.

You can user the DKIM Generator at:
https://dmarcly.com/tools/dkim-record-generator

And then update the files at /etc/opendkim/userkeys/

Offline
***
Re: How to implement 2048 bit DKIM keys on CWP servers.
« Reply #17 on: March 05, 2025, 04:36:20 PM »
Quote
Or I just do it manually.

As another user wrote the question is:

Quote
it's about "How to implement 2048 bit DKIM keys on CWP servers".

2048 bit DKIM is the new standard today, developers of CWP and we the users must move toward implementing 2048 bit DKIM out of the box by default.

;)