Skip to content

Commit 99dea76

Browse files
committed
update SMTP port to 2587 in configuration files
1 parent 2c12219 commit 99dea76

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

backend/spring-boot/docker-compose-api.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
GOOGLE_CLIENT_ID: ${GOOGLE_CLIENT_ID:-client_id}
2626
GOOGLE_CLIENT_SECRET: ${GOOGLE_CLIENT_SECRET:-client_secret}
2727
SMTP_HOST: ${SMTP_HOST:-smtp.resend.com}
28-
SMTP_PORT: ${SMTP_PORT:-587}
28+
SMTP_PORT: ${SMTP_PORT:-2587}
2929
SMTP_USERNAME: ${SMTP_USER:-resend}
3030
SMTP_PASSWORD: ${SMTP_PASSWORD:-password}
3131
SMTP_SENDER: ${SMTP_SENDER:-noreply@bugzkit.com}

backend/spring-boot/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spring:
3030
timeout: 60
3131
mail:
3232
host: ${SMTP_HOST:smtp.resend.com}
33-
port: ${SMTP_PORT:587}
33+
port: ${SMTP_PORT:2587}
3434
username: ${SMTP_USER:resend}
3535
properties:
3636
sender: ${SMTP_SENDER:noreply@bugzkit.com}

backend/spring-boot/src/test/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ spring:
5151
scope: profile,email
5252
mail:
5353
host: ${SMTP_HOST:smtp.resend.com}
54-
port: ${SMTP_PORT:587}
54+
port: ${SMTP_PORT:2587}
5555
username: ${SMTP_USER:resend}
5656
password: ${SMTP_PASSWORD:password}
5757
properties:

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
GOOGLE_CLIENT_SECRET: ${GOOGLE_CLIENT_SECRET:-client_secret}
2828
USER_PASSWORD: ${USER_PASSWORD:-qwerty123}
2929
SMTP_HOST: ${SMTP_HOST:-smtp.resend.com}
30-
SMTP_PORT: ${SMTP_PORT:-587}
30+
SMTP_PORT: ${SMTP_PORT:-2587}
3131
SMTP_USERNAME: ${SMTP_USER:-resend}
3232
SMTP_PASSWORD: ${SMTP_PASSWORD:-password}
3333
SMTP_SENDER: ${SMTP_SENDER:-noreply@bugzkit.com}

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
REDIS_PORT: ${REDIS_PORT:-6379}
1616
REDIS_DATABASE: ${REDIS_DATABASE:-0}
1717
SMTP_HOST: ${SMTP_HOST:-smtp.resend.com}
18-
SMTP_PORT: ${SMTP_PORT:-587}
18+
SMTP_PORT: ${SMTP_PORT:-2587}
1919
SMTP_USER: ${SMTP_USER:-resend}
2020
SMTP_SENDER: ${SMTP_SENDER:-noreply@bugzkit.com}
2121
ACCESS_TOKEN_DURATION: ${ACCESS_TOKEN_DURATION:-900}

docs/src/content/environment-variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
| GOOGLE_CLIENT_ID | Google client id used by oauth2 | client_id |
2020
| GOOGLE_CLIENT_SECRET | Google client secret used by oauth2 | client_secret |
2121
| SMTP_HOST | SMTP server host | smtp.resend.com |
22-
| SMTP_PORT | SMTP server port | 587 |
22+
| SMTP_PORT | SMTP server port | 2587 |
2323
| SMTP_USER | SMTP user | resend |
2424
| SMTP_PASSWORD | SMTP password | password |
2525
| SMTP_SENDER | SMTP sender | noreply@bugzkit.com |

0 commit comments

Comments
 (0)