Restructured menu and reworked debugging chapter
Dieser Commit ist enthalten in:
Ursprung
0ae794a9f7
Commit
a51ec748e0
3 geänderte Dateien mit 40 neuen und 21 gelöschten Zeilen
|
@ -1,3 +1,5 @@
|
|||
## Logs
|
||||
|
||||
You can use `docker-compose logs $service-name` for all containers.
|
||||
|
||||
Run `docker-compose logs` for all logs at once.
|
||||
|
@ -5,3 +7,28 @@ Run `docker-compose logs` for all logs at once.
|
|||
Follow the log output by running docker-compose with `logs -f`.
|
||||
|
||||
Limit the output by calling logs with `--tail=300` like `docker-compose logs --tail=300 mysql-mailcow`.
|
||||
|
||||
## Reset admin password
|
||||
Reset mailcow admin to `admin:moohoo`:
|
||||
|
||||
```
|
||||
cd mailcow_path
|
||||
bash mailcow-reset-admin.sh
|
||||
```
|
||||
|
||||
## What container does what
|
||||
|
||||
Here is a brief overview of what container does what:
|
||||
|
||||
| Container Name | Service Descriptions |
|
||||
| --------------- | ------------------------------------------------------------------------- |
|
||||
| bind9-mailcow | Local (DNSSEC) DNS Resolver |
|
||||
| mysql-mailcow | Stores most of mailcow's settings |
|
||||
| postfix-mailcow | Receives and sends mails |
|
||||
| dovecot-mailcow | User logins and sieve filter |
|
||||
| redis-mailcow | Storage backend for DKIM keys, Rmilter and Rspamd |
|
||||
| rspamd-mailcow | Mail filtering system. Used for av handling, dkim signing, spam handling |
|
||||
| rmilter-mailcow | Integrates Rspamd into postfix |
|
||||
| clamd-mailcow | Scans attachments for viruses |
|
||||
| sogo-mailcow | Webmail client that handles Microsoft ActiveSync and Cal- / CardDav |
|
||||
| nginx-mailcow | Nginx remote proxy that handles all mailcow related HTTP / HTTPS requests |
|
||||
|
|
|
@ -13,11 +13,3 @@ docker-compose exec redis-mailcow redis-cli
|
|||
- Remove volume `rspamd-vol-1` to remove all Rspamd data.
|
||||
|
||||
Running `docker-compose down -v` will **destroy all mailcow: dockerized volumes** and delete any related containers.
|
||||
|
||||
## Reset admin password
|
||||
Reset mailcow admin to `admin:moohoo`:
|
||||
|
||||
```
|
||||
cd mailcow_path
|
||||
bash mailcow-reset-admin.sh
|
||||
```
|
||||
|
|
26
mkdocs.yml
26
mkdocs.yml
|
@ -19,27 +19,27 @@ pages:
|
|||
- 'Rspamd Web UI': 'rspamd_ui.md'
|
||||
- 'Reverse Proxy': 'rp.md'
|
||||
- 'Setup a Relayhost (optional)': 'relayhost.md'
|
||||
- 'Log to Syslog': 'syslog.md'
|
||||
- 'Log to Syslog & fail2ban': 'syslog.md'
|
||||
- 'Local MTA on Docker Host': 'local_mta.md'
|
||||
- 'Sender and Receiver Model': 'sender_rcv.md'
|
||||
- 'Usage & Examples':
|
||||
- 'Debugging & Troubleshooting': 'debug.md'
|
||||
- 'mailcow UI Configuration': 'mailcow_ui.md'
|
||||
- 'Redirect HTTP to HTTPS': '80_to_443.md'
|
||||
- 'Anonymize Headers': 'anonym_headers.md'
|
||||
- 'Adjust Service Configurations': 'change_config.md'
|
||||
- 'Docker Compose Bash Completion': 'dc_bash_compl.md'
|
||||
- 'Two-Factor Authentication': 'tfa.md'
|
||||
- 'Blacklist / Whitelist': 'bl_wl.md'
|
||||
- 'Backup Maildir': 'backup_maildir.md'
|
||||
- 'Customize Dockerfiles': 'cust_dockerfiles.md'
|
||||
- 'Disable Sender Addresses Verification': 'disable_sender_verification.md'
|
||||
- 'Debug': 'debug.md'
|
||||
- 'Autodiscover / Autoconfig': 'autodiscover_config.md'
|
||||
- 'Redis': 'redis.md'
|
||||
- 'MySQL': 'mysql.md'
|
||||
- 'Rspamd': 'rspamd.md'
|
||||
- 'Tagging': 'tagging.md'
|
||||
- 'Why bind9?': 'why_bind9.md'
|
||||
- 'Adjust Service Configurations': 'change_config.md'
|
||||
- 'Customize Dockerfiles': 'cust_dockerfiles.md'
|
||||
- 'Docker Compose Bash Completion': 'dc_bash_compl.md'
|
||||
- 'Backup Maildir': 'backup_maildir.md'
|
||||
- 'Two-Factor Authentication': 'tfa.md'
|
||||
- 'Redirect HTTP to HTTPS': '80_to_443.md'
|
||||
- 'Anonymize Headers': 'anonym_headers.md'
|
||||
- 'Tagging': 'tagging.md'
|
||||
- 'Blacklist / Whitelist': 'bl_wl.md'
|
||||
- 'Autodiscover / Autoconfig': 'autodiscover_config.md'
|
||||
- 'Disable Sender Addresses Verification': 'disable_sender_verification.md'
|
||||
- 'Third party apps':
|
||||
- 'Roundcube': 'roundcube.md'
|
||||
- 'Portainer': 'portainer.md'
|
||||
|
|
Laden …
In neuem Issue referenzieren