diff --git a/english/java/com.aspose.email/_index.md b/english/java/com.aspose.email/_index.md index 63e9524c3b..c1dc461365 100644 --- a/english/java/com.aspose.email/_index.md +++ b/english/java/com.aspose.email/_index.md @@ -668,6 +668,7 @@ Contains Java API classes that enables to read and write Microsoft Outlook | [SimpleFormatter](../com.aspose.email/simpleformatter) | Represents the default implementation of IFormatter interface. | | [SimpleSeqSet](../com.aspose.email/simpleseqset) | Simple container for value to search. | | [SizeRange](../com.aspose.email/sizerange) | Represents the size range | +| [SmimeKey](../com.aspose.email/smimekey) | A wrapper around a PrivateKey and a chain of X509Certificate used to sign or decrypt a MIME message. | | [SmimeResult](../com.aspose.email/smimeresult) | This class containing results of checking secure emails. | | [SmtpClient](../com.aspose.email/smtpclient) | Allows applications to send messages by using the Simple Mail Transfer Protocol (SMTP). | | [SmtpDeliveryMethod](../com.aspose.email/smtpdeliverymethod) | Smtp delivery method | diff --git a/english/java/com.aspose.email/ampmessage/_index.md b/english/java/com.aspose.email/ampmessage/_index.md index 874ad75052..3767b44f60 100644 --- a/english/java/com.aspose.email/ampmessage/_index.md +++ b/english/java/com.aspose.email/ampmessage/_index.md @@ -26,10 +26,11 @@ Message which allows senders to include AMP components inside emails. | [addAlternateView(AlternateView view)](#addAlternateView-com.aspose.email.AlternateView-) | Add an alternate view to message | | [addAmpComponent(AmpComponent component)](#addAmpComponent-com.aspose.email.AmpComponent-) | Add Amp component to this message. | | [addAttachment(Attachment attachment)](#addAttachment-com.aspose.email.Attachment-) | Add an attachment to message | +| [attachDetachedSignature(SmimeKey key)](#attachDetachedSignature-com.aspose.email.SmimeKey-) | Creates a signed message. | | [attachSignature(byte[] certificateRawData, String certificatePassword)](#attachSignature-byte---java.lang.String-) | Creates a signed message. | | [attachSignature(byte[] certificateRawData, String certificatePassword, boolean detached)](#attachSignature-byte---java.lang.String-boolean-) | Creates a signed message. | -| [attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Creates a signed message. | -| [attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached)](#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-boolean-) | Creates a signed message. | +| [attachSignature(SmimeKey key)](#attachSignature-com.aspose.email.SmimeKey-) | Creates a signed message. | +| [attachSignature(SmimeKey key, boolean detached)](#attachSignature-com.aspose.email.SmimeKey-boolean-) | Creates a signed message. | | [checkBounced()](#checkBounced--) | Checks whether this message can be treated as a bounce message. | | [checkSignature()](#checkSignature--) | Checking signature exsisting MailMessage. | | [checkSignature(InputStream stream)](#checkSignature-java.io.InputStream-) | Checks the signature of the specified eml message. | @@ -37,15 +38,14 @@ Message which allows senders to include AMP components inside emails. | [checkSignatureCert()](#checkSignatureCert--) | Checking signature exsisting MailMessage. | | [close()](#close--) | | | [createReadReceipt(String from, String bodyText)](#createReadReceipt-java.lang.String-java.lang.String-) | Creates the read receipt. | -| [dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo)](#dKIMSign-com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider-com.aspose.email.DKIMSignatureInfo-) | Signs this message using DKIM (DomainKeys Identified Mail) signature. | +| [dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo)](#dKIMSign-java.security.PrivateKey-com.aspose.email.DKIMSignatureInfo-) | Signs this message using DKIM (DomainKeys Identified Mail) signature. | | [decrypt()](#decrypt--) | Decrypts this message | | [decrypt(byte[] certificateRawData, String certificatePassword)](#decrypt-byte---java.lang.String-) | Decrypts this message | -| [decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | | +| [decrypt(SmimeKey key)](#decrypt-com.aspose.email.SmimeKey-) | Decrypts this message | | [deepClone()](#deepClone--) | Clones this instance | | [dispose()](#dispose--) | Releases all resources used by the MailMessage | -| [encrypt(byte[] certificateRawData, String certificatePassword)](#encrypt-byte---java.lang.String-) | Encrypts this message | -| [encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | | -| [encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)](#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2---) | Encrypts this message | +| [encrypt(byte[] certificateRawData, String certificatePassword)](#encrypt-byte---java.lang.String-) | Encrypts this message. | +| [encrypt(SmimeKey key)](#encrypt-com.aspose.email.SmimeKey-) | Encrypts this message. | | [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified Object is equal to the current Object. | | [getAlternateViewContent(String mediaType)](#getAlternateViewContent-java.lang.String-) | Gets the content as a string from the specified AlternateView. | | [getAlternateViews()](#getAlternateViews--) | Gets the collection of alternate views of message | @@ -215,6 +215,45 @@ Add an attachment to message | --- | --- | --- | | attachment | [Attachment](../../com.aspose.email/attachment) | Attachment for adding | +### attachDetachedSignature(SmimeKey key) {#attachDetachedSignature-com.aspose.email.SmimeKey-} +``` +public MailMessage attachDetachedSignature(SmimeKey key) +``` + + +Creates a signed message. Creates a read-only copy of the specified MailMessage and adds a digital signature to it. + +-------------------- + +> The following example shows how to attach a Certificate with AttachSignature Method. +> +> [Java] +> +> ``` +> ``` +> +> MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", +> "body:Test Body of signed message by AE"); +> MailMessage signed = msg.attachDetachedSignature(key); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` +> ``` + +-------------------- + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | + +**Returns:** +[MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. ### attachSignature(byte[] certificateRawData, String certificatePassword) {#attachSignature-byte---java.lang.String-} ``` public MailMessage attachSignature(byte[] certificateRawData, String certificatePassword) @@ -262,9 +301,9 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. -### attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### attachSignature(SmimeKey key) {#attachSignature-com.aspose.email.SmimeKey-} ``` -public MailMessage attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage attachSignature(SmimeKey key) ``` @@ -277,11 +316,19 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage > [Java] > > ``` -> String privateCertFile = "MartinCertificate.pfx"; -> X509Certificate2 privateCert = new X509Certificate2(privateCertFile, "anothertestaccount"); +> ``` +> > MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", > "body:Test Body of signed message by AE"); -> MailMessage signed = msg.attachSignature(privateCert, true); +> MailMessage signed = msg.attachSignature(key); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` > ``` -------------------- @@ -289,26 +336,53 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. -### attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached) {#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-boolean-} +### attachSignature(SmimeKey key, boolean detached) {#attachSignature-com.aspose.email.SmimeKey-boolean-} ``` -public MailMessage attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached) +public MailMessage attachSignature(SmimeKey key, boolean detached) ``` Creates a signed message. Creates a read-only copy of the specified MailMessage and adds a digital signature to it. +-------------------- + +> The following example shows how to attach a Certificate with AttachSignature Method. +> +> [Java] +> +> ``` +> ``` +> +> MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", +> "body:Test Body of signed message by AE"); +> // create signed mail with detached signature +> MailMessage signedDetached = msg.attachSignature(key, true); +> // create signed mail with attached signature +> MailMessage signedAttached = msg.attachSignature(key, false); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` +> ``` + +-------------------- + **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | -| detached | boolean | .If detached is true, the signature is detached.If detached is false(the default), the signature is not detached. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | +| detached | boolean | .If detached is true, the signature is detached. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - +[MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. ### checkBounced() {#checkBounced--} ``` public BounceResult checkBounced() @@ -361,14 +435,14 @@ Checks the signature of the specified eml file. boolean - True if signature is valid; otherwise, false . ### checkSignatureCert() {#checkSignatureCert--} ``` -public System.Security.Cryptography.X509Certificates.X509Certificate2[] checkSignatureCert() +public List checkSignatureCert() ``` Checking signature exsisting MailMessage. **Returns:** -com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2[] - X.509 signers certificates +java.util.List - X.509 signers certificates ### close() {#close--} ``` public void close() @@ -393,9 +467,9 @@ Creates the read receipt. **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - A newly created [MailMessage](../../com.aspose.email/mailmessage) that represents the read receipt. -### dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo) {#dKIMSign-com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider-com.aspose.email.DKIMSignatureInfo-} +### dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo) {#dKIMSign-java.security.PrivateKey-com.aspose.email.DKIMSignatureInfo-} ``` -public MailMessage dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo) +public MailMessage dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo) ``` @@ -428,7 +502,7 @@ Signs this message using DKIM (DomainKeys Identified Mail) signature. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| rsa | com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider | RSA class containing private key used for signing. | +| rsa | java.security.PrivateKey | RSA class containing private key used for signing. | | signatureInfo | [DKIMSignatureInfo](../../com.aspose.email/dkimsignatureinfo) | DKIM signature information. | **Returns:** @@ -443,10 +517,6 @@ Decrypts this message **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - Decrypted E-mail message - --------------------- - -Method searches the current user and computer My stores for the appropriate certificate and private key. ### decrypt(byte[] certificateRawData, String certificatePassword) {#decrypt-byte---java.lang.String-} ``` public MailMessage decrypt(byte[] certificateRawData, String certificatePassword) @@ -458,26 +528,58 @@ Decrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificateRawData | byte[] | System.Security.Cryptography.X509Certificates.X509Certificate2 | +| certificateRawData | byte[] | X509 certificate to decrypt message | | certificatePassword | java.lang.String | The password required to access the X.509 certificate data | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - E-mail message -### decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### decrypt(SmimeKey key) {#decrypt-com.aspose.email.SmimeKey-} ``` -public MailMessage decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage decrypt(SmimeKey key) ``` +Decrypts this message + +-------------------- + +> The following example shows how to encrypt messages. +> +> [Java] +> +> ``` +> ``` +> +> // Create a message +> MailMessage eml = new MailMessage(); +> eml.setFrom(MailAddress.to_MailAddress("atneostthaecrcount@gmail.com")); +> eml.setTo(MailAddressCollection.to_MailAddressCollection("atneostthaecrcount@gmail.com")); +> eml.setSubject("Test subject"); +> eml.setBody("Test Body"); +> +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> // Decrypt the message +> MailMessage eml = eml.decrypt(key); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` +> ``` +-------------------- **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with the private key | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) +[MailMessage](../../com.aspose.email/mailmessage) - Decrypted E-mail message ### deepClone() {#deepClone--} ``` public MailMessage deepClone() @@ -502,16 +604,18 @@ public MailMessage encrypt(byte[] certificateRawData, String certificatePassword ``` -Encrypts this message +Encrypts this message. -------------------- -> The following example shows how to encrypt Messages. +> The following example shows how to encrypt messages. > > [Java] > > ``` -> // Create a message +> ``` +> +> // Create a message > MailMessage eml = new MailMessage(); > eml.setFrom(MailAddress.to_MailAddress("atneostthaecrcount@gmail.com")); > eml.setTo(MailAddressCollection.to_MailAddressCollection("atneostthaecrcount@gmail.com")); @@ -520,7 +624,9 @@ Encrypts this message > > // Encrypt the message > MailMessage encryptedEml = eml.encrypt(certData, certPass); -> System.out.println(encryptedEml.isEncrypted() ? "Its encrypted" : "Its NOT encrypted"); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` > ``` -------------------- @@ -528,43 +634,27 @@ Encrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificateRawData | byte[] | X509 certificate to encrypt message | -| certificatePassword | java.lang.String | | +| certificateRawData | byte[] | X509 certificate to encrypt the message. | +| certificatePassword | java.lang.String | Password for the X509 certificate. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message -### encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message. +### encrypt(SmimeKey key) {#encrypt-com.aspose.email.SmimeKey-} ``` -public MailMessage encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage encrypt(SmimeKey key) ``` - - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | | - -**Returns:** -[MailMessage](../../com.aspose.email/mailmessage) -### encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) {#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2---} -``` -public MailMessage encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) -``` - - -Encrypts this message +Encrypts this message. -------------------- -> The following example shows how to encrypt Messages. +> The following example shows how to encrypt messages. > > [Java] > > ``` -> String publicCertFile = "MartinCertificate.cer"; -> X509Certificate2 publicCert = new X509Certificate2(publicCertFile); +> ``` > > // Create a message > MailMessage eml = new MailMessage(); @@ -573,9 +663,18 @@ Encrypts this message > eml.setSubject("Test subject"); > eml.setBody("Test Body"); > +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from certificate string +> SmimeKey key = SmimeKey.loadCertificate(crtPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> > // Encrypt the message -> MailMessage encryptedEml = eml.encrypt(publicCert); -> System.out.println(encryptedEml.isEncrypted() ? "Its encrypted" : "Its NOT encrypted"); +> MailMessage encryptedEml = eml.encrypt(key); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` > ``` -------------------- @@ -583,10 +682,10 @@ Encrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificates | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2[] | Array with X509 certificates to encrypt message | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with the public certificate. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message +[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message. ### equals(Object obj) {#equals-java.lang.Object-} ``` public boolean equals(Object obj) diff --git a/english/java/com.aspose.email/bindipendpointhandler/_index.md b/english/java/com.aspose.email/bindipendpointhandler/_index.md index 6f7dd9bd6a..14e18fc7ce 100644 --- a/english/java/com.aspose.email/bindipendpointhandler/_index.md +++ b/english/java/com.aspose.email/bindipendpointhandler/_index.md @@ -3,7 +3,7 @@ title: BindIPEndPointHandler second_title: Aspose.Email for Java API Reference description: Use the BindIPEndPointHandler if you need to use a specific local endpoint. type: docs -weight: 753 +weight: 754 url: /java/com.aspose.email/bindipendpointhandler/ --- ``` diff --git a/english/java/com.aspose.email/conversionprogresseventhandler/_index.md b/english/java/com.aspose.email/conversionprogresseventhandler/_index.md index 8767f5b6b5..0afec46b10 100644 --- a/english/java/com.aspose.email/conversionprogresseventhandler/_index.md +++ b/english/java/com.aspose.email/conversionprogresseventhandler/_index.md @@ -3,7 +3,7 @@ title: ConversionProgressEventHandler second_title: Aspose.Email for Java API Reference description: Represents signature for method that usually supplied by calling side and handles progress events. type: docs -weight: 754 +weight: 755 url: /java/com.aspose.email/conversionprogresseventhandler/ --- ``` diff --git a/english/java/com.aspose.email/hyperlinkrenderingcallback/_index.md b/english/java/com.aspose.email/hyperlinkrenderingcallback/_index.md index ffa619fa2e..8998c0ea5b 100644 --- a/english/java/com.aspose.email/hyperlinkrenderingcallback/_index.md +++ b/english/java/com.aspose.email/hyperlinkrenderingcallback/_index.md @@ -3,7 +3,7 @@ title: HyperlinkRenderingCallback second_title: Aspose.Email for Java API Reference description: Provides possibility to handle rendering of hyperlink in custom style. type: docs -weight: 755 +weight: 756 url: /java/com.aspose.email/hyperlinkrenderingcallback/ --- ``` diff --git a/english/java/com.aspose.email/iappender/_index.md b/english/java/com.aspose.email/iappender/_index.md index 712c7e0e96..1a558fa967 100644 --- a/english/java/com.aspose.email/iappender/_index.md +++ b/english/java/com.aspose.email/iappender/_index.md @@ -3,7 +3,7 @@ title: IAppender second_title: Aspose.Email for Java API Reference description: Implement this interface for your own strategies for printing log entries. type: docs -weight: 756 +weight: 757 url: /java/com.aspose.email/iappender/ --- ``` diff --git a/english/java/com.aspose.email/iasyncresultext/_index.md b/english/java/com.aspose.email/iasyncresultext/_index.md index 05c29d3382..abc199777e 100644 --- a/english/java/com.aspose.email/iasyncresultext/_index.md +++ b/english/java/com.aspose.email/iasyncresultext/_index.md @@ -3,7 +3,7 @@ title: IAsyncResultExt second_title: Aspose.Email for Java API Reference description: Represents the extended status of an asynchronous operation. type: docs -weight: 757 +weight: 758 url: /java/com.aspose.email/iasyncresultext/ --- diff --git a/english/java/com.aspose.email/iattachment/_index.md b/english/java/com.aspose.email/iattachment/_index.md index 99882ad7c1..cc30d87891 100644 --- a/english/java/com.aspose.email/iattachment/_index.md +++ b/english/java/com.aspose.email/iattachment/_index.md @@ -3,7 +3,7 @@ title: IAttachment second_title: Aspose.Email for Java API Reference description: Represents a common attachment interface type: docs -weight: 758 +weight: 759 url: /java/com.aspose.email/iattachment/ --- ``` diff --git a/english/java/com.aspose.email/ibasegmailclient/_index.md b/english/java/com.aspose.email/ibasegmailclient/_index.md index e786e437a8..d20d98500c 100644 --- a/english/java/com.aspose.email/ibasegmailclient/_index.md +++ b/english/java/com.aspose.email/ibasegmailclient/_index.md @@ -3,7 +3,7 @@ title: IBaseGmailClient second_title: Aspose.Email for Java API Reference description: Interface for base class of Gmail client type: docs -weight: 759 +weight: 760 url: /java/com.aspose.email/ibasegmailclient/ --- diff --git a/english/java/com.aspose.email/iconnection/_index.md b/english/java/com.aspose.email/iconnection/_index.md index 16b2de8733..a1b75871aa 100644 --- a/english/java/com.aspose.email/iconnection/_index.md +++ b/english/java/com.aspose.email/iconnection/_index.md @@ -3,7 +3,7 @@ title: IConnection second_title: Aspose.Email for Java API Reference description: IConnectionAdapter allows to manage connection to a server. type: docs -weight: 760 +weight: 761 url: /java/com.aspose.email/iconnection/ --- diff --git a/english/java/com.aspose.email/ideliveryserviceclient/_index.md b/english/java/com.aspose.email/ideliveryserviceclient/_index.md index 79bde5e9ff..0eeeb8d862 100644 --- a/english/java/com.aspose.email/ideliveryserviceclient/_index.md +++ b/english/java/com.aspose.email/ideliveryserviceclient/_index.md @@ -3,7 +3,7 @@ title: IDeliveryServiceClient second_title: Aspose.Email for Java API Reference description: Represents contract for DeliveryServiceClient type: docs -weight: 761 +weight: 762 url: /java/com.aspose.email/ideliveryserviceclient/ --- diff --git a/english/java/com.aspose.email/iewsclient/_index.md b/english/java/com.aspose.email/iewsclient/_index.md index 5060707675..bd4f9f8769 100644 --- a/english/java/com.aspose.email/iewsclient/_index.md +++ b/english/java/com.aspose.email/iewsclient/_index.md @@ -3,7 +3,7 @@ title: IEWSClient second_title: Aspose.Email for Java API Reference description: Represents the interface for Exchange client. type: docs -weight: 762 +weight: 763 url: /java/com.aspose.email/iewsclient/ --- diff --git a/english/java/com.aspose.email/iexchangeclientbase/_index.md b/english/java/com.aspose.email/iexchangeclientbase/_index.md index 8b36986050..faf98c4f5d 100644 --- a/english/java/com.aspose.email/iexchangeclientbase/_index.md +++ b/english/java/com.aspose.email/iexchangeclientbase/_index.md @@ -3,7 +3,7 @@ title: IExchangeClientBase second_title: Aspose.Email for Java API Reference description: Represents the interface for base Exchange clients. type: docs -weight: 763 +weight: 764 url: /java/com.aspose.email/iexchangeclientbase/ --- diff --git a/english/java/com.aspose.email/iformatter/_index.md b/english/java/com.aspose.email/iformatter/_index.md index 47c781f0c4..8d14ad6b9f 100644 --- a/english/java/com.aspose.email/iformatter/_index.md +++ b/english/java/com.aspose.email/iformatter/_index.md @@ -3,7 +3,7 @@ title: IFormatter second_title: Aspose.Email for Java API Reference description: Represents the interface for formatting log entry messsages. type: docs -weight: 764 +weight: 765 url: /java/com.aspose.email/iformatter/ --- ``` diff --git a/english/java/com.aspose.email/igmailclient/_index.md b/english/java/com.aspose.email/igmailclient/_index.md index f8e39d1019..9d0fcf4443 100644 --- a/english/java/com.aspose.email/igmailclient/_index.md +++ b/english/java/com.aspose.email/igmailclient/_index.md @@ -3,7 +3,7 @@ title: IGmailClient second_title: Aspose.Email for Java API Reference description: Represents the interface for Gmail client type: docs -weight: 765 +weight: 766 url: /java/com.aspose.email/igmailclient/ --- diff --git a/english/java/com.aspose.email/ignoreexceptionscallback/_index.md b/english/java/com.aspose.email/ignoreexceptionscallback/_index.md index 8fe8379459..3bd7bd9731 100644 --- a/english/java/com.aspose.email/ignoreexceptionscallback/_index.md +++ b/english/java/com.aspose.email/ignoreexceptionscallback/_index.md @@ -3,7 +3,7 @@ title: IgnoreExceptionsCallback second_title: Aspose.Email for Java API Reference description: Ignore Exceptions callback. type: docs -weight: 778 +weight: 779 url: /java/com.aspose.email/ignoreexceptionscallback/ --- ``` diff --git a/english/java/com.aspose.email/ignoreexceptionslogcallback/_index.md b/english/java/com.aspose.email/ignoreexceptionslogcallback/_index.md index e619aa08b1..56ec196336 100644 --- a/english/java/com.aspose.email/ignoreexceptionslogcallback/_index.md +++ b/english/java/com.aspose.email/ignoreexceptionslogcallback/_index.md @@ -3,7 +3,7 @@ title: IgnoreExceptionsLogCallback second_title: Aspose.Email for Java API Reference description: Ignored Exceptions Log callback. type: docs -weight: 779 +weight: 780 url: /java/com.aspose.email/ignoreexceptionslogcallback/ --- ``` diff --git a/english/java/com.aspose.email/igraphclient/_index.md b/english/java/com.aspose.email/igraphclient/_index.md index 04ae8dd100..b1aefbcc1b 100644 --- a/english/java/com.aspose.email/igraphclient/_index.md +++ b/english/java/com.aspose.email/igraphclient/_index.md @@ -3,7 +3,7 @@ title: IGraphClient second_title: Aspose.Email for Java API Reference description: Represents the interface for Exchange REST client. type: docs -weight: 766 +weight: 767 url: /java/com.aspose.email/igraphclient/ --- diff --git a/english/java/com.aspose.email/iimapmonitoringstate/_index.md b/english/java/com.aspose.email/iimapmonitoringstate/_index.md index 264a3beb8d..75286cfaff 100644 --- a/english/java/com.aspose.email/iimapmonitoringstate/_index.md +++ b/english/java/com.aspose.email/iimapmonitoringstate/_index.md @@ -3,7 +3,7 @@ title: IImapMonitoringState second_title: Aspose.Email for Java API Reference description: Holds folder monitoring state. type: docs -weight: 767 +weight: 768 url: /java/com.aspose.email/iimapmonitoringstate/ --- ``` diff --git a/english/java/com.aspose.email/imailaddress/_index.md b/english/java/com.aspose.email/imailaddress/_index.md index bb670ef636..b031550664 100644 --- a/english/java/com.aspose.email/imailaddress/_index.md +++ b/english/java/com.aspose.email/imailaddress/_index.md @@ -3,7 +3,7 @@ title: IMailAddress second_title: Aspose.Email for Java API Reference description: Represents a common mail address interface type: docs -weight: 768 +weight: 769 url: /java/com.aspose.email/imailaddress/ --- ``` diff --git a/english/java/com.aspose.email/imailtransferagent/_index.md b/english/java/com.aspose.email/imailtransferagent/_index.md index 1caf9d059f..cbede3494e 100644 --- a/english/java/com.aspose.email/imailtransferagent/_index.md +++ b/english/java/com.aspose.email/imailtransferagent/_index.md @@ -3,7 +3,7 @@ title: IMailTransferAgent second_title: Aspose.Email for Java API Reference description: Provides the base interface for mail transfer agents. type: docs -weight: 769 +weight: 770 url: /java/com.aspose.email/imailtransferagent/ --- diff --git a/english/java/com.aspose.email/imapimessageitem/_index.md b/english/java/com.aspose.email/imapimessageitem/_index.md index 9bdd53a548..45b6291e4e 100644 --- a/english/java/com.aspose.email/imapimessageitem/_index.md +++ b/english/java/com.aspose.email/imapimessageitem/_index.md @@ -3,7 +3,7 @@ title: IMapiMessageItem second_title: Aspose.Email for Java API Reference description: Base interface for all message items in Outlook type: docs -weight: 770 +weight: 771 url: /java/com.aspose.email/imapimessageitem/ --- ``` diff --git a/english/java/com.aspose.email/imessage/_index.md b/english/java/com.aspose.email/imessage/_index.md index 4cf81bb847..8147623d3e 100644 --- a/english/java/com.aspose.email/imessage/_index.md +++ b/english/java/com.aspose.email/imessage/_index.md @@ -3,7 +3,7 @@ title: IMessage second_title: Aspose.Email for Java API Reference description: Represents a common message interface type: docs -weight: 771 +weight: 772 url: /java/com.aspose.email/imessage/ --- ``` diff --git a/english/java/com.aspose.email/imessageformatter/_index.md b/english/java/com.aspose.email/imessageformatter/_index.md index f54796e2b1..54e8cc992f 100644 --- a/english/java/com.aspose.email/imessageformatter/_index.md +++ b/english/java/com.aspose.email/imessageformatter/_index.md @@ -3,7 +3,7 @@ title: IMessageFormatter second_title: Aspose.Email for Java API Reference description: Provides a mechanism for retrieving an object to Message formatting. type: docs -weight: 772 +weight: 773 url: /java/com.aspose.email/imessageformatter/ --- ``` diff --git a/english/java/com.aspose.email/imessageobjectpropertycontainer/_index.md b/english/java/com.aspose.email/imessageobjectpropertycontainer/_index.md index 874569c90d..d2bedbdf15 100644 --- a/english/java/com.aspose.email/imessageobjectpropertycontainer/_index.md +++ b/english/java/com.aspose.email/imessageobjectpropertycontainer/_index.md @@ -3,7 +3,7 @@ title: IMessageObjectPropertyContainer second_title: Aspose.Email for Java API Reference description: Defines an interface for container which contains entries. type: docs -weight: 773 +weight: 774 url: /java/com.aspose.email/imessageobjectpropertycontainer/ --- ``` diff --git a/english/java/com.aspose.email/imultipleservicestokenprovider/_index.md b/english/java/com.aspose.email/imultipleservicestokenprovider/_index.md index e865fb64fd..e067dc4f2d 100644 --- a/english/java/com.aspose.email/imultipleservicestokenprovider/_index.md +++ b/english/java/com.aspose.email/imultipleservicestokenprovider/_index.md @@ -3,7 +3,7 @@ title: IMultipleServicesTokenProvider second_title: Aspose.Email for Java API Reference description: Defines interface allowing to retrieve access token. type: docs -weight: 774 +weight: 775 url: /java/com.aspose.email/imultipleservicestokenprovider/ --- diff --git a/english/java/com.aspose.email/inamedpropertytagprovider/_index.md b/english/java/com.aspose.email/inamedpropertytagprovider/_index.md index 70e54fbc34..ff69c07044 100644 --- a/english/java/com.aspose.email/inamedpropertytagprovider/_index.md +++ b/english/java/com.aspose.email/inamedpropertytagprovider/_index.md @@ -3,7 +3,7 @@ title: INamedPropertyTagProvider second_title: Aspose.Email for Java API Reference description: Interface of named mapi property tag provider. type: docs -weight: 775 +weight: 776 url: /java/com.aspose.email/inamedpropertytagprovider/ --- ``` diff --git a/english/java/com.aspose.email/ipreferredtextencodingprovider/_index.md b/english/java/com.aspose.email/ipreferredtextencodingprovider/_index.md index a861496a20..4d9a2f4aa3 100644 --- a/english/java/com.aspose.email/ipreferredtextencodingprovider/_index.md +++ b/english/java/com.aspose.email/ipreferredtextencodingprovider/_index.md @@ -3,7 +3,7 @@ title: IPreferredTextEncodingProvider second_title: Aspose.Email for Java API Reference description: Defines a interface for objects that can define PreferredTextEncoding. type: docs -weight: 776 +weight: 777 url: /java/com.aspose.email/ipreferredtextencodingprovider/ --- ``` diff --git a/english/java/com.aspose.email/itokenprovider/_index.md b/english/java/com.aspose.email/itokenprovider/_index.md index e0b25c05a9..5414470914 100644 --- a/english/java/com.aspose.email/itokenprovider/_index.md +++ b/english/java/com.aspose.email/itokenprovider/_index.md @@ -3,7 +3,7 @@ title: ITokenProvider second_title: Aspose.Email for Java API Reference description: Defines interface allowing to retrieve access token. type: docs -weight: 777 +weight: 778 url: /java/com.aspose.email/itokenprovider/ --- diff --git a/english/java/com.aspose.email/mailmessage/_index.md b/english/java/com.aspose.email/mailmessage/_index.md index 6484ccf017..972164185d 100644 --- a/english/java/com.aspose.email/mailmessage/_index.md +++ b/english/java/com.aspose.email/mailmessage/_index.md @@ -59,10 +59,11 @@ Represents an e-mail message. It allows to access message properties, ex. subjec | --- | --- | | [addAlternateView(AlternateView view)](#addAlternateView-com.aspose.email.AlternateView-) | Add an alternate view to message | | [addAttachment(Attachment attachment)](#addAttachment-com.aspose.email.Attachment-) | Add an attachment to message | +| [attachDetachedSignature(SmimeKey key)](#attachDetachedSignature-com.aspose.email.SmimeKey-) | Creates a signed message. | | [attachSignature(byte[] certificateRawData, String certificatePassword)](#attachSignature-byte---java.lang.String-) | Creates a signed message. | | [attachSignature(byte[] certificateRawData, String certificatePassword, boolean detached)](#attachSignature-byte---java.lang.String-boolean-) | Creates a signed message. | -| [attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Creates a signed message. | -| [attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached)](#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-boolean-) | Creates a signed message. | +| [attachSignature(SmimeKey key)](#attachSignature-com.aspose.email.SmimeKey-) | Creates a signed message. | +| [attachSignature(SmimeKey key, boolean detached)](#attachSignature-com.aspose.email.SmimeKey-boolean-) | Creates a signed message. | | [checkBounced()](#checkBounced--) | Checks whether this message can be treated as a bounce message. | | [checkSignature()](#checkSignature--) | Checking signature exsisting MailMessage. | | [checkSignature(InputStream stream)](#checkSignature-java.io.InputStream-) | Checks the signature of the specified eml message. | @@ -70,15 +71,14 @@ Represents an e-mail message. It allows to access message properties, ex. subjec | [checkSignatureCert()](#checkSignatureCert--) | Checking signature exsisting MailMessage. | | [close()](#close--) | | | [createReadReceipt(String from, String bodyText)](#createReadReceipt-java.lang.String-java.lang.String-) | Creates the read receipt. | -| [dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo)](#dKIMSign-com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider-com.aspose.email.DKIMSignatureInfo-) | Signs this message using DKIM (DomainKeys Identified Mail) signature. | +| [dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo)](#dKIMSign-java.security.PrivateKey-com.aspose.email.DKIMSignatureInfo-) | Signs this message using DKIM (DomainKeys Identified Mail) signature. | | [decrypt()](#decrypt--) | Decrypts this message | | [decrypt(byte[] certificateRawData, String certificatePassword)](#decrypt-byte---java.lang.String-) | Decrypts this message | -| [decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | | +| [decrypt(SmimeKey key)](#decrypt-com.aspose.email.SmimeKey-) | Decrypts this message | | [deepClone()](#deepClone--) | Clones this instance | | [dispose()](#dispose--) | Releases all resources used by the MailMessage | -| [encrypt(byte[] certificateRawData, String certificatePassword)](#encrypt-byte---java.lang.String-) | Encrypts this message | -| [encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | | -| [encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)](#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2---) | Encrypts this message | +| [encrypt(byte[] certificateRawData, String certificatePassword)](#encrypt-byte---java.lang.String-) | Encrypts this message. | +| [encrypt(SmimeKey key)](#encrypt-com.aspose.email.SmimeKey-) | Encrypts this message. | | [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified Object is equal to the current Object. | | [getAlternateViewContent(String mediaType)](#getAlternateViewContent-java.lang.String-) | Gets the content as a string from the specified AlternateView. | | [getAlternateViews()](#getAlternateViews--) | Gets the collection of alternate views of message | @@ -277,6 +277,45 @@ Add an attachment to message | --- | --- | --- | | attachment | [Attachment](../../com.aspose.email/attachment) | Attachment for adding | +### attachDetachedSignature(SmimeKey key) {#attachDetachedSignature-com.aspose.email.SmimeKey-} +``` +public MailMessage attachDetachedSignature(SmimeKey key) +``` + + +Creates a signed message. Creates a read-only copy of the specified MailMessage and adds a digital signature to it. + +-------------------- + +> The following example shows how to attach a Certificate with AttachSignature Method. +> +> [Java] +> +> ``` +> ``` +> +> MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", +> "body:Test Body of signed message by AE"); +> MailMessage signed = msg.attachDetachedSignature(key); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` +> ``` + +-------------------- + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | + +**Returns:** +[MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. ### attachSignature(byte[] certificateRawData, String certificatePassword) {#attachSignature-byte---java.lang.String-} ``` public MailMessage attachSignature(byte[] certificateRawData, String certificatePassword) @@ -324,9 +363,9 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. -### attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### attachSignature(SmimeKey key) {#attachSignature-com.aspose.email.SmimeKey-} ``` -public MailMessage attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage attachSignature(SmimeKey key) ``` @@ -339,11 +378,19 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage > [Java] > > ``` -> String privateCertFile = "MartinCertificate.pfx"; -> X509Certificate2 privateCert = new X509Certificate2(privateCertFile, "anothertestaccount"); +> ``` +> > MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", > "body:Test Body of signed message by AE"); -> MailMessage signed = msg.attachSignature(privateCert, true); +> MailMessage signed = msg.attachSignature(key); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` > ``` -------------------- @@ -351,26 +398,53 @@ Creates a signed message. Creates a read-only copy of the specified MailMessage **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. -### attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached) {#attachSignature-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-boolean-} +### attachSignature(SmimeKey key, boolean detached) {#attachSignature-com.aspose.email.SmimeKey-boolean-} ``` -public MailMessage attachSignature(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, boolean detached) +public MailMessage attachSignature(SmimeKey key, boolean detached) ``` Creates a signed message. Creates a read-only copy of the specified MailMessage and adds a digital signature to it. +-------------------- + +> The following example shows how to attach a Certificate with AttachSignature Method. +> +> [Java] +> +> ``` +> ``` +> +> MailMessage msg = new MailMessage("user@domain.com", "receiver@domain.com", "subject:Signed message only by AE", +> "body:Test Body of signed message by AE"); +> // create signed mail with detached signature +> MailMessage signedDetached = msg.attachSignature(key, true); +> // create signed mail with attached signature +> MailMessage signedAttached = msg.attachSignature(key, false); +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> ``` +> ``` + +-------------------- + **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | -| detached | boolean | .If detached is true, the signature is detached.If detached is false(the default), the signature is not detached. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with private key. | +| detached | boolean | .If detached is true, the signature is detached. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - +[MailMessage](../../com.aspose.email/mailmessage) - The signed MailMessage. ### checkBounced() {#checkBounced--} ``` public BounceResult checkBounced() @@ -423,14 +497,14 @@ Checks the signature of the specified eml file. boolean - True if signature is valid; otherwise, false . ### checkSignatureCert() {#checkSignatureCert--} ``` -public System.Security.Cryptography.X509Certificates.X509Certificate2[] checkSignatureCert() +public List checkSignatureCert() ``` Checking signature exsisting MailMessage. **Returns:** -com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2[] - X.509 signers certificates +java.util.List - X.509 signers certificates ### close() {#close--} ``` public void close() @@ -455,9 +529,9 @@ Creates the read receipt. **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - A newly created [MailMessage](../../com.aspose.email/mailmessage) that represents the read receipt. -### dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo) {#dKIMSign-com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider-com.aspose.email.DKIMSignatureInfo-} +### dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo) {#dKIMSign-java.security.PrivateKey-com.aspose.email.DKIMSignatureInfo-} ``` -public MailMessage dKIMSign(System.Security.Cryptography.RSACryptoServiceProvider rsa, DKIMSignatureInfo signatureInfo) +public MailMessage dKIMSign(PrivateKey rsa, DKIMSignatureInfo signatureInfo) ``` @@ -490,7 +564,7 @@ Signs this message using DKIM (DomainKeys Identified Mail) signature. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| rsa | com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider | RSA class containing private key used for signing. | +| rsa | java.security.PrivateKey | RSA class containing private key used for signing. | | signatureInfo | [DKIMSignatureInfo](../../com.aspose.email/dkimsignatureinfo) | DKIM signature information. | **Returns:** @@ -505,10 +579,6 @@ Decrypts this message **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - Decrypted E-mail message - --------------------- - -Method searches the current user and computer My stores for the appropriate certificate and private key. ### decrypt(byte[] certificateRawData, String certificatePassword) {#decrypt-byte---java.lang.String-} ``` public MailMessage decrypt(byte[] certificateRawData, String certificatePassword) @@ -520,26 +590,58 @@ Decrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificateRawData | byte[] | System.Security.Cryptography.X509Certificates.X509Certificate2 | +| certificateRawData | byte[] | X509 certificate to decrypt message | | certificatePassword | java.lang.String | The password required to access the X.509 certificate data | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - E-mail message -### decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### decrypt(SmimeKey key) {#decrypt-com.aspose.email.SmimeKey-} ``` -public MailMessage decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage decrypt(SmimeKey key) ``` +Decrypts this message + +-------------------- + +> The following example shows how to encrypt messages. +> +> [Java] +> +> ``` +> ``` +> +> // Create a message +> MailMessage eml = new MailMessage(); +> eml.setFrom(MailAddress.to_MailAddress("atneostthaecrcount@gmail.com")); +> eml.setTo(MailAddressCollection.to_MailAddressCollection("atneostthaecrcount@gmail.com")); +> eml.setSubject("Test subject"); +> eml.setBody("Test Body"); +> +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from private key string +> SmimeKey key = SmimeKey.loadPrivateKey(keyPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> +> // Decrypt the message +> MailMessage eml = eml.decrypt(key); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` +> ``` +-------------------- **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with the private key | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) +[MailMessage](../../com.aspose.email/mailmessage) - Decrypted E-mail message ### deepClone() {#deepClone--} ``` public MailMessage deepClone() @@ -564,16 +666,18 @@ public MailMessage encrypt(byte[] certificateRawData, String certificatePassword ``` -Encrypts this message +Encrypts this message. -------------------- -> The following example shows how to encrypt Messages. +> The following example shows how to encrypt messages. > > [Java] > > ``` -> // Create a message +> ``` +> +> // Create a message > MailMessage eml = new MailMessage(); > eml.setFrom(MailAddress.to_MailAddress("atneostthaecrcount@gmail.com")); > eml.setTo(MailAddressCollection.to_MailAddressCollection("atneostthaecrcount@gmail.com")); @@ -582,7 +686,9 @@ Encrypts this message > > // Encrypt the message > MailMessage encryptedEml = eml.encrypt(certData, certPass); -> System.out.println(encryptedEml.isEncrypted() ? "Its encrypted" : "Its NOT encrypted"); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` > ``` -------------------- @@ -590,43 +696,27 @@ Encrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificateRawData | byte[] | X509 certificate to encrypt message | -| certificatePassword | java.lang.String | | +| certificateRawData | byte[] | X509 certificate to encrypt the message. | +| certificatePassword | java.lang.String | Password for the X509 certificate. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message -### encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message. +### encrypt(SmimeKey key) {#encrypt-com.aspose.email.SmimeKey-} ``` -public MailMessage encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage encrypt(SmimeKey key) ``` - - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | | - -**Returns:** -[MailMessage](../../com.aspose.email/mailmessage) -### encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) {#encrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2---} -``` -public MailMessage encrypt(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) -``` - - -Encrypts this message +Encrypts this message. -------------------- -> The following example shows how to encrypt Messages. +> The following example shows how to encrypt messages. > > [Java] > > ``` -> String publicCertFile = "MartinCertificate.cer"; -> X509Certificate2 publicCert = new X509Certificate2(publicCertFile); +> ``` > > // Create a message > MailMessage eml = new MailMessage(); @@ -635,9 +725,18 @@ Encrypts this message > eml.setSubject("Test subject"); > eml.setBody("Test Body"); > +> // load PFX file +> SmimeKey key = SmimeKey.loadPFX(pfxPath, "key".toCharArray()); +> // load SmimeKey from certificate string +> SmimeKey key = SmimeKey.loadCertificate(crtPath); +> // create SmimeKey from private key and X509 certificates +> SmimeKey key = new SmimeKey(privateKey, x509Certificate1, x509Certificate2); +> > // Encrypt the message -> MailMessage encryptedEml = eml.encrypt(publicCert); -> System.out.println(encryptedEml.isEncrypted() ? "Its encrypted" : "Its NOT encrypted"); +> MailMessage encryptedEml = eml.encrypt(key); +> System.out.println(encryptedEml.isEncrypted() ? "It's encrypted" : "It's NOT encrypted"); +> +> ``` > ``` -------------------- @@ -645,10 +744,10 @@ Encrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificates | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2[] | Array with X509 certificates to encrypt message | +| key | [SmimeKey](../../com.aspose.email/smimekey) | SmimeKey with the public certificate. | **Returns:** -[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message +[MailMessage](../../com.aspose.email/mailmessage) - Encrypted email message. ### equals(Object obj) {#equals-java.lang.Object-} ``` public boolean equals(Object obj) diff --git a/english/java/com.aspose.email/mailpriority/_index.md b/english/java/com.aspose.email/mailpriority/_index.md index c5f47801f0..0e9d606d94 100644 --- a/english/java/com.aspose.email/mailpriority/_index.md +++ b/english/java/com.aspose.email/mailpriority/_index.md @@ -3,7 +3,7 @@ title: MailPriority second_title: Aspose.Email for Java API Reference description: Represents the mail priopity type: docs -weight: 780 +weight: 781 url: /java/com.aspose.email/mailpriority/ --- diff --git a/english/java/com.aspose.email/mailsensitivity/_index.md b/english/java/com.aspose.email/mailsensitivity/_index.md index c1a7cd2b99..6a82fe0b07 100644 --- a/english/java/com.aspose.email/mailsensitivity/_index.md +++ b/english/java/com.aspose.email/mailsensitivity/_index.md @@ -3,7 +3,7 @@ title: MailSensitivity second_title: Aspose.Email for Java API Reference description: Specifies the sensitivity of a MailMessage. type: docs -weight: 781 +weight: 782 url: /java/com.aspose.email/mailsensitivity/ --- diff --git a/english/java/com.aspose.email/mapimessage/_index.md b/english/java/com.aspose.email/mapimessage/_index.md index 4d7f872fab..3134a73f3b 100644 --- a/english/java/com.aspose.email/mapimessage/_index.md +++ b/english/java/com.aspose.email/mapimessage/_index.md @@ -63,9 +63,8 @@ Instances of the MapiMessage class are used to represent Microsoft Outlook Messa | [checkSignature()](#checkSignature--) | Checking signature exsisting MapiMessage. | | [close()](#close--) | | | [createMapiNode(String key)](#createMapiNode-java.lang.String-) | Creates the mapi node. | -| [decrypt()](#decrypt--) | Decrypts this message | | [decrypt(byte[] certificateRawData, String certificatePassword)](#decrypt-byte---java.lang.String-) | Decrypts this message | -| [decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Decrypts this message | +| [decrypt(SmimeKey key)](#decrypt-com.aspose.email.SmimeKey-) | Decrypts this message | | [deepClone()](#deepClone--) | Creates a new object that is a copy of the current instance. | | [destroyAttachments(String path)](#destroyAttachments-java.lang.String-) | Destroies the attachments in the specified Outlook Message files. | | [dispose()](#dispose--) | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | @@ -297,14 +296,14 @@ Checks whether this message can be treated as a bounce message. [BounceResult](../../com.aspose.email/bounceresult) - Result of checking[BounceResult](../../com.aspose.email/bounceresult). ### checkSignature() {#checkSignature--} ``` -public final System.Security.Cryptography.X509Certificates.X509Certificate2[] checkSignature() +public List checkSignature() ``` Checking signature exsisting MapiMessage. **Returns:** -com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2[] - X.509 signers certificates +java.util.List - X.509 signers certificates ### close() {#close--} ``` public void close() @@ -328,20 +327,6 @@ Creates the mapi node. **Returns:** com.aspose.email.IMapiNode - The IMapiNode interface. -### decrypt() {#decrypt--} -``` -public final MapiMessage decrypt() -``` - - -Decrypts this message - -**Returns:** -[MapiMessage](../../com.aspose.email/mapimessage) - Decrypted MapiMessage - --------------------- - -Method searches the current user and computer My stores for the appropriate certificate and private key. ### decrypt(byte[] certificateRawData, String certificatePassword) {#decrypt-byte---java.lang.String-} ``` public final MapiMessage decrypt(byte[] certificateRawData, String certificatePassword) @@ -353,14 +338,14 @@ Decrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificateRawData | byte[] | X509Certificate2 | +| certificateRawData | byte[] | | | certificatePassword | java.lang.String | | **Returns:** [MapiMessage](../../com.aspose.email/mapimessage) - E-mail message -### decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#decrypt-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### decrypt(SmimeKey key) {#decrypt-com.aspose.email.SmimeKey-} ``` -public final MapiMessage decrypt(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public final MapiMessage decrypt(SmimeKey key) ``` @@ -369,7 +354,7 @@ Decrypts this message **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | System.Security.Cryptography.X509Certificates.X509Certificate2 | +| key | [SmimeKey](../../com.aspose.email/smimekey) | | **Returns:** [MapiMessage](../../com.aspose.email/mapimessage) - E-mail message diff --git a/english/java/com.aspose.email/pemreader/_index.md b/english/java/com.aspose.email/pemreader/_index.md index 69e1542379..058dc930c9 100644 --- a/english/java/com.aspose.email/pemreader/_index.md +++ b/english/java/com.aspose.email/pemreader/_index.md @@ -25,8 +25,8 @@ PEM format reader. | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | -| [getPrivateKey(InputStream pem)](#getPrivateKey-java.io.InputStream-) | Reads private key from stream. | -| [getPrivateKey(String path)](#getPrivateKey-java.lang.String-) | Reads private key from PEM file. | +| [getPrivateKey(InputStream pem)](#getPrivateKey-java.io.InputStream-) | Reads private key from stream | +| [getPrivateKey(String pemFile)](#getPrivateKey-java.lang.String-) | Reads private key from PEM file | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | @@ -67,34 +67,34 @@ public final native Class getClass() java.lang.Class ### getPrivateKey(InputStream pem) {#getPrivateKey-java.io.InputStream-} ``` -public static System.Security.Cryptography.RSACryptoServiceProvider getPrivateKey(InputStream pem) +public static PrivateKey getPrivateKey(InputStream pem) ``` -Reads private key from stream. +Reads private key from stream **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| pem | java.io.InputStream | Stream to read from. | +| pem | java.io.InputStream | Stream to read from | **Returns:** -com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider - Certificate that was read. -### getPrivateKey(String path) {#getPrivateKey-java.lang.String-} +java.security.PrivateKey - Certificate that was read +### getPrivateKey(String pemFile) {#getPrivateKey-java.lang.String-} ``` -public static System.Security.Cryptography.RSACryptoServiceProvider getPrivateKey(String path) +public static PrivateKey getPrivateKey(String pemFile) ``` -Reads private key from PEM file. +Reads private key from PEM file **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| path | java.lang.String | Path to file to read from. | +| pemFile | java.lang.String | path to file to read from | **Returns:** -com.aspose.ms.System.Security.Cryptography.RSACryptoServiceProvider - Certificate that was read. +java.security.PrivateKey - Certificate that was read ### hashCode() {#hashCode--} ``` public native int hashCode() diff --git a/english/java/com.aspose.email/secureemailmanager/_index.md b/english/java/com.aspose.email/secureemailmanager/_index.md index 83f4bf08f7..fbf6838118 100644 --- a/english/java/com.aspose.email/secureemailmanager/_index.md +++ b/english/java/com.aspose.email/secureemailmanager/_index.md @@ -23,16 +23,14 @@ Class that provided methods for working with secure emails. | Method | Description | | --- | --- | -| [attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#attachSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Creates a copy of the specified MailMessage and adds a digital signature to it. | -| [attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options)](#attachSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.email.SignatureOptions-) | Creates a copy of the specified MailMessage and adds a digital signature to it. | -| [attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)](#attachSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Creates a copy of the specified MapiMessage and adds a digital signature to it. | -| [attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options)](#attachSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.email.SignatureOptions-) | Creates a copy of the specified MapiMessage and adds a digital signature to it. | +| [attachSignature(MailMessage msg, SmimeKey key)](#attachSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-) | Creates a copy of the specified MailMessage and adds a digital signature to it. | +| [attachSignature(MailMessage msg, SmimeKey key, SignatureOptions options)](#attachSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-com.aspose.email.SignatureOptions-) | Creates a copy of the specified MailMessage and adds a digital signature to it. | +| [attachSignature(MapiMessage msg, SmimeKey key)](#attachSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-) | Creates a copy of the specified MapiMessage and adds a digital signature to it. | +| [attachSignature(MapiMessage msg, SmimeKey key, SignatureOptions options)](#attachSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-com.aspose.email.SignatureOptions-) | Creates a copy of the specified MapiMessage and adds a digital signature to it. | | [checkSignature(MailMessage msg)](#checkSignature-com.aspose.email.MailMessage-) | Checking signature MailMessage. | -| [checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt)](#checkSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Checking signature MailMessage. | -| [checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store)](#checkSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store-) | Checking signature MailMessage. | +| [checkSignature(MailMessage msg, SmimeKey key)](#checkSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-) | Checking signature MailMessage. | | [checkSignature(MapiMessage msg)](#checkSignature-com.aspose.email.MapiMessage-) | Checking signature MapiMessage. | -| [checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt)](#checkSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-) | Checking signature MapiMessage. | -| [checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store)](#checkSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store-) | Checking signature MapiMessage. | +| [checkSignature(MapiMessage msg, SmimeKey key)](#checkSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-) | Checking signature MapiMessage. | | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | | [hashCode()](#hashCode--) | | @@ -48,9 +46,9 @@ public SecureEmailManager() ``` -### attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#attachSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### attachSignature(MailMessage msg, SmimeKey key) {#attachSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-} ``` -public MailMessage attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MailMessage attachSignature(MailMessage msg, SmimeKey key) ``` @@ -60,13 +58,13 @@ Creates a copy of the specified MailMessage and adds a digital signature to it. | Parameter | Type | Description | | --- | --- | --- | | msg | [MailMessage](../../com.aspose.email/mailmessage) | Source MailMessage. | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | X.509 certificate. | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - Signed MailMessage -### attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options) {#attachSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.email.SignatureOptions-} +### attachSignature(MailMessage msg, SmimeKey key, SignatureOptions options) {#attachSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-com.aspose.email.SignatureOptions-} ``` -public MailMessage attachSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options) +public MailMessage attachSignature(MailMessage msg, SmimeKey key, SignatureOptions options) ``` @@ -76,14 +74,14 @@ Creates a copy of the specified MailMessage and adds a digital signature to it. | Parameter | Type | Description | | --- | --- | --- | | msg | [MailMessage](../../com.aspose.email/mailmessage) | Source MailMessage. | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | X.509 certificate. | | options | [SignatureOptions](../../com.aspose.email/signatureoptions) | Additional options [SignatureOptions](../../com.aspose.email/signatureoptions) | **Returns:** [MailMessage](../../com.aspose.email/mailmessage) - Signed MailMessage -### attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) {#attachSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### attachSignature(MapiMessage msg, SmimeKey key) {#attachSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-} ``` -public MapiMessage attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) +public MapiMessage attachSignature(MapiMessage msg, SmimeKey key) ``` @@ -93,13 +91,13 @@ Creates a copy of the specified MapiMessage and adds a digital signature to it. | Parameter | Type | Description | | --- | --- | --- | | msg | [MapiMessage](../../com.aspose.email/mapimessage) | Source MapiMessage. | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | X.509 certificate. | **Returns:** [MapiMessage](../../com.aspose.email/mapimessage) - Signed MapiMessage -### attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options) {#attachSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.email.SignatureOptions-} +### attachSignature(MapiMessage msg, SmimeKey key, SignatureOptions options) {#attachSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-com.aspose.email.SignatureOptions-} ``` -public MapiMessage attachSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, SignatureOptions options) +public MapiMessage attachSignature(MapiMessage msg, SmimeKey key, SignatureOptions options) ``` @@ -109,7 +107,7 @@ Creates a copy of the specified MapiMessage and adds a digital signature to it. | Parameter | Type | Description | | --- | --- | --- | | msg | [MapiMessage](../../com.aspose.email/mapimessage) | Source MapiMessage. | -| certificate | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | X.509 certificate. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | X.509 certificate. | | options | [SignatureOptions](../../com.aspose.email/signatureoptions) | Additional options [SignatureOptions](../../com.aspose.email/signatureoptions) | **Returns:** @@ -129,9 +127,9 @@ Checking signature MailMessage. **Returns:** [SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) -### checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt) {#checkSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} +### checkSignature(MailMessage msg, SmimeKey key) {#checkSignature-com.aspose.email.MailMessage-com.aspose.email.SmimeKey-} ``` -public final SmimeResult checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt) +public final SmimeResult checkSignature(MailMessage msg, SmimeKey key) ``` @@ -141,24 +139,7 @@ Checking signature MailMessage. | Parameter | Type | Description | | --- | --- | --- | | msg | [MailMessage](../../com.aspose.email/mailmessage) | The MailMessage to check. | -| certificateForDecrypt | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | The certificate to decrypt the MailMessage if it is encrypted. | - -**Returns:** -[SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) -### checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store) {#checkSignature-com.aspose.email.MailMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store-} -``` -public final SmimeResult checkSignature(MailMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store) -``` - - -Checking signature MailMessage. - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| msg | [MailMessage](../../com.aspose.email/mailmessage) | The MailMessage to check. | -| certificateForDecrypt | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | The certificate to decrypt the MailMessage if it is encrypted. | -| store | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store | Store to look up encryption certificates, if null then X509Store(StoreLocation.CurrentUser) is used. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | | **Returns:** [SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) @@ -177,25 +158,9 @@ Checking signature MapiMessage. **Returns:** [SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) -### checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt) {#checkSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-} -``` -public final SmimeResult checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt) -``` - - -Checking signature MapiMessage. - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| msg | [MapiMessage](../../com.aspose.email/mapimessage) | The MapiMessage to check. | -| certificateForDecrypt | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | The certificate to decrypt the MapiMessage if it is encrypted. | - -**Returns:** -[SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) -### checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store) {#checkSignature-com.aspose.email.MapiMessage-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2-com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store-} +### checkSignature(MapiMessage msg, SmimeKey key) {#checkSignature-com.aspose.email.MapiMessage-com.aspose.email.SmimeKey-} ``` -public final SmimeResult checkSignature(MapiMessage msg, System.Security.Cryptography.X509Certificates.X509Certificate2 certificateForDecrypt, System.Security.Cryptography.X509Certificates.X509Store store) +public final SmimeResult checkSignature(MapiMessage msg, SmimeKey key) ``` @@ -205,8 +170,7 @@ Checking signature MapiMessage. | Parameter | Type | Description | | --- | --- | --- | | msg | [MapiMessage](../../com.aspose.email/mapimessage) | The MapiMessage to check. | -| certificateForDecrypt | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2 | The certificate to decrypt the MapiMessage if it is encrypted. | -| store | com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Store | Store to look up encryption certificates, if null then X509Store(StoreLocation.CurrentUser) is used. | +| key | [SmimeKey](../../com.aspose.email/smimekey) | | **Returns:** [SmimeResult](../../com.aspose.email/smimeresult) - Result of checking[SmimeResult](../../com.aspose.email/smimeresult) diff --git a/english/java/com.aspose.email/smimekey/_index.md b/english/java/com.aspose.email/smimekey/_index.md new file mode 100644 index 0000000000..76121085fd --- /dev/null +++ b/english/java/com.aspose.email/smimekey/_index.md @@ -0,0 +1,336 @@ +--- +title: SmimeKey +second_title: Aspose.Email for Java API Reference +description: A wrapper around a PrivateKey and a chain of X509Certificate used to sign or decrypt a MIME message. +type: docs +weight: 657 +url: /java/com.aspose.email/smimekey/ +--- + +**Inheritance:** +java.lang.Object +``` +public class SmimeKey +``` + +A wrapper around a PrivateKey and a chain of X509Certificate used to sign or decrypt a MIME message. +## Constructors + +| Constructor | Description | +| --- | --- | +| [SmimeKey(PrivateKey privateKey, X509Certificate[] certificateChain)](#SmimeKey-java.security.PrivateKey-java.security.cert.X509Certificate...-) | Create a new SmimeKey with the given private key and certificate chain. | +| [SmimeKey(X509Certificate[] certificateChain)](#SmimeKey-java.security.cert.X509Certificate...-) | Create a new SmimeKey with the given private key and certificate chain. | +## Methods + +| Method | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAssociatedAddresses()](#getAssociatedAddresses--) | Compiles and returns the list of email address associated with the \#getCertificate().getCertificate() of this SmimeKey by inspecting the subjects distinguished name. | +| [getCertificate()](#getCertificate--) | Returns the certificate that holds the public key that corresponds to the private key of this SmimeKey . | +| [getCertificateChain()](#getCertificateChain--) | Returns the chain of certificates of this SmimeKey starting with the certificate that holds the public key that corresponds to the private key of this SmimeKey and ending with the trust anchor. | +| [getClass()](#getClass--) | | +| [getPrivateKey()](#getPrivateKey--) | Returns the private key of this SmimeKey . | +| [hashCode()](#hashCode--) | | +| [loadCertificate(InputStream stream)](#loadCertificate-java.io.InputStream-) | Load a new SmimeKey with the given certificate from string -----CERTIFICATE----- | +| [loadCertificate(String crtPath)](#loadCertificate-java.lang.String-) | Load a new SmimeKey with the given private key and certificate from string -----CERTIFICATE----- | +| [loadPFX(InputStream stream, char[] password)](#loadPFX-java.io.InputStream-char---) | Load a new SmimeKey with the given private key and certificate from PFX store | +| [loadPFX(InputStream stream, String alias, char[] password)](#loadPFX-java.io.InputStream-java.lang.String-char---) | Load a new SmimeKey with the given private key and certificate from PFX store | +| [loadPFX(String pfxPath, char[] password)](#loadPFX-java.lang.String-char---) | Load a new SmimeKey with the given private key and certificate from PFX store | +| [loadPFX(String pfxPath, String alias, char[] password)](#loadPFX-java.lang.String-java.lang.String-char---) | Load a new SmimeKey with the given private key and certificate from PFX store | +| [loadPrivateKey(InputStream stream)](#loadPrivateKey-java.io.InputStream-) | Load a new SmimeKey with the given private key from string ---RSA PRIVATE KEY---. | +| [loadPrivateKey(String keyPath)](#loadPrivateKey-java.lang.String-) | Load a new SmimeKey with the given private key from string -----RSA PRIVATE KEY----- | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SmimeKey(PrivateKey privateKey, X509Certificate[] certificateChain) {#SmimeKey-java.security.PrivateKey-java.security.cert.X509Certificate...-} +``` +public SmimeKey(PrivateKey privateKey, X509Certificate[] certificateChain) +``` + + +Create a new SmimeKey with the given private key and certificate chain. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| privateKey | java.security.PrivateKey | The PrivateKey of this SmimeKey | +| certificateChain | java.security.cert.X509Certificate[] | The chain of X509Certificate of this SmimeKey starting with the certificate that holds the public key that corresponds to the given private key and ending with the trust anchor. | + +### SmimeKey(X509Certificate[] certificateChain) {#SmimeKey-java.security.cert.X509Certificate...-} +``` +public SmimeKey(X509Certificate[] certificateChain) +``` + + +Create a new SmimeKey with the given private key and certificate chain. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| certificateChain | java.security.cert.X509Certificate[] | The chain of X509Certificate of this SmimeKey starting with the certificate that holds the public key that corresponds to the given private key and ending with the trust anchor. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAssociatedAddresses() {#getAssociatedAddresses--} +``` +public List getAssociatedAddresses() +``` + + +Compiles and returns the list of email address associated with the \#getCertificate().getCertificate() of this SmimeKey by inspecting the subjects distinguished name. + +**Returns:** +java.util.List - A Collections\#unmodifiableList(List).unmodifiableList(List) of email addresses. +### getCertificate() {#getCertificate--} +``` +public X509Certificate getCertificate() +``` + + +Returns the certificate that holds the public key that corresponds to the private key of this SmimeKey . + +**Returns:** +java.security.cert.X509Certificate - The X509Certificate. +### getCertificateChain() {#getCertificateChain--} +``` +public X509Certificate[] getCertificateChain() +``` + + +Returns the chain of certificates of this SmimeKey starting with the certificate that holds the public key that corresponds to the private key of this SmimeKey and ending with the trust anchor. + +**Returns:** +java.security.cert.X509Certificate[] - The chain of X509Certificate. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPrivateKey() {#getPrivateKey--} +``` +public PrivateKey getPrivateKey() +``` + + +Returns the private key of this SmimeKey . + +**Returns:** +java.security.PrivateKey - The PrivateKey. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### loadCertificate(InputStream stream) {#loadCertificate-java.io.InputStream-} +``` +public static SmimeKey loadCertificate(InputStream stream) +``` + + +Load a new SmimeKey with the given certificate from string -----CERTIFICATE----- + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The InputStream to read the certificate from. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadCertificate(String crtPath) {#loadCertificate-java.lang.String-} +``` +public static SmimeKey loadCertificate(String crtPath) +``` + + +Load a new SmimeKey with the given private key and certificate from string -----CERTIFICATE----- + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| crtPath | java.lang.String | The path to the file containing certificate. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPFX(InputStream stream, char[] password) {#loadPFX-java.io.InputStream-char---} +``` +public static SmimeKey loadPFX(InputStream stream, char[] password) +``` + + +Load a new SmimeKey with the given private key and certificate from PFX store + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The InputStream to read the PFX store from. | +| password | char[] | The password to unlock the PFX store with. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPFX(InputStream stream, String alias, char[] password) {#loadPFX-java.io.InputStream-java.lang.String-char---} +``` +public static SmimeKey loadPFX(InputStream stream, String alias, char[] password) +``` + + +Load a new SmimeKey with the given private key and certificate from PFX store + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The InputStream to read the PFX store from. | +| alias | java.lang.String | The alias of the key entry in the PFX store. | +| password | char[] | The password to unlock the PFX store with. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPFX(String pfxPath, char[] password) {#loadPFX-java.lang.String-char---} +``` +public static SmimeKey loadPFX(String pfxPath, char[] password) +``` + + +Load a new SmimeKey with the given private key and certificate from PFX store + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| pfxPath | java.lang.String | The path to the PFX file | +| password | char[] | The password to unlock the PFX store with. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPFX(String pfxPath, String alias, char[] password) {#loadPFX-java.lang.String-java.lang.String-char---} +``` +public static SmimeKey loadPFX(String pfxPath, String alias, char[] password) +``` + + +Load a new SmimeKey with the given private key and certificate from PFX store + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| pfxPath | java.lang.String | The path to the PFX file | +| alias | java.lang.String | The alias of the key entry in the PFX store. | +| password | char[] | The password to unlock the PFX store with. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPrivateKey(InputStream stream) {#loadPrivateKey-java.io.InputStream-} +``` +public static SmimeKey loadPrivateKey(InputStream stream) +``` + + +Load a new SmimeKey with the given private key from string ---RSA PRIVATE KEY---. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The InputStream to read the private key from. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### loadPrivateKey(String keyPath) {#loadPrivateKey-java.lang.String-} +``` +public static SmimeKey loadPrivateKey(String keyPath) +``` + + +Load a new SmimeKey with the given private key from string -----RSA PRIVATE KEY----- + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| keyPath | java.lang.String | The path to the file containing the private key. | + +**Returns:** +[SmimeKey](../../com.aspose.email/smimekey) +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/english/java/com.aspose.email/smimeresult/_index.md b/english/java/com.aspose.email/smimeresult/_index.md index 91b191fbe3..0e7035553d 100644 --- a/english/java/com.aspose.email/smimeresult/_index.md +++ b/english/java/com.aspose.email/smimeresult/_index.md @@ -3,7 +3,7 @@ title: SmimeResult second_title: Aspose.Email for Java API Reference description: This class containing results of checking secure emails. type: docs -weight: 657 +weight: 658 url: /java/com.aspose.email/smimeresult/ --- @@ -58,14 +58,14 @@ public final native Class getClass() java.lang.Class ### getEncryptionCertificates() {#getEncryptionCertificates--} ``` -public final System.Security.Cryptography.X509Certificates.X509Certificate2Collection getEncryptionCertificates() +public final List getEncryptionCertificates() ``` Gets the collection of certificates with which the email was encrypted. **Returns:** -com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2Collection +java.util.List ### getError() {#getError--} ``` public final RuntimeException getError() @@ -78,14 +78,14 @@ Gets error which was thrown while checking. java.lang.RuntimeException ### getSigningCertificates() {#getSigningCertificates--} ``` -public final System.Security.Cryptography.X509Certificates.X509Certificate2Collection getSigningCertificates() +public final List getSigningCertificates() ``` Gets the collection of certificates with which the email was signed. **Returns:** -com.aspose.ms.System.Security.Cryptography.X509Certificates.X509Certificate2Collection +java.util.List ### hashCode() {#hashCode--} ``` public native int hashCode() diff --git a/english/java/com.aspose.email/smtpclient/_index.md b/english/java/com.aspose.email/smtpclient/_index.md index 5fd4a877d5..b3b60be1a9 100644 --- a/english/java/com.aspose.email/smtpclient/_index.md +++ b/english/java/com.aspose.email/smtpclient/_index.md @@ -3,7 +3,7 @@ title: SmtpClient second_title: Aspose.Email for Java API Reference description: Allows applications to send messages by using the Simple Mail Transfer Protocol SMTP. type: docs -weight: 658 +weight: 659 url: /java/com.aspose.email/smtpclient/ --- diff --git a/english/java/com.aspose.email/smtpdeliverymethod/_index.md b/english/java/com.aspose.email/smtpdeliverymethod/_index.md index 7255b53479..59bce97f0d 100644 --- a/english/java/com.aspose.email/smtpdeliverymethod/_index.md +++ b/english/java/com.aspose.email/smtpdeliverymethod/_index.md @@ -3,7 +3,7 @@ title: SmtpDeliveryMethod second_title: Aspose.Email for Java API Reference description: Smtp delivery method type: docs -weight: 659 +weight: 660 url: /java/com.aspose.email/smtpdeliverymethod/ --- diff --git a/english/java/com.aspose.email/smtpexception/_index.md b/english/java/com.aspose.email/smtpexception/_index.md index a6cfca686d..192aa095ab 100644 --- a/english/java/com.aspose.email/smtpexception/_index.md +++ b/english/java/com.aspose.email/smtpexception/_index.md @@ -3,7 +3,7 @@ title: SmtpException second_title: Aspose.Email for Java API Reference description: Represents the exception that is thrown when the SmtpClient is not able to complete an operation. type: docs -weight: 660 +weight: 661 url: /java/com.aspose.email/smtpexception/ --- diff --git a/english/java/com.aspose.email/smtpfailedrecipientexception/_index.md b/english/java/com.aspose.email/smtpfailedrecipientexception/_index.md index 3d523e1dbb..fb67078012 100644 --- a/english/java/com.aspose.email/smtpfailedrecipientexception/_index.md +++ b/english/java/com.aspose.email/smtpfailedrecipientexception/_index.md @@ -3,7 +3,7 @@ title: SmtpFailedRecipientException second_title: Aspose.Email for Java API Reference description: Represents the exception which arises when the specified recipient is wrong type: docs -weight: 661 +weight: 662 url: /java/com.aspose.email/smtpfailedrecipientexception/ --- diff --git a/english/java/com.aspose.email/smtpfailedrecipientsexception/_index.md b/english/java/com.aspose.email/smtpfailedrecipientsexception/_index.md index c0e7312cfe..3ff668989c 100644 --- a/english/java/com.aspose.email/smtpfailedrecipientsexception/_index.md +++ b/english/java/com.aspose.email/smtpfailedrecipientsexception/_index.md @@ -3,7 +3,7 @@ title: SmtpFailedRecipientsException second_title: Aspose.Email for Java API Reference description: Summary description for SmtpFailedRecipientsException. type: docs -weight: 662 +weight: 663 url: /java/com.aspose.email/smtpfailedrecipientsexception/ --- diff --git a/english/java/com.aspose.email/smtpknownauthenticationtype/_index.md b/english/java/com.aspose.email/smtpknownauthenticationtype/_index.md index 28b0cda260..485a7fe3ed 100644 --- a/english/java/com.aspose.email/smtpknownauthenticationtype/_index.md +++ b/english/java/com.aspose.email/smtpknownauthenticationtype/_index.md @@ -3,7 +3,7 @@ title: SmtpKnownAuthenticationType second_title: Aspose.Email for Java API Reference description: type: docs -weight: 663 +weight: 664 url: /java/com.aspose.email/smtpknownauthenticationtype/ --- diff --git a/english/java/com.aspose.email/smtpstatuscode/_index.md b/english/java/com.aspose.email/smtpstatuscode/_index.md index 4b69d56a9b..a230d3179a 100644 --- a/english/java/com.aspose.email/smtpstatuscode/_index.md +++ b/english/java/com.aspose.email/smtpstatuscode/_index.md @@ -3,7 +3,7 @@ title: SmtpStatusCode second_title: Aspose.Email for Java API Reference description: Smtp status codes type: docs -weight: 664 +weight: 665 url: /java/com.aspose.email/smtpstatuscode/ --- diff --git a/english/java/com.aspose.email/socksauthenticationmethods/_index.md b/english/java/com.aspose.email/socksauthenticationmethods/_index.md index 8badd9306f..33dc9761ba 100644 --- a/english/java/com.aspose.email/socksauthenticationmethods/_index.md +++ b/english/java/com.aspose.email/socksauthenticationmethods/_index.md @@ -3,7 +3,7 @@ title: SocksAuthenticationMethods second_title: Aspose.Email for Java API Reference description: The authentication methods supported by the SOCKS protocol type: docs -weight: 665 +weight: 666 url: /java/com.aspose.email/socksauthenticationmethods/ --- diff --git a/english/java/com.aspose.email/socksproxy/_index.md b/english/java/com.aspose.email/socksproxy/_index.md index d1b986872b..a52fbd41ad 100644 --- a/english/java/com.aspose.email/socksproxy/_index.md +++ b/english/java/com.aspose.email/socksproxy/_index.md @@ -3,7 +3,7 @@ title: SocksProxy second_title: Aspose.Email for Java API Reference description: SOCKS proxy client. type: docs -weight: 666 +weight: 667 url: /java/com.aspose.email/socksproxy/ --- diff --git a/english/java/com.aspose.email/socksversion/_index.md b/english/java/com.aspose.email/socksversion/_index.md index c6ac6d6f9b..2bae50e418 100644 --- a/english/java/com.aspose.email/socksversion/_index.md +++ b/english/java/com.aspose.email/socksversion/_index.md @@ -3,7 +3,7 @@ title: SocksVersion second_title: Aspose.Email for Java API Reference description: Versions of the SOCKS protocol type: docs -weight: 667 +weight: 668 url: /java/com.aspose.email/socksversion/ --- diff --git a/english/java/com.aspose.email/sortconditions/_index.md b/english/java/com.aspose.email/sortconditions/_index.md index 5c3b07f0c7..7423ae7ccd 100644 --- a/english/java/com.aspose.email/sortconditions/_index.md +++ b/english/java/com.aspose.email/sortconditions/_index.md @@ -3,7 +3,7 @@ title: SortConditions second_title: Aspose.Email for Java API Reference description: Provides the search conditions for the SORT extension. type: docs -weight: 668 +weight: 669 url: /java/com.aspose.email/sortconditions/ --- diff --git a/english/java/com.aspose.email/sortingkey/_index.md b/english/java/com.aspose.email/sortingkey/_index.md index 739340f104..6c1e7d5951 100644 --- a/english/java/com.aspose.email/sortingkey/_index.md +++ b/english/java/com.aspose.email/sortingkey/_index.md @@ -3,7 +3,7 @@ title: SortingKey second_title: Aspose.Email for Java API Reference description: Sort criterias for SORT command See more https//tools.ietf.org/html/rfc5256 type: docs -weight: 669 +weight: 670 url: /java/com.aspose.email/sortingkey/ --- diff --git a/english/java/com.aspose.email/spamanalyzer/_index.md b/english/java/com.aspose.email/spamanalyzer/_index.md index c7834cafbf..3f11177dad 100644 --- a/english/java/com.aspose.email/spamanalyzer/_index.md +++ b/english/java/com.aspose.email/spamanalyzer/_index.md @@ -3,7 +3,7 @@ title: SpamAnalyzer second_title: Aspose.Email for Java API Reference description: Class which allows applications to detect spam e-mails with self-learning Bayesian filter. type: docs -weight: 670 +weight: 671 url: /java/com.aspose.email/spamanalyzer/ --- diff --git a/english/java/com.aspose.email/standardformatter/_index.md b/english/java/com.aspose.email/standardformatter/_index.md index 1261bd1739..5f763c1766 100644 --- a/english/java/com.aspose.email/standardformatter/_index.md +++ b/english/java/com.aspose.email/standardformatter/_index.md @@ -3,7 +3,7 @@ title: StandardFormatter second_title: Aspose.Email for Java API Reference description: Represents the class for formatting log entry messsages. type: docs -weight: 671 +weight: 672 url: /java/com.aspose.email/standardformatter/ --- diff --git a/english/java/com.aspose.email/standardipmfolder/_index.md b/english/java/com.aspose.email/standardipmfolder/_index.md index 1bb31c4edb..a9590dee50 100644 --- a/english/java/com.aspose.email/standardipmfolder/_index.md +++ b/english/java/com.aspose.email/standardipmfolder/_index.md @@ -3,7 +3,7 @@ title: StandardIpmFolder second_title: Aspose.Email for Java API Reference description: Represents a standard interpersonal message IPM folders. type: docs -weight: 672 +weight: 673 url: /java/com.aspose.email/standardipmfolder/ --- diff --git a/english/java/com.aspose.email/storageprocessedeventargs/_index.md b/english/java/com.aspose.email/storageprocessedeventargs/_index.md index fb972667cf..c83a931873 100644 --- a/english/java/com.aspose.email/storageprocessedeventargs/_index.md +++ b/english/java/com.aspose.email/storageprocessedeventargs/_index.md @@ -3,7 +3,7 @@ title: StorageProcessedEventArgs second_title: Aspose.Email for Java API Reference description: Provides data for the event type: docs -weight: 673 +weight: 674 url: /java/com.aspose.email/storageprocessedeventargs/ --- diff --git a/english/java/com.aspose.email/storageprocessedeventhandler/_index.md b/english/java/com.aspose.email/storageprocessedeventhandler/_index.md index b0612278c7..3e969e79c5 100644 --- a/english/java/com.aspose.email/storageprocessedeventhandler/_index.md +++ b/english/java/com.aspose.email/storageprocessedeventhandler/_index.md @@ -3,7 +3,7 @@ title: StorageProcessedEventHandler second_title: Aspose.Email for Java API Reference description: Represents the method that will handle an event. type: docs -weight: 674 +weight: 675 url: /java/com.aspose.email/storageprocessedeventhandler/ --- diff --git a/english/java/com.aspose.email/storageprocessingeventargs/_index.md b/english/java/com.aspose.email/storageprocessingeventargs/_index.md index 805248c179..81313f30ac 100644 --- a/english/java/com.aspose.email/storageprocessingeventargs/_index.md +++ b/english/java/com.aspose.email/storageprocessingeventargs/_index.md @@ -3,7 +3,7 @@ title: StorageProcessingEventArgs second_title: Aspose.Email for Java API Reference description: Provides data for the event type: docs -weight: 675 +weight: 676 url: /java/com.aspose.email/storageprocessingeventargs/ --- diff --git a/english/java/com.aspose.email/storageprocessingeventhandler/_index.md b/english/java/com.aspose.email/storageprocessingeventhandler/_index.md index 6768f76bfd..0b91d57dd1 100644 --- a/english/java/com.aspose.email/storageprocessingeventhandler/_index.md +++ b/english/java/com.aspose.email/storageprocessingeventhandler/_index.md @@ -3,7 +3,7 @@ title: StorageProcessingEventHandler second_title: Aspose.Email for Java API Reference description: Event handler for the StoragePreProcessing. type: docs -weight: 676 +weight: 677 url: /java/com.aspose.email/storageprocessingeventhandler/ --- diff --git a/english/java/com.aspose.email/stringcomparisonfield/_index.md b/english/java/com.aspose.email/stringcomparisonfield/_index.md index f2244465f2..3f6b401552 100644 --- a/english/java/com.aspose.email/stringcomparisonfield/_index.md +++ b/english/java/com.aspose.email/stringcomparisonfield/_index.md @@ -3,7 +3,7 @@ title: StringComparisonField second_title: Aspose.Email for Java API Reference description: Represents the string search field. type: docs -weight: 677 +weight: 678 url: /java/com.aspose.email/stringcomparisonfield/ --- diff --git a/english/java/com.aspose.email/syncfolderresult/_index.md b/english/java/com.aspose.email/syncfolderresult/_index.md index 253ba9589a..7c884b19ff 100644 --- a/english/java/com.aspose.email/syncfolderresult/_index.md +++ b/english/java/com.aspose.email/syncfolderresult/_index.md @@ -3,7 +3,7 @@ title: SyncFolderResult second_title: Aspose.Email for Java API Reference description: Result for SyncFolder operation type: docs -weight: 678 +weight: 679 url: /java/com.aspose.email/syncfolderresult/ --- diff --git a/english/java/com.aspose.email/syncfoldertype/_index.md b/english/java/com.aspose.email/syncfoldertype/_index.md index 274e05d6d9..f1148d30c8 100644 --- a/english/java/com.aspose.email/syncfoldertype/_index.md +++ b/english/java/com.aspose.email/syncfoldertype/_index.md @@ -3,7 +3,7 @@ title: SyncFolderType second_title: Aspose.Email for Java API Reference description: Folder synchronization types type: docs -weight: 679 +weight: 680 url: /java/com.aspose.email/syncfoldertype/ --- diff --git a/english/java/com.aspose.email/syncstate/_index.md b/english/java/com.aspose.email/syncstate/_index.md index 21c27f1745..3981d23bf8 100644 --- a/english/java/com.aspose.email/syncstate/_index.md +++ b/english/java/com.aspose.email/syncstate/_index.md @@ -3,7 +3,7 @@ title: SyncState second_title: Aspose.Email for Java API Reference description: Synchronization object for folder synchronization operation. type: docs -weight: 680 +weight: 681 url: /java/com.aspose.email/syncstate/ --- diff --git a/english/java/com.aspose.email/syntaxvalidatingeventargs/_index.md b/english/java/com.aspose.email/syntaxvalidatingeventargs/_index.md index c9225dfe41..85e9fc3974 100644 --- a/english/java/com.aspose.email/syntaxvalidatingeventargs/_index.md +++ b/english/java/com.aspose.email/syntaxvalidatingeventargs/_index.md @@ -3,7 +3,7 @@ title: SyntaxValidatingEventArgs second_title: Aspose.Email for Java API Reference description: Provides data for the SyntaxValidating event. type: docs -weight: 681 +weight: 682 url: /java/com.aspose.email/syntaxvalidatingeventargs/ --- diff --git a/english/java/com.aspose.email/syntaxvalidatingeventhandler/_index.md b/english/java/com.aspose.email/syntaxvalidatingeventhandler/_index.md index 9400b04f12..fb3f1a1bb3 100644 --- a/english/java/com.aspose.email/syntaxvalidatingeventhandler/_index.md +++ b/english/java/com.aspose.email/syntaxvalidatingeventhandler/_index.md @@ -3,7 +3,7 @@ title: SyntaxValidatingEventHandler second_title: Aspose.Email for Java API Reference description: Represents the event handler for SyntaxValidatingEvent. type: docs -weight: 682 +weight: 683 url: /java/com.aspose.email/syntaxvalidatingeventhandler/ --- diff --git a/english/java/com.aspose.email/task/_index.md b/english/java/com.aspose.email/task/_index.md index c67b4b4619..ca03317989 100644 --- a/english/java/com.aspose.email/task/_index.md +++ b/english/java/com.aspose.email/task/_index.md @@ -3,7 +3,7 @@ title: Task second_title: Aspose.Email for Java API Reference description: Represents the exchange task information. type: docs -weight: 684 +weight: 685 url: /java/com.aspose.email/task/ --- diff --git a/english/java/com.aspose.email/taskcollection/_index.md b/english/java/com.aspose.email/taskcollection/_index.md index 5332775b63..bdeab0043c 100644 --- a/english/java/com.aspose.email/taskcollection/_index.md +++ b/english/java/com.aspose.email/taskcollection/_index.md @@ -3,7 +3,7 @@ title: TaskCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of Task objects. type: docs -weight: 685 +weight: 686 url: /java/com.aspose.email/taskcollection/ --- diff --git a/english/java/com.aspose.email/taskregeneratingpattern/_index.md b/english/java/com.aspose.email/taskregeneratingpattern/_index.md index 32d3f6c64f..f52c083626 100644 --- a/english/java/com.aspose.email/taskregeneratingpattern/_index.md +++ b/english/java/com.aspose.email/taskregeneratingpattern/_index.md @@ -3,7 +3,7 @@ title: TaskRegeneratingPattern second_title: Aspose.Email for Java API Reference description: Represents the regenerating recurrence pattern that specifies how many days weeks months or years after the completion of the current task the next occurrence will be due. type: docs -weight: 686 +weight: 687 url: /java/com.aspose.email/taskregeneratingpattern/ --- diff --git a/english/java/com.aspose.email/taskregeneratingtype/_index.md b/english/java/com.aspose.email/taskregeneratingtype/_index.md index 646a48bd9b..67f1c31894 100644 --- a/english/java/com.aspose.email/taskregeneratingtype/_index.md +++ b/english/java/com.aspose.email/taskregeneratingtype/_index.md @@ -3,7 +3,7 @@ title: TaskRegeneratingType second_title: Aspose.Email for Java API Reference description: Enumerates the types of regenerating pattern. type: docs -weight: 687 +weight: 688 url: /java/com.aspose.email/taskregeneratingtype/ --- diff --git a/english/java/com.aspose.email/tasksaveformat/_index.md b/english/java/com.aspose.email/tasksaveformat/_index.md index a7631d2bbe..431e2b0e45 100644 --- a/english/java/com.aspose.email/tasksaveformat/_index.md +++ b/english/java/com.aspose.email/tasksaveformat/_index.md @@ -3,7 +3,7 @@ title: TaskSaveFormat second_title: Aspose.Email for Java API Reference description: Enumerates TaskSaveFormat type: docs -weight: 688 +weight: 689 url: /java/com.aspose.email/tasksaveformat/ --- diff --git a/english/java/com.aspose.email/templateengine/_index.md b/english/java/com.aspose.email/templateengine/_index.md index 0bad0ec807..4a6968d142 100644 --- a/english/java/com.aspose.email/templateengine/_index.md +++ b/english/java/com.aspose.email/templateengine/_index.md @@ -3,7 +3,7 @@ title: TemplateEngine second_title: Aspose.Email for Java API Reference description: This class uses specified template to construct E-Mail messages. type: docs -weight: 689 +weight: 690 url: /java/com.aspose.email/templateengine/ --- diff --git a/english/java/com.aspose.email/templateroutine/_index.md b/english/java/com.aspose.email/templateroutine/_index.md index a38f48a0fd..d285e551cc 100644 --- a/english/java/com.aspose.email/templateroutine/_index.md +++ b/english/java/com.aspose.email/templateroutine/_index.md @@ -3,7 +3,7 @@ title: TemplateRoutine second_title: Aspose.Email for Java API Reference description: Represents the routine used in the template file. type: docs -weight: 690 +weight: 691 url: /java/com.aspose.email/templateroutine/ --- diff --git a/english/java/com.aspose.email/textformat/_index.md b/english/java/com.aspose.email/textformat/_index.md index 09a4d7191b..403f29f252 100644 --- a/english/java/com.aspose.email/textformat/_index.md +++ b/english/java/com.aspose.email/textformat/_index.md @@ -3,7 +3,7 @@ title: TextFormat second_title: Aspose.Email for Java API Reference description: Defines format of a text. type: docs -weight: 691 +weight: 692 url: /java/com.aspose.email/textformat/ --- diff --git a/english/java/com.aspose.email/tgzreader/_index.md b/english/java/com.aspose.email/tgzreader/_index.md index aa9cdba317..c1927d41c1 100644 --- a/english/java/com.aspose.email/tgzreader/_index.md +++ b/english/java/com.aspose.email/tgzreader/_index.md @@ -3,7 +3,7 @@ title: TgzReader second_title: Aspose.Email for Java API Reference description: The mailbox items reader of Zimbra tgz storage. type: docs -weight: 692 +weight: 693 url: /java/com.aspose.email/tgzreader/ --- diff --git a/english/java/com.aspose.email/threadsearchconditions/_index.md b/english/java/com.aspose.email/threadsearchconditions/_index.md index c1e7f56957..57c249d204 100644 --- a/english/java/com.aspose.email/threadsearchconditions/_index.md +++ b/english/java/com.aspose.email/threadsearchconditions/_index.md @@ -3,7 +3,7 @@ title: ThreadSearchConditions second_title: Aspose.Email for Java API Reference description: Provides the search conditions to retrieve email thread. type: docs -weight: 693 +weight: 694 url: /java/com.aspose.email/threadsearchconditions/ --- diff --git a/english/java/com.aspose.email/thumbnail/_index.md b/english/java/com.aspose.email/thumbnail/_index.md index d905187778..ca4d3294b7 100644 --- a/english/java/com.aspose.email/thumbnail/_index.md +++ b/english/java/com.aspose.email/thumbnail/_index.md @@ -3,7 +3,7 @@ title: Thumbnail second_title: Aspose.Email for Java API Reference description: https//docs.microsoft.com/en-us/graph/api/resources/thumbnailviewgraph-rest-1.0 The thumbnail resource type represents a thumbnail for an image video document or any item that has a bitmap representation. type: docs -weight: 694 +weight: 695 url: /java/com.aspose.email/thumbnail/ --- diff --git a/english/java/com.aspose.email/thumbnailset/_index.md b/english/java/com.aspose.email/thumbnailset/_index.md index fa363092e0..320579dbf0 100644 --- a/english/java/com.aspose.email/thumbnailset/_index.md +++ b/english/java/com.aspose.email/thumbnailset/_index.md @@ -3,7 +3,7 @@ title: ThumbnailSet second_title: Aspose.Email for Java API Reference description: https//docs.microsoft.com/en-us/graph/api/resources/thumbnailsetviewgraph-rest-1.0 The ThumbnailSet resource is a keyed collection of thumbnail resources. type: docs -weight: 695 +weight: 696 url: /java/com.aspose.email/thumbnailset/ --- diff --git a/english/java/com.aspose.email/timeoutexception/_index.md b/english/java/com.aspose.email/timeoutexception/_index.md index 13e94a23d3..a73cf6da32 100644 --- a/english/java/com.aspose.email/timeoutexception/_index.md +++ b/english/java/com.aspose.email/timeoutexception/_index.md @@ -3,7 +3,7 @@ title: TimeoutException second_title: Aspose.Email for Java API Reference description: Represents the exception that is thrown when the time for operation has expired. type: docs -weight: 696 +weight: 697 url: /java/com.aspose.email/timeoutexception/ --- diff --git a/english/java/com.aspose.email/timeoutreachedhandler/_index.md b/english/java/com.aspose.email/timeoutreachedhandler/_index.md index 157ac29663..e55a798d3f 100644 --- a/english/java/com.aspose.email/timeoutreachedhandler/_index.md +++ b/english/java/com.aspose.email/timeoutreachedhandler/_index.md @@ -3,7 +3,7 @@ title: TimeoutReachedHandler second_title: Aspose.Email for Java API Reference description: Raised if timed out while saving. type: docs -weight: 697 +weight: 698 url: /java/com.aspose.email/timeoutreachedhandler/ --- diff --git a/english/java/com.aspose.email/tipmethod/_index.md b/english/java/com.aspose.email/tipmethod/_index.md index 79ed7752c3..191e578d53 100644 --- a/english/java/com.aspose.email/tipmethod/_index.md +++ b/english/java/com.aspose.email/tipmethod/_index.md @@ -3,7 +3,7 @@ title: TIPMethod second_title: Aspose.Email for Java API Reference description: Defines the iTIP iCalendar Transport-Independent Interoperability Protocol methods associated with an object. type: docs -weight: 683 +weight: 684 url: /java/com.aspose.email/tipmethod/ --- diff --git a/english/java/com.aspose.email/tnefloadoptions/_index.md b/english/java/com.aspose.email/tnefloadoptions/_index.md index 7d5501898b..f1d8136ac1 100644 --- a/english/java/com.aspose.email/tnefloadoptions/_index.md +++ b/english/java/com.aspose.email/tnefloadoptions/_index.md @@ -3,7 +3,7 @@ title: TnefLoadOptions second_title: Aspose.Email for Java API Reference description: Allows to specify additional options when loading MailMessage from Tnef format. type: docs -weight: 698 +weight: 699 url: /java/com.aspose.email/tnefloadoptions/ --- diff --git a/english/java/com.aspose.email/tokenprovider/_index.md b/english/java/com.aspose.email/tokenprovider/_index.md index 0943ebae57..b65acfe234 100644 --- a/english/java/com.aspose.email/tokenprovider/_index.md +++ b/english/java/com.aspose.email/tokenprovider/_index.md @@ -3,7 +3,7 @@ title: TokenProvider second_title: Aspose.Email for Java API Reference description: Class TokenProvider allows to retrieve access token for mail services. type: docs -weight: 699 +weight: 700 url: /java/com.aspose.email/tokenprovider/ --- diff --git a/english/java/com.aspose.email/tokentype/_index.md b/english/java/com.aspose.email/tokentype/_index.md index 153a3ff4cd..68f3d93335 100644 --- a/english/java/com.aspose.email/tokentype/_index.md +++ b/english/java/com.aspose.email/tokentype/_index.md @@ -3,7 +3,7 @@ title: TokenType second_title: Aspose.Email for Java API Reference description: Defines OAuth token types type: docs -weight: 700 +weight: 701 url: /java/com.aspose.email/tokentype/ --- diff --git a/english/java/com.aspose.email/trackingstringdictionary/_index.md b/english/java/com.aspose.email/trackingstringdictionary/_index.md index f5713d120c..17c3dd10d5 100644 --- a/english/java/com.aspose.email/trackingstringdictionary/_index.md +++ b/english/java/com.aspose.email/trackingstringdictionary/_index.md @@ -3,7 +3,7 @@ title: TrackingStringDictionary second_title: Aspose.Email for Java API Reference description: type: docs -weight: 701 +weight: 702 url: /java/com.aspose.email/trackingstringdictionary/ --- diff --git a/english/java/com.aspose.email/transferencoding/_index.md b/english/java/com.aspose.email/transferencoding/_index.md index 3ea880214b..f24883fd20 100644 --- a/english/java/com.aspose.email/transferencoding/_index.md +++ b/english/java/com.aspose.email/transferencoding/_index.md @@ -3,7 +3,7 @@ title: TransferEncoding second_title: Aspose.Email for Java API Reference description: Specifies the Content-Transfer-Encoding header information. type: docs -weight: 702 +weight: 703 url: /java/com.aspose.email/transferencoding/ --- diff --git a/english/java/com.aspose.email/traversalasposeexception/_index.md b/english/java/com.aspose.email/traversalasposeexception/_index.md index 2f6095089f..72de6d0785 100644 --- a/english/java/com.aspose.email/traversalasposeexception/_index.md +++ b/english/java/com.aspose.email/traversalasposeexception/_index.md @@ -3,7 +3,7 @@ title: TraversalAsposeException second_title: Aspose.Email for Java API Reference description: Represents the exception that can occur when traversing a storage. type: docs -weight: 703 +weight: 704 url: /java/com.aspose.email/traversalasposeexception/ --- diff --git a/english/java/com.aspose.email/traversalexceptionscallback/_index.md b/english/java/com.aspose.email/traversalexceptionscallback/_index.md index f9d03ab5fd..908397f04d 100644 --- a/english/java/com.aspose.email/traversalexceptionscallback/_index.md +++ b/english/java/com.aspose.email/traversalexceptionscallback/_index.md @@ -3,7 +3,7 @@ title: TraversalExceptionsCallback second_title: Aspose.Email for Java API Reference description: Represents the callback method that handles the exceptions during storage traversal. type: docs -weight: 704 +weight: 705 url: /java/com.aspose.email/traversalexceptionscallback/ --- diff --git a/english/java/com.aspose.email/traversalfailurekind/_index.md b/english/java/com.aspose.email/traversalfailurekind/_index.md index 6dc31c0f2c..ebdaa5a50f 100644 --- a/english/java/com.aspose.email/traversalfailurekind/_index.md +++ b/english/java/com.aspose.email/traversalfailurekind/_index.md @@ -3,7 +3,7 @@ title: TraversalFailureKind second_title: Aspose.Email for Java API Reference description: Represents the kind of failure that can occur when traversing a storage. type: docs -weight: 705 +weight: 706 url: /java/com.aspose.email/traversalfailurekind/ --- diff --git a/english/java/com.aspose.email/unifiedmessagingconfiguration/_index.md b/english/java/com.aspose.email/unifiedmessagingconfiguration/_index.md index 0bdc8a2e5c..4707727157 100644 --- a/english/java/com.aspose.email/unifiedmessagingconfiguration/_index.md +++ b/english/java/com.aspose.email/unifiedmessagingconfiguration/_index.md @@ -3,7 +3,7 @@ title: UnifiedMessagingConfiguration second_title: Aspose.Email for Java API Reference description: Unified messaging configuration type: docs -weight: 706 +weight: 707 url: /java/com.aspose.email/unifiedmessagingconfiguration/ --- diff --git a/english/java/com.aspose.email/updatesettings/_index.md b/english/java/com.aspose.email/updatesettings/_index.md index 53b7b7aa37..07df652a97 100644 --- a/english/java/com.aspose.email/updatesettings/_index.md +++ b/english/java/com.aspose.email/updatesettings/_index.md @@ -3,7 +3,7 @@ title: UpdateSettings second_title: Aspose.Email for Java API Reference description: Update settings type: docs -weight: 707 +weight: 708 url: /java/com.aspose.email/updatesettings/ --- diff --git a/english/java/com.aspose.email/updatetaskoptions/_index.md b/english/java/com.aspose.email/updatetaskoptions/_index.md index 3a194d0078..fd6ec97e38 100644 --- a/english/java/com.aspose.email/updatetaskoptions/_index.md +++ b/english/java/com.aspose.email/updatetaskoptions/_index.md @@ -3,7 +3,7 @@ title: UpdateTaskOptions second_title: Aspose.Email for Java API Reference description: Enumerates update task options. type: docs -weight: 708 +weight: 709 url: /java/com.aspose.email/updatetaskoptions/ --- diff --git a/english/java/com.aspose.email/url/_index.md b/english/java/com.aspose.email/url/_index.md index 0de8ee3933..1952a25baf 100644 --- a/english/java/com.aspose.email/url/_index.md +++ b/english/java/com.aspose.email/url/_index.md @@ -3,7 +3,7 @@ title: Url second_title: Aspose.Email for Java API Reference description: Objects represents a URL and its category. type: docs -weight: 709 +weight: 710 url: /java/com.aspose.email/url/ --- diff --git a/english/java/com.aspose.email/urlcategory/_index.md b/english/java/com.aspose.email/urlcategory/_index.md index 57d14d1eb8..d7514cc273 100644 --- a/english/java/com.aspose.email/urlcategory/_index.md +++ b/english/java/com.aspose.email/urlcategory/_index.md @@ -3,7 +3,7 @@ title: UrlCategory second_title: Aspose.Email for Java API Reference description: Represents category for a URL type: docs -weight: 710 +weight: 711 url: /java/com.aspose.email/urlcategory/ --- diff --git a/english/java/com.aspose.email/urllist/_index.md b/english/java/com.aspose.email/urllist/_index.md index 64ca14f780..ff9b558e9a 100644 --- a/english/java/com.aspose.email/urllist/_index.md +++ b/english/java/com.aspose.email/urllist/_index.md @@ -3,7 +3,7 @@ title: UrlList second_title: Aspose.Email for Java API Reference description: List of urls for contact type: docs -weight: 711 +weight: 712 url: /java/com.aspose.email/urllist/ --- diff --git a/english/java/com.aspose.email/userconfiguration/_index.md b/english/java/com.aspose.email/userconfiguration/_index.md index 5004a7fb0b..abd0665d6b 100644 --- a/english/java/com.aspose.email/userconfiguration/_index.md +++ b/english/java/com.aspose.email/userconfiguration/_index.md @@ -3,7 +3,7 @@ title: UserConfiguration second_title: Aspose.Email for Java API Reference description: Represents user configuration type: docs -weight: 712 +weight: 713 url: /java/com.aspose.email/userconfiguration/ --- diff --git a/english/java/com.aspose.email/userconfigurationname/_index.md b/english/java/com.aspose.email/userconfigurationname/_index.md index f040d51468..0454ad05a6 100644 --- a/english/java/com.aspose.email/userconfigurationname/_index.md +++ b/english/java/com.aspose.email/userconfigurationname/_index.md @@ -3,7 +3,7 @@ title: UserConfigurationName second_title: Aspose.Email for Java API Reference description: Represents user configuration name type: docs -weight: 713 +weight: 714 url: /java/com.aspose.email/userconfigurationname/ --- diff --git a/english/java/com.aspose.email/userrole/_index.md b/english/java/com.aspose.email/userrole/_index.md index 40fd7b1aa5..2d5d517f69 100644 --- a/english/java/com.aspose.email/userrole/_index.md +++ b/english/java/com.aspose.email/userrole/_index.md @@ -3,7 +3,7 @@ title: UserRole second_title: Aspose.Email for Java API Reference description: OneNote user role type: docs -weight: 714 +weight: 715 url: /java/com.aspose.email/userrole/ --- diff --git a/english/java/com.aspose.email/usersettingerror/_index.md b/english/java/com.aspose.email/usersettingerror/_index.md index 2728f6114c..881f6a3cb2 100644 --- a/english/java/com.aspose.email/usersettingerror/_index.md +++ b/english/java/com.aspose.email/usersettingerror/_index.md @@ -3,7 +3,7 @@ title: UserSettingError second_title: Aspose.Email for Java API Reference description: Represents an error from a GetUserSettings request. type: docs -weight: 715 +weight: 716 url: /java/com.aspose.email/usersettingerror/ --- diff --git a/english/java/com.aspose.email/usersettingname/_index.md b/english/java/com.aspose.email/usersettingname/_index.md index eeb2d3a0bb..66e4b5d0ad 100644 --- a/english/java/com.aspose.email/usersettingname/_index.md +++ b/english/java/com.aspose.email/usersettingname/_index.md @@ -3,7 +3,7 @@ title: UserSettingName second_title: Aspose.Email for Java API Reference description: User settings that can be requested using GetUserSettings. type: docs -weight: 716 +weight: 717 url: /java/com.aspose.email/usersettingname/ --- diff --git a/english/java/com.aspose.email/validationpolicy/_index.md b/english/java/com.aspose.email/validationpolicy/_index.md index 61d9b25f83..f12ea7ae0b 100644 --- a/english/java/com.aspose.email/validationpolicy/_index.md +++ b/english/java/com.aspose.email/validationpolicy/_index.md @@ -3,7 +3,7 @@ title: ValidationPolicy second_title: Aspose.Email for Java API Reference description: Presents the policy of validating email address. type: docs -weight: 746 +weight: 747 url: /java/com.aspose.email/validationpolicy/ --- diff --git a/english/java/com.aspose.email/validationresponsecode/_index.md b/english/java/com.aspose.email/validationresponsecode/_index.md index c62ce67345..7d36e38e69 100644 --- a/english/java/com.aspose.email/validationresponsecode/_index.md +++ b/english/java/com.aspose.email/validationresponsecode/_index.md @@ -3,7 +3,7 @@ title: ValidationResponseCode second_title: Aspose.Email for Java API Reference description: Represents the response status of the mail validating process. type: docs -weight: 747 +weight: 748 url: /java/com.aspose.email/validationresponsecode/ --- diff --git a/english/java/com.aspose.email/validationresult/_index.md b/english/java/com.aspose.email/validationresult/_index.md index 82e3572d4c..0b7f5e3cff 100644 --- a/english/java/com.aspose.email/validationresult/_index.md +++ b/english/java/com.aspose.email/validationresult/_index.md @@ -3,7 +3,7 @@ title: ValidationResult second_title: Aspose.Email for Java API Reference description: Present the result of the email validating process. type: docs -weight: 748 +weight: 749 url: /java/com.aspose.email/validationresult/ --- diff --git a/english/java/com.aspose.email/vcardagent/_index.md b/english/java/com.aspose.email/vcardagent/_index.md index 247a6f5bf6..58a5f2db7b 100644 --- a/english/java/com.aspose.email/vcardagent/_index.md +++ b/english/java/com.aspose.email/vcardagent/_index.md @@ -3,7 +3,7 @@ title: VCardAgent second_title: Aspose.Email for Java API Reference description: Represents a vCard Agent property type: docs -weight: 717 +weight: 718 url: /java/com.aspose.email/vcardagent/ --- diff --git a/english/java/com.aspose.email/vcardcontact/_index.md b/english/java/com.aspose.email/vcardcontact/_index.md index bc301e86e7..0a39449434 100644 --- a/english/java/com.aspose.email/vcardcontact/_index.md +++ b/english/java/com.aspose.email/vcardcontact/_index.md @@ -3,7 +3,7 @@ title: VCardContact second_title: Aspose.Email for Java API Reference description: Represents a vCard contact type: docs -weight: 718 +weight: 719 url: /java/com.aspose.email/vcardcontact/ --- diff --git a/english/java/com.aspose.email/vcarddeliveryaddress/_index.md b/english/java/com.aspose.email/vcarddeliveryaddress/_index.md index 7df45bb595..66dcfcd6c4 100644 --- a/english/java/com.aspose.email/vcarddeliveryaddress/_index.md +++ b/english/java/com.aspose.email/vcarddeliveryaddress/_index.md @@ -3,7 +3,7 @@ title: VCardDeliveryAddress second_title: Aspose.Email for Java API Reference description: Represents a vCard delivery address type: docs -weight: 719 +weight: 720 url: /java/com.aspose.email/vcarddeliveryaddress/ --- diff --git a/english/java/com.aspose.email/vcarddeliveryaddresscollection/_index.md b/english/java/com.aspose.email/vcarddeliveryaddresscollection/_index.md index 41932a8dfb..d7ae34c798 100644 --- a/english/java/com.aspose.email/vcarddeliveryaddresscollection/_index.md +++ b/english/java/com.aspose.email/vcarddeliveryaddresscollection/_index.md @@ -3,7 +3,7 @@ title: VCardDeliveryAddressCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of VCardDeliveryAddresses type: docs -weight: 720 +weight: 721 url: /java/com.aspose.email/vcarddeliveryaddresscollection/ --- diff --git a/english/java/com.aspose.email/vcarddeliveryaddresstype/_index.md b/english/java/com.aspose.email/vcarddeliveryaddresstype/_index.md index 5c6833436f..3c7434e400 100644 --- a/english/java/com.aspose.email/vcarddeliveryaddresstype/_index.md +++ b/english/java/com.aspose.email/vcarddeliveryaddresstype/_index.md @@ -3,7 +3,7 @@ title: VCardDeliveryAddressType second_title: Aspose.Email for Java API Reference description: Enumerates a vCard delivery address types type: docs -weight: 721 +weight: 722 url: /java/com.aspose.email/vcarddeliveryaddresstype/ --- diff --git a/english/java/com.aspose.email/vcardemail/_index.md b/english/java/com.aspose.email/vcardemail/_index.md index 4b552d8339..de77ad33a9 100644 --- a/english/java/com.aspose.email/vcardemail/_index.md +++ b/english/java/com.aspose.email/vcardemail/_index.md @@ -3,7 +3,7 @@ title: VCardEmail second_title: Aspose.Email for Java API Reference description: Represents vCard email type: docs -weight: 722 +weight: 723 url: /java/com.aspose.email/vcardemail/ --- diff --git a/english/java/com.aspose.email/vcardemailcollection/_index.md b/english/java/com.aspose.email/vcardemailcollection/_index.md index 25dc74d4e2..5c6d2a75a5 100644 --- a/english/java/com.aspose.email/vcardemailcollection/_index.md +++ b/english/java/com.aspose.email/vcardemailcollection/_index.md @@ -3,7 +3,7 @@ title: VCardEmailCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of VCardEmails type: docs -weight: 723 +weight: 724 url: /java/com.aspose.email/vcardemailcollection/ --- diff --git a/english/java/com.aspose.email/vcardemailtype/_index.md b/english/java/com.aspose.email/vcardemailtype/_index.md index 62a772b80d..c6d710afa7 100644 --- a/english/java/com.aspose.email/vcardemailtype/_index.md +++ b/english/java/com.aspose.email/vcardemailtype/_index.md @@ -3,7 +3,7 @@ title: VCardEmailType second_title: Aspose.Email for Java API Reference description: Enumerates vCard email types type: docs -weight: 724 +weight: 725 url: /java/com.aspose.email/vcardemailtype/ --- diff --git a/english/java/com.aspose.email/vcardexplanatoryinfo/_index.md b/english/java/com.aspose.email/vcardexplanatoryinfo/_index.md index 11ed4d4e77..c6ec9273c5 100644 --- a/english/java/com.aspose.email/vcardexplanatoryinfo/_index.md +++ b/english/java/com.aspose.email/vcardexplanatoryinfo/_index.md @@ -3,7 +3,7 @@ title: VCardExplanatoryInfo second_title: Aspose.Email for Java API Reference description: Represents vCard explanatory properties type: docs -weight: 725 +weight: 726 url: /java/com.aspose.email/vcardexplanatoryinfo/ --- diff --git a/english/java/com.aspose.email/vcardfullname/_index.md b/english/java/com.aspose.email/vcardfullname/_index.md index 2de04bcc5e..a75d3a53c3 100644 --- a/english/java/com.aspose.email/vcardfullname/_index.md +++ b/english/java/com.aspose.email/vcardfullname/_index.md @@ -3,7 +3,7 @@ title: VCardFullName second_title: Aspose.Email for Java API Reference description: Represents vCard contact full name N property type: docs -weight: 726 +weight: 727 url: /java/com.aspose.email/vcardfullname/ --- diff --git a/english/java/com.aspose.email/vcardgeo/_index.md b/english/java/com.aspose.email/vcardgeo/_index.md index 1cd40d7150..058ab5155a 100644 --- a/english/java/com.aspose.email/vcardgeo/_index.md +++ b/english/java/com.aspose.email/vcardgeo/_index.md @@ -3,7 +3,7 @@ title: VCardGeo second_title: Aspose.Email for Java API Reference description: Represents a global positioning of vCard contact type: docs -weight: 727 +weight: 728 url: /java/com.aspose.email/vcardgeo/ --- diff --git a/english/java/com.aspose.email/vcardidentificationinfo/_index.md b/english/java/com.aspose.email/vcardidentificationinfo/_index.md index 2c406ac17e..e01cfd3263 100644 --- a/english/java/com.aspose.email/vcardidentificationinfo/_index.md +++ b/english/java/com.aspose.email/vcardidentificationinfo/_index.md @@ -3,7 +3,7 @@ title: VCardIdentificationInfo second_title: Aspose.Email for Java API Reference description: Represents vCard identification information type: docs -weight: 728 +weight: 729 url: /java/com.aspose.email/vcardidentificationinfo/ --- diff --git a/english/java/com.aspose.email/vcardlabel/_index.md b/english/java/com.aspose.email/vcardlabel/_index.md index 8e95702954..61437b4529 100644 --- a/english/java/com.aspose.email/vcardlabel/_index.md +++ b/english/java/com.aspose.email/vcardlabel/_index.md @@ -3,7 +3,7 @@ title: VCardLabel second_title: Aspose.Email for Java API Reference description: To specify the formatted text corresponding to delivery address of the object the vCard represents. type: docs -weight: 729 +weight: 730 url: /java/com.aspose.email/vcardlabel/ --- diff --git a/english/java/com.aspose.email/vcardlabelcollection/_index.md b/english/java/com.aspose.email/vcardlabelcollection/_index.md index 18ffabe418..25827d3aed 100644 --- a/english/java/com.aspose.email/vcardlabelcollection/_index.md +++ b/english/java/com.aspose.email/vcardlabelcollection/_index.md @@ -3,7 +3,7 @@ title: VCardLabelCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of VCardLabel type: docs -weight: 730 +weight: 731 url: /java/com.aspose.email/vcardlabelcollection/ --- diff --git a/english/java/com.aspose.email/vcardorganization/_index.md b/english/java/com.aspose.email/vcardorganization/_index.md index 40b5ad8c12..b7a7d8ceaa 100644 --- a/english/java/com.aspose.email/vcardorganization/_index.md +++ b/english/java/com.aspose.email/vcardorganization/_index.md @@ -3,7 +3,7 @@ title: VCardOrganization second_title: Aspose.Email for Java API Reference description: Represents vCard organization properties type: docs -weight: 731 +weight: 732 url: /java/com.aspose.email/vcardorganization/ --- diff --git a/english/java/com.aspose.email/vcardphoto/_index.md b/english/java/com.aspose.email/vcardphoto/_index.md index 4bf70b8fc5..f07e4586d4 100644 --- a/english/java/com.aspose.email/vcardphoto/_index.md +++ b/english/java/com.aspose.email/vcardphoto/_index.md @@ -3,7 +3,7 @@ title: VCardPhoto second_title: Aspose.Email for Java API Reference description: Represents vCard photo property type: docs -weight: 732 +weight: 733 url: /java/com.aspose.email/vcardphoto/ --- diff --git a/english/java/com.aspose.email/vcardphototype/_index.md b/english/java/com.aspose.email/vcardphototype/_index.md index 81ac385119..174a7d14b8 100644 --- a/english/java/com.aspose.email/vcardphototype/_index.md +++ b/english/java/com.aspose.email/vcardphototype/_index.md @@ -3,7 +3,7 @@ title: VCardPhotoType second_title: Aspose.Email for Java API Reference description: Enumerates vCard photo type type: docs -weight: 733 +weight: 734 url: /java/com.aspose.email/vcardphototype/ --- diff --git a/english/java/com.aspose.email/vcardsaveoptions/_index.md b/english/java/com.aspose.email/vcardsaveoptions/_index.md index 51462ad293..453b8a9649 100644 --- a/english/java/com.aspose.email/vcardsaveoptions/_index.md +++ b/english/java/com.aspose.email/vcardsaveoptions/_index.md @@ -3,7 +3,7 @@ title: VCardSaveOptions second_title: Aspose.Email for Java API Reference description: Represents vCard save options type: docs -weight: 734 +weight: 735 url: /java/com.aspose.email/vcardsaveoptions/ --- diff --git a/english/java/com.aspose.email/vcardsecurity/_index.md b/english/java/com.aspose.email/vcardsecurity/_index.md index b1b1e6623c..255df86e6b 100644 --- a/english/java/com.aspose.email/vcardsecurity/_index.md +++ b/english/java/com.aspose.email/vcardsecurity/_index.md @@ -3,7 +3,7 @@ title: VCardSecurity second_title: Aspose.Email for Java API Reference description: Represents a vCard security properties type: docs -weight: 735 +weight: 736 url: /java/com.aspose.email/vcardsecurity/ --- diff --git a/english/java/com.aspose.email/vcardsound/_index.md b/english/java/com.aspose.email/vcardsound/_index.md index 70abe03c1d..a4f4b1a280 100644 --- a/english/java/com.aspose.email/vcardsound/_index.md +++ b/english/java/com.aspose.email/vcardsound/_index.md @@ -3,7 +3,7 @@ title: VCardSound second_title: Aspose.Email for Java API Reference description: Represents a vCard sound property type: docs -weight: 736 +weight: 737 url: /java/com.aspose.email/vcardsound/ --- diff --git a/english/java/com.aspose.email/vcardsoundtype/_index.md b/english/java/com.aspose.email/vcardsoundtype/_index.md index 0f820f9bb1..ac67a1a70c 100644 --- a/english/java/com.aspose.email/vcardsoundtype/_index.md +++ b/english/java/com.aspose.email/vcardsoundtype/_index.md @@ -3,7 +3,7 @@ title: VCardSoundType second_title: Aspose.Email for Java API Reference description: Enumerates a cVard sound types type: docs -weight: 737 +weight: 738 url: /java/com.aspose.email/vcardsoundtype/ --- diff --git a/english/java/com.aspose.email/vcardtelephonenumber/_index.md b/english/java/com.aspose.email/vcardtelephonenumber/_index.md index 1c44f4a1d6..b3a8ad4315 100644 --- a/english/java/com.aspose.email/vcardtelephonenumber/_index.md +++ b/english/java/com.aspose.email/vcardtelephonenumber/_index.md @@ -3,7 +3,7 @@ title: VCardTelephoneNumber second_title: Aspose.Email for Java API Reference description: Represents a vCard telephone number type: docs -weight: 738 +weight: 739 url: /java/com.aspose.email/vcardtelephonenumber/ --- diff --git a/english/java/com.aspose.email/vcardtelephonenumbercollection/_index.md b/english/java/com.aspose.email/vcardtelephonenumbercollection/_index.md index 0b0597b8f7..d31cf31b80 100644 --- a/english/java/com.aspose.email/vcardtelephonenumbercollection/_index.md +++ b/english/java/com.aspose.email/vcardtelephonenumbercollection/_index.md @@ -3,7 +3,7 @@ title: VCardTelephoneNumberCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of VCardTelephoneNumbers type: docs -weight: 739 +weight: 740 url: /java/com.aspose.email/vcardtelephonenumbercollection/ --- diff --git a/english/java/com.aspose.email/vcardtelephonetype/_index.md b/english/java/com.aspose.email/vcardtelephonetype/_index.md index e1248c19f4..f9566d5cb5 100644 --- a/english/java/com.aspose.email/vcardtelephonetype/_index.md +++ b/english/java/com.aspose.email/vcardtelephonetype/_index.md @@ -3,7 +3,7 @@ title: VCardTelephoneType second_title: Aspose.Email for Java API Reference description: Enumerates a vCard telephone types type: docs -weight: 740 +weight: 741 url: /java/com.aspose.email/vcardtelephonetype/ --- diff --git a/english/java/com.aspose.email/vcardurl/_index.md b/english/java/com.aspose.email/vcardurl/_index.md index 2925754345..2cd4b786e1 100644 --- a/english/java/com.aspose.email/vcardurl/_index.md +++ b/english/java/com.aspose.email/vcardurl/_index.md @@ -3,7 +3,7 @@ title: VCardUrl second_title: Aspose.Email for Java API Reference description: Represents a vCard URL property type: docs -weight: 741 +weight: 742 url: /java/com.aspose.email/vcardurl/ --- diff --git a/english/java/com.aspose.email/vcardurlcollection/_index.md b/english/java/com.aspose.email/vcardurlcollection/_index.md index e9e7a692f2..f980b4207d 100644 --- a/english/java/com.aspose.email/vcardurlcollection/_index.md +++ b/english/java/com.aspose.email/vcardurlcollection/_index.md @@ -3,7 +3,7 @@ title: VCardUrlCollection second_title: Aspose.Email for Java API Reference description: Represents a collection of VCardUrls type: docs -weight: 742 +weight: 743 url: /java/com.aspose.email/vcardurlcollection/ --- diff --git a/english/java/com.aspose.email/vcardurltype/_index.md b/english/java/com.aspose.email/vcardurltype/_index.md index 51f227aeca..5bace9252f 100644 --- a/english/java/com.aspose.email/vcardurltype/_index.md +++ b/english/java/com.aspose.email/vcardurltype/_index.md @@ -3,7 +3,7 @@ title: VCardUrlType second_title: Aspose.Email for Java API Reference description: Enumerates url type type: docs -weight: 743 +weight: 744 url: /java/com.aspose.email/vcardurltype/ --- diff --git a/english/java/com.aspose.email/vcardvaluelocation/_index.md b/english/java/com.aspose.email/vcardvaluelocation/_index.md index adfda3c877..6049798e04 100644 --- a/english/java/com.aspose.email/vcardvaluelocation/_index.md +++ b/english/java/com.aspose.email/vcardvaluelocation/_index.md @@ -3,7 +3,7 @@ title: VCardValueLocation second_title: Aspose.Email for Java API Reference description: Enumerates the vCard property parameter ValueLocation. type: docs -weight: 744 +weight: 745 url: /java/com.aspose.email/vcardvaluelocation/ --- diff --git a/english/java/com.aspose.email/vcardversion/_index.md b/english/java/com.aspose.email/vcardversion/_index.md index 29b43449d1..b56517046a 100644 --- a/english/java/com.aspose.email/vcardversion/_index.md +++ b/english/java/com.aspose.email/vcardversion/_index.md @@ -3,7 +3,7 @@ title: VCardVersion second_title: Aspose.Email for Java API Reference description: Enumerates vCard version type: docs -weight: 745 +weight: 746 url: /java/com.aspose.email/vcardversion/ --- diff --git a/english/java/com.aspose.email/webdavcontactsaveoptions/_index.md b/english/java/com.aspose.email/webdavcontactsaveoptions/_index.md index 4166b7b9b5..9bbd7e5094 100644 --- a/english/java/com.aspose.email/webdavcontactsaveoptions/_index.md +++ b/english/java/com.aspose.email/webdavcontactsaveoptions/_index.md @@ -3,7 +3,7 @@ title: WebDavContactSaveOptions second_title: Aspose.Email for Java API Reference description: Specifies the contact save options. type: docs -weight: 749 +weight: 750 url: /java/com.aspose.email/webdavcontactsaveoptions/ --- diff --git a/english/java/com.aspose.email/weeklyrecurrencepattern/_index.md b/english/java/com.aspose.email/weeklyrecurrencepattern/_index.md index e16e1379d1..be74e8e5d7 100644 --- a/english/java/com.aspose.email/weeklyrecurrencepattern/_index.md +++ b/english/java/com.aspose.email/weeklyrecurrencepattern/_index.md @@ -3,7 +3,7 @@ title: WeeklyRecurrencePattern second_title: Aspose.Email for Java API Reference description: Represents a recurrence pattern of weekly recurrence type. type: docs -weight: 750 +weight: 751 url: /java/com.aspose.email/weeklyrecurrencepattern/ --- diff --git a/english/java/com.aspose.email/xgmthreadsearchconditions/_index.md b/english/java/com.aspose.email/xgmthreadsearchconditions/_index.md index 23f82022a6..880194ca70 100644 --- a/english/java/com.aspose.email/xgmthreadsearchconditions/_index.md +++ b/english/java/com.aspose.email/xgmthreadsearchconditions/_index.md @@ -3,7 +3,7 @@ title: XGMThreadSearchConditions second_title: Aspose.Email for Java API Reference description: Provides the search conditions to retrieve email thread. type: docs -weight: 751 +weight: 752 url: /java/com.aspose.email/xgmthreadsearchconditions/ --- diff --git a/english/java/com.aspose.email/yearlyrecurrencepattern/_index.md b/english/java/com.aspose.email/yearlyrecurrencepattern/_index.md index ebf65f6e47..8b02d9f45c 100644 --- a/english/java/com.aspose.email/yearlyrecurrencepattern/_index.md +++ b/english/java/com.aspose.email/yearlyrecurrencepattern/_index.md @@ -3,7 +3,7 @@ title: YearlyRecurrencePattern second_title: Aspose.Email for Java API Reference description: Represents a recurrence pattern of yearly recurrence type. type: docs -weight: 752 +weight: 753 url: /java/com.aspose.email/yearlyrecurrencepattern/ ---