
* Add vital integration * Tidy up client_user_id creation * Rename vital app to vitalother to follow name rules * Added env var * App vital reschedule * Fix on app structure and api calls * Implemented user identification from webhook * WIP fix api call and read me * Save vital settings via api * Now saving userVitalSettings and trigger reschedule on selected param * Added translations * Fix type for vitalSettings * Using api to get env vars required for url, fix display of vital settings * Fix hours placeholder, translation not working * Renames vital app * Update seed-app-store.ts * Update package.json * Update yarn.lock * Refactored env variables * Update README.md * Migrates to api_keys * Extracts AppConfiguration * vitalClient fixes * Update index.ts * Update metadata.ts * Update index.ts * Update metadata.ts * Added namespace vital for translations Co-authored-by: Maitham <maithamdib@gmail.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
34 lines
841 B
TypeScript
34 lines
841 B
TypeScript
import SendmailTransport from "nodemailer/lib/sendmail-transport";
|
|
import SMTPConnection from "nodemailer/lib/smtp-connection";
|
|
|
|
function detectTransport(): SendmailTransport.Options | SMTPConnection.Options | string {
|
|
if (process.env.EMAIL_SERVER) {
|
|
return process.env.EMAIL_SERVER;
|
|
}
|
|
|
|
if (process.env.EMAIL_SERVER_HOST) {
|
|
const port = parseInt(process.env.EMAIL_SERVER_PORT!);
|
|
const transport = {
|
|
host: process.env.EMAIL_SERVER_HOST,
|
|
port,
|
|
auth: {
|
|
user: process.env.EMAIL_SERVER_USER,
|
|
pass: process.env.EMAIL_SERVER_PASSWORD,
|
|
},
|
|
secure: port === 465,
|
|
};
|
|
|
|
return transport;
|
|
}
|
|
|
|
return {
|
|
sendmail: true,
|
|
newline: "unix",
|
|
path: "/usr/sbin/sendmail",
|
|
};
|
|
}
|
|
|
|
export const serverConfig = {
|
|
transport: detectTransport(),
|
|
from: process.env.EMAIL_FROM,
|
|
};
|