https://github.com/conjoon/extjs-app-webmail
JavaScript email client of conjoon.
https://github.com/conjoon/extjs-app-webmail
conjoon coon extjs imap javascript mail webmail
Last synced: 12 months ago
JSON representation
JavaScript email client of conjoon.
- Host: GitHub
- URL: https://github.com/conjoon/extjs-app-webmail
- Owner: conjoon
- License: mit
- Created: 2017-04-09T14:41:00.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T11:16:09.000Z (over 2 years ago)
- Last Synced: 2025-05-21T18:16:48.613Z (about 1 year ago)
- Topics: conjoon, coon, extjs, imap, javascript, mail, webmail
- Language: JavaScript
- Homepage: https://www.conjoon.org/docs/api/packages/@conjoon/extjs-app-webmail
- Size: 4.9 MB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# @conjoon/extjs-app-webmail  [](https://badge.fury.io/js/@conjoon%2Fextjs-app-webmail)
JavaScript email client module for [conjoon](https://conjoon.org), powered by [Sencha Ext JS](https://sencha.com) and [coon.js](https://github.com/coon-js).
## Installation
```bash
$ npm i @conjoon/extjs-app-webmail
```
If you want to develop with this package, run the `build:dev`-script afterwards:
```bash
npm run build:dev
```
Testing environment will then be available via
```bash
npm test
```
For using the package as an external dependency in an application:
In your `app.json`, add this package as a requirement, and make sure your ExtJS `workspace.json`
is properly configured to look up local repositories in the `node_modules`-directory.
Example (`workspace.json`) :
```json
{
"packages": {
"dir": "${workspace.dir}/node_modules/@l8js,${workspace.dir}/node_modules/@conjoon,${workspace.dir}/node_modules/@coon-js,${workspace.dir}/packages/local,${workspace.dir}/packages,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name},${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-treegrid,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-base,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-ios,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-material,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-aria,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-neutral,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-classic,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-gray,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-crisp,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-crisp-touch,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-neptune,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-neptune-touch,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-triton,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-graphite,${workspace.dir}/node_modules/@sencha/ext-${toolkit.name}-theme-material,${workspace.dir}/node_modules/@sencha/ext-calendar,${workspace.dir}/node_modules/@sencha/ext-charts,${workspace.dir}/node_modules/@sencha/ext-d3,${workspace.dir}/node_modules/@sencha/ext-exporter,${workspace.dir}/node_modules/@sencha/ext-pivot,${workspace.dir}/node_modules/@sencha/ext-pivot-d3,${workspace.dir}/node_modules/@sencha/ext-ux,${workspace.dir}/node_modules/@sencha/ext-font-ios",
"extract": "${workspace.dir}/packages/remote"
}
}
```
Update the `app.json` of the application by specifying this package in the `uses`-property in
either the `development` and/or `prodution` section:
*Example:*
```json
{
"development": {
"uses": [
"extjs-dev-imapusersim",
"extjs-app-imapuser",
"extjs-app-webmail",
"extjs-dev-webmailsim"
]
},
"production": {
"uses": [
"extjs-app-imapuser",
"extjs-app-webmail"
]
}
}
```
## Configuration and Usage
For more information on how to configure and use the package, refer to the [documentation](./docs/README.md).
## Tests
Tests are written with [Siesta](https://bryntum.com/siesta). Documentation can be found [here](./tests/README.md).