Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiwikern/qmailo-frontend
Organizer for mail aliases with .qmail files. Frontend for github.com/kiwikern/QMailO
https://github.com/kiwikern/qmailo-frontend
aliases angular e-mail email frontend mail mail-address-list mail-aliases mailing mailserver qmail uberspace
Last synced: 22 days ago
JSON representation
Organizer for mail aliases with .qmail files. Frontend for github.com/kiwikern/QMailO
- Host: GitHub
- URL: https://github.com/kiwikern/qmailo-frontend
- Owner: kiwikern
- Created: 2018-02-19T00:12:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T16:56:55.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T06:18:17.032Z (2 months ago)
- Topics: aliases, angular, e-mail, email, frontend, mail, mail-address-list, mail-aliases, mailing, mailserver, qmail, uberspace
- Language: TypeScript
- Homepage:
- Size: 3.89 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QmailoFrontend
QMailO helps you organize your `.qmail` files. For it to work, you need to set up the [QMailO Server](https://github.com/kiwikern/QMailO) as well. This web app was designed with Uberspace in mind.
The app is available in English and German.
## Setup
* Set up your [QMailO Server](https://github.com/kiwikern/QMailO).
* Download the [latest release](https://github.com/kiwikern/QMailO-Frontend/releases/latest) and unzip the language version of your choice to the folder served by your web server.
* Forward all requests to `api/*` to your QMailO server, e. g. `localhost:30000`, anything else to `index.html`.
* There is a `.htaccess` included with a sample configuration. If you don't want to use it, you can just delete it.### Uberspace
* If you're using Uberspace, you can easily create a [subdomain](https://wiki.uberspace.de/domain:subdomain) for your QMailO Frontend.
* Just create a folder with your subdomain name in `/var/www/virtual/$USER/` and unzip the language version of your choice of the [latest release](https://github.com/kiwikern/QMailO-Frontend/releases/latest) into it.
* Example: `mkdir /var/www/virtual/$USER/qmailo.kimkern.de`
* [Include your new subdomain](https://wiki.uberspace.de/webserver:https#aenderungen_am_let_s_encrypt_zertifikat) in your LetsEncrypt certificate.
* If your QMailO server is running under a different port than 30000, edit the included `.htaccess` file:
* `RewriteRule ^api/(.*) http://localhost:30000/$1 [P]`## Development
* Run `npm start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
* Run `npm run build` to build the project. The build artifacts will be stored in the `dist/` directory.
* For further information about the Angular CLI, run `npm run ng -- --help`.