Remove last references to javax.mail

master
Richard Körber 2025-01-26 15:35:09 +01:00
parent 8bb6560ff8
commit 3adab36f05
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
4 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ import org.shredzone.acme4j.smime.EmailIdentifier;
* Requires {@code Bouncy Castle}. The {@link org.bouncycastle.jce.provider.BouncyCastleProvider}
* must also be added as security provider.
* <p>
* A {@code javax.mail} implementation must be present in the classpath.
* A {@code jakarta.mail} implementation must be present in the classpath.
*
* @since 2.12
*/

View File

@ -129,7 +129,7 @@ public class ResponseGenerator {
* MTA.
*
* @param session
* {@code javax.mail} {@link Session} to be used for this mail.
* {@code jakarta.mail} {@link Session} to be used for this mail.
* @return Generated {@link Message}.
*/
public Message generateResponse(Session session) throws MessagingException {

View File

@ -57,7 +57,7 @@ It is basically invoked like this:
Message challengeMessage = // incoming challenge message from the CA
EmailReply00Challenge challenge = // challenge that is requested by the CA
EmailIdentifier identifier = // email address to get the S/MIME cert for
javax.mail.Session mailSession = // javax.mail session
jakarta.mail.Session mailSession = // jakarta.mail session
Message response = EmailProcessor.plainMessage(challengeMessage)
.expectedIdentifier(identifier)

View File

@ -49,7 +49,7 @@ acme4j-client
The Java module name is `org.shredzone.acme4j`.
acme4j-smime
: [`acme4j-smime`](https://mvnrepository.com/artifact/org.shredzone.acme4j/acme4j-smime/latest) contains the [RFC 8823](https://tools.ietf.org/html/rfc8823) implementation for ordering S/MIME certificates. It requires [Bouncy Castle](https://www.bouncycastle.org/java.html) and a `javax.mail` implementation.
: [`acme4j-smime`](https://mvnrepository.com/artifact/org.shredzone.acme4j/acme4j-smime/latest) contains the [RFC 8823](https://tools.ietf.org/html/rfc8823) implementation for ordering S/MIME certificates. It requires [Bouncy Castle](https://www.bouncycastle.org/java.html) and a `jakarta.mail` implementation.
The Java module name is `org.shredzone.acme4j.smime`.