Skip to content

Commit 3f4ea8d

Browse files
authored
Merge pull request #7 from CodeShellDev/dev
Update Main for Test Release
2 parents 583cc4a + 965443e commit 3f4ea8d

File tree

9 files changed

+20
-59
lines changed

9 files changed

+20
-59
lines changed

.github/helper-scripts/replace_placeholders.sh

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/templates/README.template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mailauth
22

3-
Mailauth is a Mailbox Manager which securily enables you too select between your Mailboxes and authenticate with your Mailserver, like [mailcow](https://github.com/mailcow/mailcow-dockerized)
3+
Mailauth is a Mailbox Manager which enables you too select between your Mailboxes and authenticate with your Mailserver, like [mailcow](https://github.com/mailcow/mailcow-dockerized)
44

55
## Getting Started
66

@@ -13,7 +13,7 @@ Get the latest version of the `docker-compose.yaml` file:
1313
### Setup
1414

1515
Mailauth _currently_ works by modifying the `email` claim during Token Exchange and Userinfo,
16-
this means that you **will have to** use a IdP (take a look at [authentik](https://goauthentik.io)).
16+
this means that you **will have to** use a IdP (like [authentik](https://goauthentik.io)).
1717

1818
Create a `.env` file inside of you `docker-compose.yaml` directory and copy the template below
1919

@@ -38,7 +38,7 @@ Next create `init-mongo.js` in your working directory:
3838

3939
### Reverse Proxy
4040

41-
When working with Oauth and Auth in general it is recommended to use secure connections,
41+
When working with Oauth2 and Auth in general it is recommended to be sure to use secure connections,
4242
here you will see a Reverse Proxy implementation with traefik:
4343

4444
```yaml

.github/workflows/docker-image-dev.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: Build & Push Dev Image
22

33
on:
4-
release:
5-
types: [published]
4+
push:
5+
branches:
6+
- dev
7+
paths-ignore:
8+
- ".**"
69

710
jobs:
811
update:
9-
uses: codeshelldev/gh-actions/.github/workflows/docker-image.yaml@main
12+
uses: codeshelldev/gh-actions/.github/workflows/docker-image.yml@main
1013
with:
1114
registry: ghcr.io
1215
flavor: |

.github/workflows/docker-image.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,8 @@ on:
66

77
jobs:
88
update:
9-
uses: codeshelldev/gh-actions/.github/workflows/docker-image.yaml@main
9+
uses: codeshelldev/gh-actions/.github/workflows/docker-image.yml@main
1010
with:
1111
registry: ghcr.io
12-
flavor: |
13-
latest=false
14-
tags: |
15-
type=semver,pattern=v{{major}}
16-
type=semver,pattern=v{{version}}
17-
type=semver,pattern=v{{major}}.{{minor}}
18-
type=semver,pattern=latest
1912
secrets:
20-
GH_PCKG_TOKEN: ${{ secrets.GH_PCKG_TOKEN }}
13+
GH_PCKG_TOKEN: ${{ secrets.GH_PCKG_TOKEN }}

.github/workflows/readme-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ on:
88

99
jobs:
1010
update:
11-
uses: codeshelldev/gh-actions/.github/workflows/readme-update.yaml@main
11+
uses: codeshelldev/gh-actions/.github/workflows/readme-update.yml@main
1212
secrets:
13-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mailauth
22

3-
Mailauth is a Mailbox Manager which securily enables you too select between your Mailboxes and authenticate with your Mailserver, like [mailcow](https://github.com/mailcow/mailcow-dockerized)
3+
Mailauth is a Mailbox Manager which enables you too select between your Mailboxes and authenticate with your Mailserver, like [mailcow](https://github.com/mailcow/mailcow-dockerized)
44

55
## Getting Started
66

@@ -58,7 +58,7 @@ volumes:
5858
### Setup
5959
6060
Mailauth _currently_ works by modifying the `email` claim during Token Exchange and Userinfo,
61-
this means that you **will have to** use a IdP (take a look at [authentik](https://goauthentik.io)).
61+
this means that you **will have to** use a IdP (like [authentik](https://goauthentik.io)).
6262

6363
Create a `.env` file inside of you `docker-compose.yaml` directory and copy the template below
6464

@@ -139,7 +139,7 @@ db.createUser({
139139

140140
### Reverse Proxy
141141

142-
When working with Oauth and Auth in general it is recommended to use secure connections,
142+
When working with Oauth2 and Auth in general it is recommended to be sure to use secure connections,
143143
here you will see a Reverse Proxy implementation with traefik:
144144

145145
```yaml

test.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
THIS IS JUST FOR WORKFLOW TESTING
2+
Test

views/home.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
140140
setInterval(async () => {
141141
await mailboxGrid.update()
142-
}, 5000)
142+
}, 4000)
143143
</script>
144144
</body>
145145
</html>

views/select.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
6767
setInterval(async () => {
6868
await mailboxGrid.update()
69-
}, 5000)
69+
}, 3000)
7070
</script>
7171
</body>
7272
</html>

0 commit comments

Comments
 (0)