MBOX'u PST'ye Dönüştür
Contents
[
Hide
]
İmzayı Korumak veya Kaldırmak Üzere MBOX’u PST’ye Dönüştür
MBOX dosyalarını PST formatına dönüştürürken, daha temiz çıktı veya uyumluluk amaçlarıyla mesajlardan dijital imzaları çıkarmak isteyebilirsiniz. Aspose.Email, dönüşüm sırasında bu imzaları kaldırmak için kullanabileceğiniz uygun bir seçenek sunar: remove_signature özellik MboxToPstConversionOptions sınıf.
Aşağıdaki örnek, bu seçeneği Python projenizde nasıl etkinleştireceğinizi gösterir:
import aspose.email as ae
personalStorage = ae.storage.pst.PersonalStorage.create("target.pst", ae.storage.pst.FileFormatVersion.UNICODE)
conversion_options = ae.storage.MboxToPstConversionOptions()
conversion_options.remove_signature = True
ae.storage.MailStorageConverter.mbox_to_pst( ae.storage.mbox.MboxrdStorageReader("source.mbox", ae.storage.mbox.MboxLoadOptions()), personalStorage, "Inbox", conversion_options)