-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add tls option, deprecate connectTLS * change readme, remove connectTLS * remove connectTLS * add return to pool; remove autoconnect * fix * change config * cleanup mod.ts * a lot of cleanup * remove private field * security change * total code restructure * make connection external * change readCMD implemation to accept multiline * extrakt que * add preproccessor * format code * format md * lint, fmt * rename some files * some file renames * tsdoc quotedPrintable * add tsdocs * bugfixes * test docker * fix typo * ... * test * test fake mailer * add first test * fix first test * format files * add second test * add better types * add more tests * add some docs * fmt * fix security boundary escape * fix boundary escape * fmt * add docs for new Client * add docs for sending
- Loading branch information
Showing
30 changed files
with
1,954 additions
and
1,113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.x | ||
- run: docker run -d -p 1080:1080 -p 1025:1025 reachfive/fake-smtp-server | ||
- run: deno test --unstable -A ./test/e2e/basic.test.ts | ||
- run: deno fmt --check | ||
- run: deno lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.