Skarab
Skarab

Reputation: 7141

How to configure Phabricator to encrypt outgoing emails?

Has somebody made phabricator to encrypt and decrypt outgoing and incoming emails? Do I need to write a customized code / plugin?

As I can do for jenkins: How to configure Jenkins to send encrypted emails with gpg?

Upvotes: 2

Views: 465

Answers (1)

Feras
Feras

Reputation: 2184

This looks extremely easy to me. For the outbound email just create:

Some Custom Class You Write: use a custom adapter you write, see "Adapter: Custom". as the documentation states. To make it easier just copy some of the existing adapters and modify it to allow for encryption of the message.

Then for the incoming mail, considering you are using sendmail just follow this: MTA: Configuring Sendmail and create your custom email parsing logic along side with the decryption in the php file that will be used to parse the incoming mails as defined in the docs.

Upvotes: 2

Related Questions