이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

S/MIME Email Signing

설명

This plugin is for signing all outbound emails with an S/MIME certificate.

It uses phpmailer to automatically sign emails. Here are the prerequisites to use this plugin:
* This plugin is for single-user WordPress site, such as a personal blog. I don’t know what will happen if you put it in a multi-user site.
* PHP 8.3 and above are recommended. Make sure your PHP has openssl extension, which is usually installed by default.
* You should use another plugin, such as FluentSMTP, to send emails through an external SMTP server.

스크린샷

설치

Get a S/MIME certificate

You can go to Actalis to apply for a free S/MIME certificate for one year.

After applying, you can download a p12 certificate file, which contains public key, private key, and certificate chain.

The password to the p12 file will be sent to your email.

Split the p12 file

In case the p12 file is named “smime.p12”, do the following commmands to split it into seperated keys.

  • Export the private key: openssl pkcs12 -in smime.p12 -nocerts -out smime.key

    • You will be asked for the Import password, which is the password to the p12 file.
    • Then, you need to enter a password to protect the exported private key. This password is what we will fill in the plugin setting.
    • Enter twice to confirm it.
  • Export the public key: openssl pkcs12 -in smime.p12 -clcerts -nokeys -out smime.crt

    • You will be asked for the Import password, which is the password to the p12 file.
  • Export the certificate chain: openssl pkcs12 -in smime.p12 -cacerts -nokeys -out certchain.pem

    • You will be asked for the Import password, which is the password to the p12 file.

Set correct permission

After uploading the seperated key files to your server, you have to set correct permission to each file. * Private key: chmod 640 smime.key * Public key: chmod 644 smime.crt * Certificate chain: chmod 644 certchain.pem

Plugin settings

Install and activate the plugin, the setting page will appear on the left, with a sheild icon.

What you need to do is filling the path and password fields, click Save, and everything is OK.

You can use the Email Send Test function in your SMTP plugin to test it.

The options will be deleted automatically after uninstalling the plugin.

후기

2026년 7월 30일 답글 1개
It's an excellent plugin for a single operator like myself, sending signed mail from my website. It works too with my SMTP plugin, FluentSMTP. Suggestion: I would like to be able to send encrypted email from my website to my admin address using the S/MIME protocol. This way, in my case, messages sent to me by users through various forms on my website will be end-to-end encrypted.
모든 1 평가 읽기

기여자 & 개발자

“S/MIME Email Signing”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “S/MIME Email Signing”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록을 RSS로 구독하세요.

변경이력

1.0

  • Initial release.