No description
This repository has been archived on 2026-07-06. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • Shell 95.9%
  • JavaScript 4.1%
Find a file
2026-06-19 14:35:46 +00:00
authentik Initial commit 2026-06-19 14:35:46 +00:00
dns Updated to 15.0.1 2026-04-29 11:11:39 -04:00
forgejo Debugged and working 2026-03-12 14:49:06 +00:00
komodo Removed migrated services 2026-04-10 22:49:46 +00:00
CLAUDE.md Dev update... 2026-03-24 12:29:04 +00:00
README.md Mailserver back in use 2026-03-12 10:01:09 -04:00
renovate.json Migrate config renovate.json 2026-03-11 19:37:25 +00:00

mailserver:

Add user: docker exec -it mailserver setup email add user@home.lan password

Required file for roundcube to work without encryption: ./docker-data/roundcube/config/roundcube-custom.php

<?php
$config['imap_conn_options'] = [
  'ssl' => [
    'verify_peer' => false,
    'verify_peer_name' => false,
    'allow_self_signed' => true,
  ],
];
$config['smtp_conn_options'] = [
  'ssl' => [
    'verify_peer' => false,
    'verify_peer_name' => false,
    'allow_self_signed' => true,
  ],
];