mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
use uberspace for all mails
This commit is contained in:
@@ -32,12 +32,15 @@ export default async function auth(req: NextApiRequest, res: NextApiResponse) {
|
||||
}),
|
||||
EmailProvider({
|
||||
server: {
|
||||
host: 'smtp.sendgrid.net',
|
||||
port: 587,
|
||||
host: "wirtanen.uberspace.de",
|
||||
port: 465,
|
||||
secure: true,
|
||||
auth: {
|
||||
user: 'apikey',
|
||||
pass: process.env.SENDGRID_API_KEY,
|
||||
user: process.env.SMTP_USER,
|
||||
pass: process.env.SMTP_PASS,
|
||||
},
|
||||
logger: true,
|
||||
//debug: true,
|
||||
},
|
||||
from: process.env.FROM_EMAIL,
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user