Files
harmony-back/config/plugins.ts
julien vdb d469fc41e8
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 10m42s
0.13.8 : invite by mail or contact and change mail provider on local
2026-04-07 22:15:59 +02:00

48 lines
1.1 KiB
TypeScript

export default () => ({
email: {
config: {
provider: "nodemailer",
providerOptions: {
host: "smtp.zeptomail.eu",
port: 587,
auth: {
user: "emailapikey",
pass: "yA6KbHsJ4lrywWtTFUc+0pSC94lm/aE/2nzks3i2fpZ1LYXp3qE71RBvd4O4c2CLjdfT5a9UbIkVJoCwvIpbfpczPIBXJpTGTuv4P2uV48xh8ciEYNYjhJivALIWFqVOeBsnDyo4QfEjWA==",
},
debug: true,
logger: true,
},
settings: {
defaultFrom: "ChoralSync <noreply@choralsync.com>",
defaultReplyTo: "contact@choralsync.com",
},
},
},
upload: {
config: {
provider: "aws-s3",
providerOptions: {
baseUrl: "https://container.harmonylab.ovh/harmony",
credentials: {
accessKeyId: "admin",
secretAccessKey: "Apslxnap12bn23",
},
endpoint: "https://container.harmonylab.ovh",
forcePathStyle: true,
region: "eu-west-3",
params: {
Bucket: "harmony",
},
},
},
},
"strapi-v5-plugin-populate-deep": {
config: {
defaultDepth: 3,
skipCreatorFields: false,
},
},
});