From 6d66d7920908a221913e4d338d57af1b15c8634c Mon Sep 17 00:00:00 2001 From: Rauche Acho Date: Sun, 25 May 2025 14:25:22 +0100 Subject: [PATCH] Update default Mailpit SMTP port to 1025 and pop3 port to 1110 in config.toml template --- pkg/config/templates/config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/config/templates/config.toml b/pkg/config/templates/config.toml index 9f48426aa..eb15ba837 100644 --- a/pkg/config/templates/config.toml +++ b/pkg/config/templates/config.toml @@ -75,13 +75,13 @@ openai_api_key = "env(OPENAI_API_KEY)" # Email testing server. Emails sent with the local dev setup are not actually sent - rather, they # are monitored, and you can view the emails that would have been sent from the web interface. -[inbucket] +[mailpit] enabled = true # Port to use for the email testing server web interface. port = 54324 # Uncomment to expose additional ports for testing user applications that send emails. -# smtp_port = 54325 -# pop3_port = 54326 +# smtp_port = 1025 +# pop3_port = 1110 # admin_email = "admin@email.com" # sender_name = "Admin"