mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-06 12:37:01 +02:00
deploy: eb165ded65
This commit is contained in:
parent
e8014436a7
commit
f0383f57aa
143
v14.0/assets/css/customizations.css
Normal file
143
v14.0/assets/css/customizations.css
Normal file
@ -0,0 +1,143 @@
|
||||
/*
|
||||
This file adds our styling additions / fixes to maintain.
|
||||
Some of which are overly specific and may break with future updates by upstream.
|
||||
*/
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/* External Link icon feature. Rejected from upstreaming to `mkdocs-material`.
|
||||
Alternative solution using SVG icon here (Broken on Chrome?): https://github.com/squidfunk/mkdocs-material/issues/2318#issuecomment-789461149
|
||||
Tab or Nav sidebar with non-relative links will prepend an icon (font glyph)
|
||||
If you want to append instead, switch `::before` to `::after`.
|
||||
*/
|
||||
/* reference the icon font to use */
|
||||
@font-face {
|
||||
font-family: 'external-link';
|
||||
src: url('../fonts/external-link.woff') format('woff');
|
||||
}
|
||||
|
||||
/*
|
||||
Since mkdocs-material 9.5.5 broke support in our docs from DMS v13.3.1, we now use our own class name,
|
||||
which has been included for the two external nav links in mkdocs.yml via workaround (insert HTML).
|
||||
*/
|
||||
.icon-external-link::before {
|
||||
display: inline-block; /* treat similar to text */
|
||||
font-family: 'external-link';
|
||||
content:'\0041'; /* represents "A" which our font renders as an icon instead of the "A" glyph */
|
||||
font-size: 80%; /* icon is a little too big by default, scale it down */
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/* UI Improvement: Header bar (top of page) adjustments - Increase scale of logo and adjust white-space */
|
||||
/* Make the logo larger without impacting other header components */
|
||||
.md-header__button.md-logo > img { transform: scale(180%); margin-left: 0.4rem; }
|
||||
/* Reduce the white-space between the Logo and Title components */
|
||||
.md-header__title { margin-left: 0.3rem; }
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/* UI Improvement: Add light colour bg for the version selector, with some rounded corners */
|
||||
.md-version__current {
|
||||
background-color: rgb(255,255,255,0.18); /* white with 18% opacity */
|
||||
padding: 5px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/*
|
||||
UX Bugfix for left navbar visibility on top-level (tabbed) pages with no nested sub-pages.
|
||||
Upstream will not fix: https://github.com/squidfunk/mkdocs-material/issues/3109
|
||||
*/
|
||||
|
||||
@media screen and (min-width: 76.25em) {
|
||||
.md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/*
|
||||
UX Bugfix for permalink affecting typography in headings.
|
||||
Upstream will not fix: https://github.com/squidfunk/mkdocs-material/issues/2369
|
||||
*/
|
||||
|
||||
/* Headings are configured to be links (instead of only the permalink symbol), removes the link colour */
|
||||
div.md-content article.md-content__inner a.toclink {
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
/* Instead of a permalink symbol at the end of heading text, use a border line on the left spanning height of heading */
|
||||
/* Includes optional background fill with rounded right-side corners, and restores inline code style */
|
||||
/* NOTE: Headings with markdown links embedded disrupt the bg fill style, as they're not children of `a.toclink` element */
|
||||
div.md-content article.md-content__inner a.toclink {
|
||||
display: inline-block; /* Enables multi-line support for both border and bg color */
|
||||
border-left: .2rem solid transparent; /* transparent placeholder to avoid heading shift during reveal transition */
|
||||
margin-left: -0.6rem; /* Offset heading to the left */
|
||||
padding-left: 0.4rem; /* Push heading back to original position, margin-left - border-left widths */
|
||||
transition: background-color 200ms,border-left 200ms;
|
||||
|
||||
/* Only relevant if using background highlight style */
|
||||
border-radius: 0 0.25rem 0.25rem 0;
|
||||
padding-right: 0.4rem;
|
||||
}
|
||||
|
||||
div.md-content article.md-content__inner a.toclink:hover,
|
||||
div.md-content article.md-content__inner :target > a.toclink {
|
||||
border-left: .2rem solid #448aff; /* highlight line on the left */
|
||||
background-color: #b3dbff6e; /* background highlight fill */
|
||||
transition: background-color 200ms,border-left 200ms;
|
||||
}
|
||||
|
||||
/* Upstream overrides some of the `code` element styles for headings, restore them */
|
||||
div.md-content article.md-content__inner a.toclink code {
|
||||
padding: 0 0.3em; /* padding to the left and right, not top and bottom */
|
||||
border-radius: 0.2rem; /* 0.1rem of original style bit too small */
|
||||
background-color: var(--md-code-bg-color);
|
||||
}
|
||||
|
||||
.highlight.no-copy .md-clipboard { display: none; }
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/* Make the left-sidebar nav categories better distinguished from page links (bold text) */
|
||||
.md-nav__item--nested > .md-nav__link {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* ============================================================================================================= */
|
||||
|
||||
/*
|
||||
TaskList style for a pro/con list. Presently only used for this type of list in the kubernetes docs.
|
||||
Uses a custom icon for the unchecked (con) state: :octicons-x-circle-fill-24:
|
||||
https://github.com/squidfunk/mkdocs-material/discussions/6811#discussioncomment-8700795
|
||||
|
||||
TODO: Can better scope the style under a class name when migrating to block extension syntax:
|
||||
https://github.com/facelessuser/pymdown-extensions/discussions/1973
|
||||
*/
|
||||
|
||||
:root {
|
||||
--md-tasklist-icon--failed: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm8.036-4.024a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042L10.939 12l-2.963 2.963a.749.749 0 0 0 .326 1.275.749.749 0 0 0 .734-.215L12 13.06l2.963 2.964a.75.75 0 0 0 1.061-1.06L13.061 12l2.963-2.964a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215L12 10.939Z"/></svg>');
|
||||
}
|
||||
|
||||
.md-typeset [type="checkbox"] + .task-list-indicator::before {
|
||||
background-color: rgb(216, 87, 48);
|
||||
-webkit-mask-image: var(--md-tasklist-icon--failed);
|
||||
mask-image: var(--md-tasklist-icon--failed);
|
||||
}
|
||||
|
||||
/* More suitable shade of green */
|
||||
.md-typeset [type=checkbox]:checked+.task-list-indicator:before {
|
||||
background-color: rgb(97, 216, 42);
|
||||
}
|
||||
|
||||
/* Tiny layout shift */
|
||||
[dir=ltr] .md-typeset .task-list-indicator:before {
|
||||
left: -1.6em;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
/* ============================================================================================================= */
|
BIN
v14.0/assets/fonts/external-link.woff
Normal file
BIN
v14.0/assets/fonts/external-link.woff
Normal file
Binary file not shown.
BIN
v14.0/assets/img/bg-water.webp
Normal file
BIN
v14.0/assets/img/bg-water.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 91 KiB |
29
v14.0/assets/javascripts/bundle.081f42fc.min.js
vendored
Normal file
29
v14.0/assets/javascripts/bundle.081f42fc.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
42
v14.0/assets/javascripts/workers/search.b8dbb3d2.min.js
vendored
Normal file
42
v14.0/assets/javascripts/workers/search.b8dbb3d2.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
v14.0/assets/logo/dmo-logo-white.min.svg
Normal file
BIN
v14.0/assets/logo/dmo-logo-white.min.svg
Normal file
Binary file not shown.
After Width: | Height: | Size: 677 B |
BIN
v14.0/assets/logo/dmo-logo.min.svg
Normal file
BIN
v14.0/assets/logo/dmo-logo.min.svg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
v14.0/assets/logo/favicon-32x32.png
Normal file
BIN
v14.0/assets/logo/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
1
v14.0/assets/stylesheets/main.6543a935.min.css
vendored
Normal file
1
v14.0/assets/stylesheets/main.6543a935.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
v14.0/assets/stylesheets/palette.06af60db.min.css
vendored
Normal file
1
v14.0/assets/stylesheets/palette.06af60db.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2626
v14.0/config/advanced/auth-ldap/index.html
Normal file
2626
v14.0/config/advanced/auth-ldap/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2284
v14.0/config/advanced/auth-oauth2/index.html
Normal file
2284
v14.0/config/advanced/auth-oauth2/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2248
v14.0/config/advanced/dovecot-master-accounts/index.html
Normal file
2248
v14.0/config/advanced/dovecot-master-accounts/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2397
v14.0/config/advanced/full-text-search/index.html
Normal file
2397
v14.0/config/advanced/full-text-search/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2496
v14.0/config/advanced/ipv6/index.html
Normal file
2496
v14.0/config/advanced/ipv6/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2991
v14.0/config/advanced/kubernetes/index.html
Normal file
2991
v14.0/config/advanced/kubernetes/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2349
v14.0/config/advanced/mail-fetchmail/index.html
Normal file
2349
v14.0/config/advanced/mail-fetchmail/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2176
v14.0/config/advanced/mail-forwarding/aws-ses/index.html
Normal file
2176
v14.0/config/advanced/mail-forwarding/aws-ses/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2184
v14.0/config/advanced/mail-forwarding/gmail-smtp/index.html
Normal file
2184
v14.0/config/advanced/mail-forwarding/gmail-smtp/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2398
v14.0/config/advanced/mail-forwarding/relay-hosts/index.html
Normal file
2398
v14.0/config/advanced/mail-forwarding/relay-hosts/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2339
v14.0/config/advanced/mail-getmail/index.html
Normal file
2339
v14.0/config/advanced/mail-getmail/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2332
v14.0/config/advanced/mail-sieve/index.html
Normal file
2332
v14.0/config/advanced/mail-sieve/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2181
v14.0/config/advanced/maintenance/update-and-cleanup/index.html
Normal file
2181
v14.0/config/advanced/maintenance/update-and-cleanup/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2423
v14.0/config/advanced/optional-config/index.html
Normal file
2423
v14.0/config/advanced/optional-config/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2280
v14.0/config/advanced/override-defaults/dovecot/index.html
Normal file
2280
v14.0/config/advanced/override-defaults/dovecot/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2168
v14.0/config/advanced/override-defaults/postfix/index.html
Normal file
2168
v14.0/config/advanced/override-defaults/postfix/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2173
v14.0/config/advanced/override-defaults/user-patches/index.html
Normal file
2173
v14.0/config/advanced/override-defaults/user-patches/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2498
v14.0/config/advanced/podman/index.html
Normal file
2498
v14.0/config/advanced/podman/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2161
v14.0/config/best-practices/autodiscover/index.html
Normal file
2161
v14.0/config/best-practices/autodiscover/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2643
v14.0/config/best-practices/dkim_dmarc_spf/index.html
Normal file
2643
v14.0/config/best-practices/dkim_dmarc_spf/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2243
v14.0/config/best-practices/mta-sts/index.html
Normal file
2243
v14.0/config/best-practices/mta-sts/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2518
v14.0/config/debugging/index.html
Normal file
2518
v14.0/config/debugging/index.html
Normal file
File diff suppressed because it is too large
Load Diff
5907
v14.0/config/environment/index.html
Normal file
5907
v14.0/config/environment/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2163
v14.0/config/pop3/index.html
Normal file
2163
v14.0/config/pop3/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2416
v14.0/config/security/fail2ban/index.html
Normal file
2416
v14.0/config/security/fail2ban/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2261
v14.0/config/security/mail_crypt/index.html
Normal file
2261
v14.0/config/security/mail_crypt/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2821
v14.0/config/security/rspamd/index.html
Normal file
2821
v14.0/config/security/rspamd/index.html
Normal file
File diff suppressed because it is too large
Load Diff
3293
v14.0/config/security/ssl/index.html
Normal file
3293
v14.0/config/security/ssl/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2572
v14.0/config/security/understanding-the-ports/index.html
Normal file
2572
v14.0/config/security/understanding-the-ports/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2165
v14.0/config/setup.sh/index.html
Normal file
2165
v14.0/config/setup.sh/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2440
v14.0/config/user-management/index.html
Normal file
2440
v14.0/config/user-management/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2235
v14.0/contributing/general/index.html
Normal file
2235
v14.0/contributing/general/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2314
v14.0/contributing/issues-and-pull-requests/index.html
Normal file
2314
v14.0/contributing/issues-and-pull-requests/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2476
v14.0/contributing/tests/index.html
Normal file
2476
v14.0/contributing/tests/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2436
v14.0/examples/tutorials/basic-installation/index.html
Normal file
2436
v14.0/examples/tutorials/basic-installation/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2152
v14.0/examples/tutorials/blog-posts/index.html
Normal file
2152
v14.0/examples/tutorials/blog-posts/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2325
v14.0/examples/tutorials/crowdsec/index.html
Normal file
2325
v14.0/examples/tutorials/crowdsec/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2331
v14.0/examples/tutorials/docker-build/index.html
Normal file
2331
v14.0/examples/tutorials/docker-build/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2705
v14.0/examples/tutorials/mailserver-behind-proxy/index.html
Normal file
2705
v14.0/examples/tutorials/mailserver-behind-proxy/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2396
v14.0/examples/use-cases/auth-lua/index.html
Normal file
2396
v14.0/examples/use-cases/auth-lua/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2197
v14.0/examples/use-cases/bind-smtp-network-interface/index.html
Normal file
2197
v14.0/examples/use-cases/bind-smtp-network-interface/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2475
v14.0/examples/use-cases/external-relay-only-mailserver/index.html
Normal file
2475
v14.0/examples/use-cases/external-relay-only-mailserver/index.html
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
2362
v14.0/examples/use-cases/imap-folders/index.html
Normal file
2362
v14.0/examples/use-cases/imap-folders/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2517
v14.0/examples/use-cases/ios-mail-push-support/index.html
Normal file
2517
v14.0/examples/use-cases/ios-mail-push-support/index.html
Normal file
File diff suppressed because it is too large
Load Diff
3265
v14.0/faq/index.html
Normal file
3265
v14.0/faq/index.html
Normal file
File diff suppressed because it is too large
Load Diff
BIN
v14.0/favicon.ico
Normal file
BIN
v14.0/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
2336
v14.0/index.html
Normal file
2336
v14.0/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2559
v14.0/introduction/index.html
Normal file
2559
v14.0/introduction/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1
v14.0/search/search_index.json
Normal file
1
v14.0/search/search_index.json
Normal file
File diff suppressed because one or more lines are too long
248
v14.0/sitemap.xml
Normal file
248
v14.0/sitemap.xml
Normal file
@ -0,0 +1,248 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/faq/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/introduction/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/usage/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/debugging/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/environment/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/pop3/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/setup.sh/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/user-management/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/auth-ldap/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/auth-oauth2/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/dovecot-master-accounts/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/full-text-search/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/ipv6/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/kubernetes/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-fetchmail/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-getmail/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-sieve/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/optional-config/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/podman/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-forwarding/aws-ses/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-forwarding/gmail-smtp/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/mail-forwarding/relay-hosts/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/maintenance/update-and-cleanup/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/override-defaults/dovecot/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/override-defaults/postfix/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/advanced/override-defaults/user-patches/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/best-practices/autodiscover/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/best-practices/dkim_dmarc_spf/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/best-practices/mta-sts/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/security/fail2ban/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/security/mail_crypt/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/security/rspamd/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/security/ssl/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/config/security/understanding-the-ports/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/contributing/general/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/contributing/issues-and-pull-requests/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/contributing/tests/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/tutorials/basic-installation/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/tutorials/blog-posts/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/tutorials/crowdsec/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/tutorials/docker-build/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/tutorials/mailserver-behind-proxy/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/auth-lua/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/bind-smtp-network-interface/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/external-relay-only-mailserver/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/forward-only-mailserver-with-ldap-authentication/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/imap-folders/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://docker-mailserver.github.io/docker-mailserver/v14.0/examples/use-cases/ios-mail-push-support/</loc>
|
||||
<lastmod>2024-06-05</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
2617
v14.0/usage/index.html
Normal file
2617
v14.0/usage/index.html
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user