public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
generate_config.sh
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
generate_config.sh
on main
Author
Date
Commit
Line
Code
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 1
#!/usr/bin/env bash
#!/usr/bin/env bash
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 2
DerLinkman
11 months ago
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 3
# Ensure the script is run from the directory that contains a link of .env
# Ensure the script is run from the directory that contains a link of .env
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 4
# Resolve the directory this script lives in for consistent behavior when invoked from elsewhere
# Resolve the directory this script lives in for consistent behavior when invoked from elsewhere
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 5
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" >/dev/null 2>&1 && pwd)"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" >/dev/null 2>&1 && pwd)"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 6
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 7
# Ensure script is executed in the mailcow installation directory by checking for a .env symlink that points to mailcow.conf
# Ensure script is executed in the mailcow installation directory by checking for a .env symlink that points to mailcow.conf
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 8
if [ ! -L "${PWD}/.env" ]; then
if [ ! -L "${PWD}/.env" ]; then
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 9
echo -e "\e[33mPlease run this script from the mailcow installation directory.\e[0m"
echo -e "\e[33mPlease run this script from the mailcow installation directory.\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 10
echo -e " \e[36mcd /path/to/mailcow && ./generate_config.sh\e[0m"
echo -e " \e[36mcd /path/to/mailcow && ./generate_config.sh\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 11
exit 1
exit 1
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 12
fi
fi
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 13
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 14
# Verify the .env symlink points to a mailcow.conf file
# Verify the .env symlink points to a mailcow.conf file
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 15
env_target="$(readlink -f "${PWD}/.env" 2>/dev/null || true)"
env_target="$(readlink -f "${PWD}/.env" 2>/dev/null || true)"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 16
if [ -z "$env_target" ] || [ "$(basename "$env_target")" != "mailcow.conf" ]; then
if [ -z "$env_target" ] || [ "$(basename "$env_target")" != "mailcow.conf" ]; then
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 17
echo -e "\e[31mThe found .env symlink does not point to a mailcow.conf file.\e[0m"
echo -e "\e[31mThe found .env symlink does not point to a mailcow.conf file.\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 18
echo -e "\e[33mPlease create a symbolic link .env -> mailcow.conf inside the mailcow directory and run this script there.\e[0m"
echo -e "\e[33mPlease create a symbolic link .env -> mailcow.conf inside the mailcow directory and run this script there.\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 19
echo -e "\e[33mNote: 'ln -s mailcow.conf .env' will create the symlink even if mailcow.conf does not yet exist.\e[0m"
echo -e "\e[33mNote: 'ln -s mailcow.conf .env' will create the symlink even if mailcow.conf does not yet exist.\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 20
echo -e " \e[36mcd /path/to/mailcow && ln -s mailcow.conf .env && ./generate_config.sh\e[0m"
echo -e " \e[36mcd /path/to/mailcow && ln -s mailcow.conf .env && ./generate_config.sh\e[0m"
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 21
exit 1
exit 1
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 22
fi
fi
same change
94c1a6c
scripts: ipv6_controller improvement + fix modules handling (#6722)
- Full commit hash
94c1a6c4e1f8901e38e4562dd208cc026277fab8- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 23
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 24
# Load mailcow Generic Scripts
# Load mailcow Generic Scripts
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 25
source _modules/scripts/core.sh
source _modules/scripts/core.sh
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 26
source _modules/scripts/ipv6_controller.sh
source _modules/scripts/ipv6_controller.sh
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 27
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 28
set -o pipefail
set -o pipefail
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 29
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 30
get_installed_tools
get_installed_tools
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 31
get_docker_version
get_docker_version
DerLinkman
almost 2 years ago
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 32
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 33
if [[ $docker_version -lt 24 ]]; then
if [[ $docker_version -lt 24 ]]; then
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 34
echo -e "\e[31mCannot find Docker with a Version higher or equals 24.0.0\e[0m"
echo -e "\e[31mCannot find Docker with a Version higher or equals 24.0.0\e[0m"
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 35
echo -e "\e[33mmailcow needs a newer Docker version to work properly...\e[0m"
echo -e "\e[33mmailcow needs a newer Docker version to work properly...\e[0m"
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 36
echo -e "\e[31mPlease update your Docker installation... exiting\e[0m"
echo -e "\e[31mPlease update your Docker installation... exiting\e[0m"
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 37
exit 1
exit 1
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 38
fi
fi
same change
926af87
scripts: adding docker version check to align to docs (24.X)
- Full commit hash
926af87cfb19cb3fdad8da992dccc2d506400079- Author
- DerLinkman <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 39
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 40
detect_bad_asn
detect_bad_asn
DerLinkman
about 3 years ago
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 41
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 42
### If generate_config.sh is started with --dev or -d it will not check out nightly or master branch and will keep on the current branch
### If generate_config.sh is started with --dev or -d it will not check out nightly or master branch and will keep on the current branch
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 43
if [[ ${1} == "--dev" || ${1} == "-d" ]]; then
if [[ ${1} == "--dev" || ${1} == "-d" ]]; then
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 44
SKIP_BRANCH=y
SKIP_BRANCH=y
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 45
else
else
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 46
SKIP_BRANCH=n
SKIP_BRANCH=n
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 47
fi
fi
DerLinkman
almost 4 years ago
65eddee
New variable for mailcow.conf in generate_config.sh
- Full commit hash
65eddee63e2d4bd640b41d5e3a47aa0c145a4919- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 48
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 49
if [ -f mailcow.conf ]; then
if [ -f mailcow.conf ]; then
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 50
read -r -p "A config file exists and will be overwritten, are you sure you want to continue? [y/N] " response
read -r -p "A config file exists and will be overwritten, are you sure you want to continue? [y/N] " response
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 51
case $response in
case $response in
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 52
[yY][eE][sS]|[yY])
[yY][eE][sS]|[yY])
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 53
mv mailcow.conf mailcow.conf_backup
mv mailcow.conf mailcow.conf_backup
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 54
chmod 600 mailcow.conf_backup
chmod 600 mailcow.conf_backup
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 55
;;
;;
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 56
*)
*)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 57
exit 1
exit 1
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 58
;;
;;
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 59
esac
esac
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 60
fi
fi
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 61
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 62
echo "Press enter to confirm the detected value '[value]' where applicable or enter a custom value."
echo "Press enter to confirm the detected value '[value]' where applicable or enter a custom value."
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 63
while [ -z "${MAILCOW_HOSTNAME}" ]; do
while [ -z "${MAILCOW_HOSTNAME}" ]; do
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 64
read -p "Mail server hostname (FQDN) - this is not your mail domain, but your mail servers hostname: " -e MAILCOW_HOSTNAME
read -p "Mail server hostname (FQDN) - this is not your mail domain, but your mail servers hostname: " -e MAILCOW_HOSTNAME
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 65
DOTS=${MAILCOW_HOSTNAME//[^.]};
DOTS=${MAILCOW_HOSTNAME//[^.]};
DerLinkman
almost 3 years ago
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 66
if [ ${#DOTS} -lt 1 ]; then
if [ ${#DOTS} -lt 1 ]; then
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 67
echo -e "\e[31mMAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) is not a FQDN!\e[0m"
echo -e "\e[31mMAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) is not a FQDN!\e[0m"
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 68
sleep 1
sleep 1
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 69
echo "Please change it to a FQDN and redeploy the stack with docker(-)compose up -d"
echo "Please change it to a FQDN and redeploy the stack with docker(-)compose up -d"
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 70
exit 1
exit 1
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 71
elif [[ "${MAILCOW_HOSTNAME: -1}" == "." ]]; then
elif [[ "${MAILCOW_HOSTNAME: -1}" == "." ]]; then
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 72
echo "MAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) is ending with a dot. This is not a valid FQDN!"
echo "MAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) is ending with a dot. This is not a valid FQDN!"
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 73
exit 1
exit 1
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 74
elif [ ${#DOTS} -eq 1 ]; then
elif [ ${#DOTS} -eq 1 ]; then
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 75
echo -e "\e[33mMAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) does not contain a Subdomain. This is not fully tested and may cause issues.\e[0m"
echo -e "\e[33mMAILCOW_HOSTNAME (${MAILCOW_HOSTNAME}) does not contain a Subdomain. This is not fully tested and may cause issues.\e[0m"
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 76
echo "Find more information about why this message exists here: https://github.com/mailcow/mailcow-dockerized/issues/1572"
echo "Find more information about why this message exists here: https://github.com/mailcow/mailcow-dockerized/issues/1572"
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 77
read -r -p "Do you want to proceed anyway? [y/N] " response
read -r -p "Do you want to proceed anyway? [y/N] " response
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 78
if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 79
echo "OK. Procceding."
echo "OK. Procceding."
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 80
else
else
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 81
echo "OK. Exiting."
echo "OK. Exiting."
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 82
exit 1
exit 1
same change
e67ba60
Added Colors, cause there fancy :) + Added in generate_config.sh
- Full commit hash
e67ba60863d5fc4f999caab8a72ce4be3f80ffde- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 83
fi
fi
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 84
fi
fi
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 85
done
done
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 86
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 87
if [ -a /etc/timezone ]; then
if [ -a /etc/timezone ]; then
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 88
DETECTED_TZ=$(cat /etc/timezone)
DETECTED_TZ=$(cat /etc/timezone)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 89
elif [ -a /etc/localtime ]; then
elif [ -a /etc/localtime ]; then
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 90
DETECTED_TZ=$(readlink /etc/localtime|sed -n 's|^.*zoneinfo/||p')
DETECTED_TZ=$(readlink /etc/localtime|sed -n 's|^.*zoneinfo/||p')
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 91
fi
fi
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 92
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 93
while [ -z "${MAILCOW_TZ}" ]; do
while [ -z "${MAILCOW_TZ}" ]; do
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 94
if [ -z "${DETECTED_TZ}" ]; then
if [ -z "${DETECTED_TZ}" ]; then
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 95
read -p "Timezone: " -e MAILCOW_TZ
read -p "Timezone: " -e MAILCOW_TZ
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 96
else
else
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 97
read -p "Timezone [${DETECTED_TZ}]: " -e MAILCOW_TZ
read -p "Timezone [${DETECTED_TZ}]: " -e MAILCOW_TZ
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 98
[ -z "${MAILCOW_TZ}" ] && MAILCOW_TZ=${DETECTED_TZ}
[ -z "${MAILCOW_TZ}" ] && MAILCOW_TZ=${DETECTED_TZ}
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 99
fi
fi
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 100
done
done
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 101
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 102
MEM_TOTAL=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
MEM_TOTAL=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 103
Ayowel
over 2 years ago
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 104
if [ -z "${SKIP_CLAMD}" ]; then
if [ -z "${SKIP_CLAMD}" ]; then
Hassan A Hashim
almost 2 years ago
3d62869
Fix: bash variables are not quoted (#6022)
- Full commit hash
3d628696643d5b1a1dd68bcbc5ff3051c0d1b0c6- Author
- Hassan A Hashim <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 105
if [ "${MEM_TOTAL}" -le "2621440" ]; then
if [ "${MEM_TOTAL}" -le "2621440" ]; then
Ayowel
over 2 years ago
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 106
echo "Installed memory is <= 2.5 GiB. It is recommended to disable ClamAV to prevent out-of-memory situations."
echo "Installed memory is <= 2.5 GiB. It is recommended to disable ClamAV to prevent out-of-memory situations."
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 107
echo "ClamAV can be re-enabled by setting SKIP_CLAMD=n in mailcow.conf."
echo "ClamAV can be re-enabled by setting SKIP_CLAMD=n in mailcow.conf."
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 108
read -r -p "Do you want to disable ClamAV now? [Y/n] " response
read -r -p "Do you want to disable ClamAV now? [Y/n] " response
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 109
case $response in
case $response in
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 110
[nN][oO]|[nN])
[nN][oO]|[nN])
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 111
SKIP_CLAMD=n
SKIP_CLAMD=n
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 112
;;
;;
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 113
*)
*)
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 114
SKIP_CLAMD=y
SKIP_CLAMD=y
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 115
;;
;;
Ayowel
over 2 years ago
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 116
esac
esac
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 117
else
else
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 118
SKIP_CLAMD=n
SKIP_CLAMD=n
same change
5c851f2
Allow prompt-less install on low-resource systems
- Full commit hash
5c851f29358c634c27ec02e53364d9f7b62bb789- Author
- Ayowel <[email protected]>
- Date
- over 2 years ago
- Selected line
- 119
fi
fi
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 120
fi
fi
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 121
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 122
if [[ ${SKIP_BRANCH} != y ]]; then
if [[ ${SKIP_BRANCH} != y ]]; then
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 123
echo "Which branch of mailcow do you want to use?"
echo "Which branch of mailcow do you want to use?"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 124
echo ""
echo ""
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 125
echo "Available Branches:"
echo "Available Branches:"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 126
echo "- master branch (stable updates) | default, recommended [1]"
echo "- master branch (stable updates) | default, recommended [1]"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 127
echo "- nightly branch (unstable updates, testing) | not-production ready [2]"
echo "- nightly branch (unstable updates, testing) | not-production ready [2]"
FreddleSpl0it
over 1 year ago
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 128
echo "- legacy branch (supported until February 2026) | deprecated, security updates only [3]"
echo "- legacy branch (supported until February 2026) | deprecated, security updates only [3]"
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 129
sleep 1
sleep 1
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 130
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 131
while [ -z "${MAILCOW_BRANCH}" ]; do
while [ -z "${MAILCOW_BRANCH}" ]; do
FreddleSpl0it
over 1 year ago
8d0c03b
small adjustment for legacy version
- Full commit hash
8d0c03b2fcaea088e1ece18faccde9a2d404a13d- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 132
read -r -p "Choose the Branch with it's number [1/2/3] " branch
read -r -p "Choose the Branch with it's number [1/2/3] " branch
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 133
case $branch in
case $branch in
FreddleSpl0it
over 1 year ago
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 134
[3])
[3])
same change
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 135
MAILCOW_BRANCH="legacy"
MAILCOW_BRANCH="legacy"
same change
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 136
;;
;;
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 137
[2])
[2])
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 138
MAILCOW_BRANCH="nightly"
MAILCOW_BRANCH="nightly"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 139
;;
;;
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 140
*)
*)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 141
MAILCOW_BRANCH="master"
MAILCOW_BRANCH="master"
DerLinkman
almost 4 years ago
4f380de
Added branch switch in generate_config.sh
- Full commit hash
4f380debb5a1b4e0079dde717ed3c6a455629b43- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 142
;;
;;
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 143
esac
esac
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 144
done
done
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 145
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 146
git fetch --all
git fetch --all
Hassan A Hashim
almost 2 years ago
3d62869
Fix: bash variables are not quoted (#6022)
- Full commit hash
3d628696643d5b1a1dd68bcbc5ff3051c0d1b0c6- Author
- Hassan A Hashim <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 147
git checkout -f "$MAILCOW_BRANCH"
git checkout -f "$MAILCOW_BRANCH"
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 148
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 149
elif [[ ${SKIP_BRANCH} == y ]]; then
elif [[ ${SKIP_BRANCH} == y ]]; then
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 150
echo -e "\033[33mEnabled Dev Mode.\033[0m"
echo -e "\033[33mEnabled Dev Mode.\033[0m"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 151
echo -e "\033[33mNot checking out a different branch!\033[0m"
echo -e "\033[33mNot checking out a different branch!\033[0m"
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 152
MAILCOW_BRANCH=$(git rev-parse --short $(git rev-parse @{upstream}))
MAILCOW_BRANCH=$(git rev-parse --short $(git rev-parse @{upstream}))
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 153
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 154
else
else
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 155
echo -e "\033[31mCould not determine branch input..."
echo -e "\033[31mCould not determine branch input..."
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 156
echo -e "\033[31mExiting."
echo -e "\033[31mExiting."
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 157
exit 1
exit 1
FreddleSpl0it
over 1 year ago
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 158
fi
fi
Malte Jesgarzewsky
almost 4 years ago
1c15133
Modified branch switch in generate_config.sh
- Full commit hash
1c15133a522f435e954aa27a010b80cd222d81b5- Author
- Malte Jesgarzewsky <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 159
same change
1c15133
Modified branch switch in generate_config.sh
- Full commit hash
1c15133a522f435e954aa27a010b80cd222d81b5- Author
- Malte Jesgarzewsky <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 160
if [ ! -z "${MAILCOW_BRANCH}" ]; then
if [ ! -z "${MAILCOW_BRANCH}" ]; then
same change
1c15133
Modified branch switch in generate_config.sh
- Full commit hash
1c15133a522f435e954aa27a010b80cd222d81b5- Author
- Malte Jesgarzewsky <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 161
git_branch=${MAILCOW_BRANCH}
git_branch=${MAILCOW_BRANCH}
same change
1c15133
Modified branch switch in generate_config.sh
- Full commit hash
1c15133a522f435e954aa27a010b80cd222d81b5- Author
- Malte Jesgarzewsky <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 162
fi
fi
DerLinkman
almost 4 years ago
4f380de
Added branch switch in generate_config.sh
- Full commit hash
4f380debb5a1b4e0079dde717ed3c6a455629b43- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 163
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 164
configure_ipv6
configure_ipv6
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 165
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 166
[ ! -f ./data/conf/rspamd/override.d/worker-controller-password.inc ] && echo '# Placeholder' > ./data/conf/rspamd/override.d/worker-controller-password.inc
[ ! -f ./data/conf/rspamd/override.d/worker-controller-password.inc ] && echo '# Placeholder' > ./data/conf/rspamd/override.d/worker-controller-password.inc
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 167
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 168
cat << EOF > mailcow.conf
cat << EOF > mailcow.conf
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 169
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 170
# mailcow web ui configuration
# mailcow web ui configuration
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 171
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 172
# example.org is _not_ a valid hostname, use a fqdn here.
# example.org is _not_ a valid hostname, use a fqdn here.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 173
# Default admin user is "admin"
# Default admin user is "admin"
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 174
# Default password is "moohoo"
# Default password is "moohoo"
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 175
MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME}
MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME}
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 176
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 177
# Password hash algorithm
# Password hash algorithm
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 178
# Only certain password hash algorithm are supported. For a fully list of supported schemes,
# Only certain password hash algorithm are supported. For a fully list of supported schemes,
Peter
almost 3 years ago
b1c2ffb
mailcow.github.io -> docs.mailcow.email
- Full commit hash
b1c2ffba6ebb92cd130802a60ccf9d70dd945a83- Author
- Peter <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 179
# see https://docs.mailcow.email/models/model-passwd/
# see https://docs.mailcow.email/models/model-passwd/
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 180
MAILCOW_PASS_SCHEME=BLF-CRYPT
MAILCOW_PASS_SCHEME=BLF-CRYPT
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 181
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 182
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 183
# SQL database configuration
# SQL database configuration
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 184
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 185
DBNAME=mailcow
DBNAME=mailcow
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 186
DBUSER=mailcow
DBUSER=mailcow
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 187
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 188
# Please use long, random alphanumeric strings (A-Za-z0-9)
# Please use long, random alphanumeric strings (A-Za-z0-9)
Stefan Morgenthaler
6 months ago
c485968
feat: allow preset of passwords via environment vars
- Full commit hash
c485968e7f525c99ae4eaa2b0499ffa145a81d8e- Author
- Stefan Morgenthaler <[email protected]>
- Date
- 6 months ago
- Selected line
- 189
DBPASS=${MAILCOW_DBPASS:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
DBPASS=${MAILCOW_DBPASS:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
same change
c485968
feat: allow preset of passwords via environment vars
- Full commit hash
c485968e7f525c99ae4eaa2b0499ffa145a81d8e- Author
- Stefan Morgenthaler <[email protected]>
- Date
- 6 months ago
- Selected line
- 190
DBROOT=${MAILCOW_DBROOT:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
DBROOT=${MAILCOW_DBROOT:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 191
FreddleSpl0it
over 1 year ago
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 192
# ------------------------------
# ------------------------------
same change
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 193
# REDIS configuration
# REDIS configuration
same change
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 194
# ------------------------------
# ------------------------------
Stefan Morgenthaler
6 months ago
c485968
feat: allow preset of passwords via environment vars
- Full commit hash
c485968e7f525c99ae4eaa2b0499ffa145a81d8e- Author
- Stefan Morgenthaler <[email protected]>
- Date
- 6 months ago
- Selected line
- 195
REDISPASS=${MAILCOW_REDISPASS:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
REDISPASS=${MAILCOW_REDISPASS:-$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2> /dev/null | head -c 28)}
FreddleSpl0it
over 1 year ago
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 196
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 197
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 198
# HTTP/S Bindings
# HTTP/S Bindings
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 199
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 200
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 201
# You should use HTTPS, but in case of SSL offloaded reverse proxies:
# You should use HTTPS, but in case of SSL offloaded reverse proxies:
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 202
# Might be important: This will also change the binding within the container.
# Might be important: This will also change the binding within the container.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 203
# If you use a proxy within Docker, point it to the ports you set below.
# If you use a proxy within Docker, point it to the ports you set below.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 204
# Do _not_ use IP:PORT in HTTP(S)_BIND or HTTP(S)_PORT
# Do _not_ use IP:PORT in HTTP(S)_BIND or HTTP(S)_PORT
FreddleSpl0it
over 3 years ago
dca5f1b
[Web] move /process/login to internal endpoint
- Full commit hash
dca5f1baab2ed5a0d5e8309df6b2909a15ed70a4- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 205
# IMPORTANT: Do not use port 8081, 9081, 9082 or 65510!
# IMPORTANT: Do not use port 8081, 9081, 9082 or 65510!
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 206
# Example: HTTP_BIND=1.2.3.4
# Example: HTTP_BIND=1.2.3.4
Niklas Meyer
about 4 years ago
714511b
[Compose] Update to Docker Compose v2 (#4605)
- Full commit hash
714511b0a84691f4c52f55ebbe982623f2512c80- Author
- Niklas Meyer <[email protected]>
- Date
- about 4 years ago
- Selected line
- 207
# For IPv4 leave it as it is: HTTP_BIND= & HTTPS_PORT=
# For IPv4 leave it as it is: HTTP_BIND= & HTTPS_PORT=
Peter
almost 3 years ago
b1c2ffb
mailcow.github.io -> docs.mailcow.email
- Full commit hash
b1c2ffba6ebb92cd130802a60ccf9d70dd945a83- Author
- Peter <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 208
# For IPv6 see https://docs.mailcow.email/post_installation/firststeps-ip_bindings/
# For IPv6 see https://docs.mailcow.email/post_installation/firststeps-ip_bindings/
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 209
HTTP_PORT=80
HTTP_PORT=80
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 210
HTTP_BIND=
HTTP_BIND=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 211
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 212
HTTPS_PORT=443
HTTPS_PORT=443
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 213
HTTPS_BIND=
HTTPS_BIND=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 214
FreddleSpl0it
over 1 year ago
e645f93
[Nginx] Add env var for HTTP to HTTPS redirection
- Full commit hash
e645f931dc04c8b8754927d90275a2e77a03931d- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 215
# Redirect HTTP connections to HTTPS - y/n
# Redirect HTTP connections to HTTPS - y/n
Patrik Kernstock
10 months ago
171c591
Enable REDIRECT_HTTP=y by default
- Full commit hash
171c591da42a83bd9bd053ff8b1f15be1b10b231- Author
- Patrik Kernstock <[email protected]>
- Date
- 10 months ago
- Selected line
- 216
HTTP_REDIRECT=y
HTTP_REDIRECT=y
FreddleSpl0it
over 1 year ago
e645f93
[Nginx] Add env var for HTTP to HTTPS redirection
- Full commit hash
e645f931dc04c8b8754927d90275a2e77a03931d- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 217
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 218
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 219
# Other bindings
# Other bindings
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 220
# ------------------------------
# ------------------------------
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 221
# You should leave that alone
# You should leave that alone
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 222
# Format: 11.22.33.44:25 or 12.34.56.78:465 etc.
# Format: 11.22.33.44:25 or 12.34.56.78:465 etc.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 223
SMTP_PORT=25
SMTP_PORT=25
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 224
SMTPS_PORT=465
SMTPS_PORT=465
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 225
SUBMISSION_PORT=587
SUBMISSION_PORT=587
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 226
IMAP_PORT=143
IMAP_PORT=143
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 227
IMAPS_PORT=993
IMAPS_PORT=993
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 228
POP_PORT=110
POP_PORT=110
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 229
POPS_PORT=995
POPS_PORT=995
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 230
SIEVE_PORT=4190
SIEVE_PORT=4190
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 231
DOVEADM_PORT=127.0.0.1:19991
DOVEADM_PORT=127.0.0.1:19991
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 232
SQL_PORT=127.0.0.1:13306
SQL_PORT=127.0.0.1:13306
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 233
REDIS_PORT=127.0.0.1:7654
REDIS_PORT=127.0.0.1:7654
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 234
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 235
# Your timezone
# Your timezone
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 236
# See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for a list of timezones
# See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for a list of timezones
Peter
almost 3 years ago
5de151a
change column name
- Full commit hash
5de151a966a3f5ee3c8a6bfdf66a54fd3beb0eef- Author
- Peter <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 237
# Use the column named 'TZ identifier' + pay attention for the column named 'Notes'
# Use the column named 'TZ identifier' + pay attention for the column named 'Notes'
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 238
TZ=${MAILCOW_TZ}
TZ=${MAILCOW_TZ}
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 239
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 240
# Fixed project name
# Fixed project name
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 241
# Please use lowercase letters only
# Please use lowercase letters only
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 242
COMPOSE_PROJECT_NAME=mailcowdockerized
COMPOSE_PROJECT_NAME=mailcowdockerized
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 243
DerLinkman
almost 4 years ago
65eddee
New variable for mailcow.conf in generate_config.sh
- Full commit hash
65eddee63e2d4bd640b41d5e3a47aa0c145a4919- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 244
# Used Docker Compose version
# Used Docker Compose version
same change
65eddee
New variable for mailcow.conf in generate_config.sh
- Full commit hash
65eddee63e2d4bd640b41d5e3a47aa0c145a4919- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 245
# Switch here between native (compose plugin) and standalone
# Switch here between native (compose plugin) and standalone
Jonas
10 months ago
871c422
Fix typos in config (#6792)
- Full commit hash
871c422ec1cc1afaaba73b40eac5061623fd83fb- Author
- Jonas <[email protected]>
- Date
- 10 months ago
- Selected line
- 246
# For more information take a look at the mailcow docs regarding the configuration options.
# For more information take a look at the mailcow docs regarding the configuration options.
DerLinkman
almost 4 years ago
047c4aa
Added seperate update_compose Script + some Improvements
- Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 247
# Normally this should be untouched but if you decided to use either of those you can switch it manually here.
# Normally this should be untouched but if you decided to use either of those you can switch it manually here.
Hannes Happle
over 3 years ago
20fc9ea
Fix Typo
- Full commit hash
20fc9eaf8491482162483981758bc89177cc7f5a- Author
- Hannes Happle <[email protected]>
- Date
- over 3 years ago
- Selected line
- 248
# Please be aware that at least one of those variants should be installed on your machine or mailcow will fail.
# Please be aware that at least one of those variants should be installed on your machine or mailcow will fail.
DerLinkman
almost 4 years ago
65eddee
New variable for mailcow.conf in generate_config.sh
- Full commit hash
65eddee63e2d4bd640b41d5e3a47aa0c145a4919- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 249
DOCKER_COMPOSE_VERSION=${COMPOSE_VERSION}
DOCKER_COMPOSE_VERSION=${COMPOSE_VERSION}
same change
65eddee
New variable for mailcow.conf in generate_config.sh
- Full commit hash
65eddee63e2d4bd640b41d5e3a47aa0c145a4919- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 250
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 251
# Set this to "allow" to enable the anyone pseudo user. Disabled by default.
# Set this to "allow" to enable the anyone pseudo user. Disabled by default.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 252
# When enabled, ACL can be created, that apply to "All authenticated users"
# When enabled, ACL can be created, that apply to "All authenticated users"
Jonas
10 months ago
871c422
Fix typos in config (#6792)
- Full commit hash
871c422ec1cc1afaaba73b40eac5061623fd83fb- Author
- Jonas <[email protected]>
- Date
- 10 months ago
- Selected line
- 253
# This should probably only be activated on mail hosts, that are used exclusively by one organisation.
# This should probably only be activated on mail hosts, that are used exclusively by one organisation.
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 254
# Otherwise a user might share data with too many other users.
# Otherwise a user might share data with too many other users.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 255
ACL_ANYONE=disallow
ACL_ANYONE=disallow
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 256
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 257
# Garbage collector cleanup
# Garbage collector cleanup
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 258
# Deleted domains and mailboxes are moved to /var/vmail/_garbage/timestamp_sanitizedstring
# Deleted domains and mailboxes are moved to /var/vmail/_garbage/timestamp_sanitizedstring
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 259
# How long should objects remain in the garbage until they are being deleted? (value in minutes)
# How long should objects remain in the garbage until they are being deleted? (value in minutes)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 260
# Check interval is hourly
# Check interval is hourly
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 261
MAILDIR_GC_TIME=7200
MAILDIR_GC_TIME=7200
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 262
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 263
# Additional SAN for the certificate
# Additional SAN for the certificate
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 264
#
#
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 265
# You can use wildcard records to create specific names for every domain you add to mailcow.
# You can use wildcard records to create specific names for every domain you add to mailcow.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 266
# Example: Add domains "example.com" and "example.net" to mailcow, change ADDITIONAL_SAN to a value like:
# Example: Add domains "example.com" and "example.net" to mailcow, change ADDITIONAL_SAN to a value like:
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 267
#ADDITIONAL_SAN=imap.*,smtp.*
#ADDITIONAL_SAN=imap.*,smtp.*
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 268
# This will expand the certificate to "imap.example.com", "smtp.example.com", "imap.example.net", "smtp.example.net"
# This will expand the certificate to "imap.example.com", "smtp.example.com", "imap.example.net", "smtp.example.net"
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 269
# plus every domain you add in the future.
# plus every domain you add in the future.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 270
#
#
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 271
# You can also just add static names...
# You can also just add static names...
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 272
#ADDITIONAL_SAN=srv1.example.net
#ADDITIONAL_SAN=srv1.example.net
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 273
# ...or combine wildcard and static names:
# ...or combine wildcard and static names:
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 274
#ADDITIONAL_SAN=imap.*,srv1.example.com
#ADDITIONAL_SAN=imap.*,srv1.example.com
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 275
ADDITIONAL_SAN=
ADDITIONAL_SAN=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 276
Lasagne
about 2 years ago
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 277
# Obtain certificates for autodiscover.* and autoconfig.* domains.
# Obtain certificates for autodiscover.* and autoconfig.* domains.
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 278
# This can be useful to switch off in case you are in a scenario where a reverse proxy already handles those.
# This can be useful to switch off in case you are in a scenario where a reverse proxy already handles those.
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 279
# There are mixed scenarios where ports 80,443 are occupied and you do not want to share certs
# There are mixed scenarios where ports 80,443 are occupied and you do not want to share certs
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 280
# between services. So acme-mailcow obtains for maildomains and all web-things get handled
# between services. So acme-mailcow obtains for maildomains and all web-things get handled
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 281
# in the reverse proxy.
# in the reverse proxy.
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 282
AUTODISCOVER_SAN=y
AUTODISCOVER_SAN=y
same change
4a052da
Add switch to skip fetching certificates auto{config,discover} subdomains (#5838)
- Full commit hash
4a052da289c36547fd7863d18e3ba23f8ea5dc78- Author
- Lasagne <[email protected]>
- Date
- about 2 years ago
- Selected line
- 283
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 284
# Additional server names for mailcow UI
# Additional server names for mailcow UI
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 285
#
#
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 286
# Specify alternative addresses for the mailcow UI to respond to
# Specify alternative addresses for the mailcow UI to respond to
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 287
# This is useful when you set mail.* as ADDITIONAL_SAN and want to make sure mail.maildomain.com will always point to the mailcow UI.
# This is useful when you set mail.* as ADDITIONAL_SAN and want to make sure mail.maildomain.com will always point to the mailcow UI.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 288
# If the server name does not match a known site, Nginx decides by best-guess and may redirect users to the wrong web root.
# If the server name does not match a known site, Nginx decides by best-guess and may redirect users to the wrong web root.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 289
# You can understand this as server_name directive in Nginx.
# You can understand this as server_name directive in Nginx.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 290
# Comma separated list without spaces! Example: ADDITIONAL_SERVER_NAMES=a.b.c,d.e.f
# Comma separated list without spaces! Example: ADDITIONAL_SERVER_NAMES=a.b.c,d.e.f
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 291
ADDITIONAL_SERVER_NAMES=
ADDITIONAL_SERVER_NAMES=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 292
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 293
# Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n
# Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 294
SKIP_LETS_ENCRYPT=n
SKIP_LETS_ENCRYPT=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 295
Carlos
8 months ago
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 296
# Enable DNS-01 challenge for ACME (acme-mailcow) - y/n
# Enable DNS-01 challenge for ACME (acme-mailcow) - y/n
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 297
# This requires you to set ACME_DNS_PROVIDER and ACME_ACCOUNT_EMAIL below
# This requires you to set ACME_DNS_PROVIDER and ACME_ACCOUNT_EMAIL below
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 298
ACME_DNS_CHALLENGE=n
ACME_DNS_CHALLENGE=n
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 299
ACME_DNS_PROVIDER=dns_xxx
ACME_DNS_PROVIDER=dns_xxx
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 300
[email protected]
[email protected]
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 301
# You will need to pass provider-specific environment variables to the acme-mailcow container.
# You will need to pass provider-specific environment variables to the acme-mailcow container.
FreddleSpl0it
5 months ago
8f883f3
Rename dns-101 to dns-01
- Full commit hash
8f883f3d374b4de9b3ad731d3bef5d667b095ae8- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 302
# See the dns-01 provider documentation for more information.
# See the dns-01 provider documentation for more information.
Carlos
8 months ago
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 303
# for example for Azure DNS:
# for example for Azure DNS:
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 304
#AZUREDNS_SUBSCRIPTIONID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
#AZUREDNS_SUBSCRIPTIONID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 305
#AZUREDNS_TENANTID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
#AZUREDNS_TENANTID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 306
#AZUREDNS_APPID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
#AZUREDNS_APPID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 307
#AZUREDNS_CLIENTSECRET=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
#AZUREDNS_CLIENTSECRET=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 308
#AZUREDNS_RESOURCEGROUP="your-resource-group"
#AZUREDNS_RESOURCEGROUP="your-resource-group"
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 309
#AZUREDNS_ZONE="your-zone-name"
#AZUREDNS_ZONE="your-zone-name"
same change
a52e977
Add DNS-01 challenge support for ACME certificates and related configurations
- Full commit hash
a52e977b89d02044f901a32c1b30568d3e08bb2a- Author
- Carlos <[email protected]>
- Date
- 8 months ago
- Selected line
- 310
Jonas
10 months ago
871c422
Fix typos in config (#6792)
- Full commit hash
871c422ec1cc1afaaba73b40eac5061623fd83fb- Author
- Jonas <[email protected]>
- Date
- 10 months ago
- Selected line
- 311
# Create separate certificates for all domains - y/n
# Create separate certificates for all domains - y/n
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 312
# this will allow adding more than 100 domains, but some email clients will not be able to connect with alternative hostnames
# this will allow adding more than 100 domains, but some email clients will not be able to connect with alternative hostnames
DerLinkman
almost 3 years ago
d7f3ee1
Update Dovecot Wiki Link for new mailcows
- Full commit hash
d7f3ee16aab2656d94c5d68ec4e5b448eaaad771- Author
- DerLinkman <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 313
# see https://doc.dovecot.org/admin_manual/ssl/sni_support
# see https://doc.dovecot.org/admin_manual/ssl/sni_support
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 314
ENABLE_SSL_SNI=n
ENABLE_SSL_SNI=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 315
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 316
# Skip IPv4 check in ACME container - y/n
# Skip IPv4 check in ACME container - y/n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 317
SKIP_IP_CHECK=n
SKIP_IP_CHECK=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 318
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 319
# Skip HTTP verification in ACME container - y/n
# Skip HTTP verification in ACME container - y/n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 320
SKIP_HTTP_VERIFICATION=n
SKIP_HTTP_VERIFICATION=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 321
KagurazakaNyaa
over 2 years ago
d2edf35
update config comment
- Full commit hash
d2edf359ac3ebdc51d56aab488ffc5dd927db13b- Author
- KagurazakaNyaa <[email protected]>
- Date
- over 2 years ago
- Selected line
- 322
# Skip Unbound (DNS Resolver) Healthchecks (NOT Recommended!) - y/n
# Skip Unbound (DNS Resolver) Healthchecks (NOT Recommended!) - y/n
KagurazakaNyaa
over 2 years ago
b89d71e
change variable name
- Full commit hash
b89d71e6e4d42d1082f92914ff453d1272c67088- Author
- KagurazakaNyaa <[email protected]>
- Date
- over 2 years ago
- Selected line
- 323
SKIP_UNBOUND_HEALTHCHECK=n
SKIP_UNBOUND_HEALTHCHECK=n
KagurazakaNyaa
over 2 years ago
ed493f9
Allow user skip unbound healthcheck
- Full commit hash
ed493f9c3a63d94ef10b149829fe3a752c3532e3- Author
- KagurazakaNyaa <[email protected]>
- Date
- over 2 years ago
- Selected line
- 324
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 325
# Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing ClamAV container) - y/n
# Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing ClamAV container) - y/n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 326
SKIP_CLAMD=${SKIP_CLAMD}
SKIP_CLAMD=${SKIP_CLAMD}
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 327
Marvin A. Ruder
over 1 year ago
cd3b1ab
Allow disabling Olefy
- Full commit hash
cd3b1ab828bdaacacbffebfd755c0fa919610f1c- Author
- Marvin A. Ruder <[email protected]>
- Date
- over 1 year ago
- Selected line
- 328
# Skip Olefy (olefy-mailcow) anti-virus for Office documents (Rspamd will auto-detect a missing Olefy container) - y/n
# Skip Olefy (olefy-mailcow) anti-virus for Office documents (Rspamd will auto-detect a missing Olefy container) - y/n
same change
cd3b1ab
Allow disabling Olefy
- Full commit hash
cd3b1ab828bdaacacbffebfd755c0fa919610f1c- Author
- Marvin A. Ruder <[email protected]>
- Date
- over 1 year ago
- Selected line
- 329
SKIP_OLEFY=n
SKIP_OLEFY=n
same change
cd3b1ab
Allow disabling Olefy
- Full commit hash
cd3b1ab828bdaacacbffebfd755c0fa919610f1c- Author
- Marvin A. Ruder <[email protected]>
- Date
- over 1 year ago
- Selected line
- 330
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 331
# Skip SOGo: Will disable SOGo integration and therefore webmail, DAV protocols and ActiveSync support (experimental, unsupported, not fully implemented) - y/n
# Skip SOGo: Will disable SOGo integration and therefore webmail, DAV protocols and ActiveSync support (experimental, unsupported, not fully implemented) - y/n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 332
SKIP_SOGO=n
SKIP_SOGO=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 333
DerLinkman
over 1 year ago
1dac8f1
scripts: changed SKIP_FTS text to warn on lower threaded systems
- Full commit hash
1dac8f1f66ad1767bf7cb5c64f4a95a2af94f2c8- Author
- DerLinkman <[email protected]>
- Date
- over 1 year ago
- Selected line
- 334
# Skip FTS (Fulltext Search) for Dovecot on low-memory, low-threaded systems or if you simply want to disable it.
# Skip FTS (Fulltext Search) for Dovecot on low-memory, low-threaded systems or if you simply want to disable it.
Niklas Meyer
over 1 year ago
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 335
# Dovecot inside mailcow use Flatcurve as FTS Backend.
# Dovecot inside mailcow use Flatcurve as FTS Backend.
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 336
SKIP_FTS=n
SKIP_FTS=n
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 337
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 338
# Dovecot Indexing (FTS) Process maximum heap size in MB, there is no recommendation, please see Dovecot docs.
# Dovecot Indexing (FTS) Process maximum heap size in MB, there is no recommendation, please see Dovecot docs.
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 339
# Flatcurve (Xapian backend) is used as the FTS Indexer. It is supposed to be efficient in CPU and RAM consumption.
# Flatcurve (Xapian backend) is used as the FTS Indexer. It is supposed to be efficient in CPU and RAM consumption.
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 340
# However: Please always monitor your Resource consumption!
# However: Please always monitor your Resource consumption!
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 341
FTS_HEAP=128
FTS_HEAP=128
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 342
Niklas Meyer
over 1 year ago
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 343
# Controls how many processes the Dovecot indexing process can spawn at max.
# Controls how many processes the Dovecot indexing process can spawn at max.
same change
3e8bb06
dovecot: replace solr fts with flatcurve (xapian) (#5680)
- Full commit hash
3e8bb06a3776b778ddff8709fe4ec9f2d14451fb- Author
- Niklas Meyer <[email protected]>
- Date
- over 1 year ago
- Selected line
- 344
# Too many indexing processes can use a lot of CPU and Disk I/O.
# Too many indexing processes can use a lot of CPU and Disk I/O.
Jonas
10 months ago
871c422
Fix typos in config (#6792)
- Full commit hash
871c422ec1cc1afaaba73b40eac5061623fd83fb- Author
- Jonas <[email protected]>
- Date
- 10 months ago
- Selected line
- 345
# Please visit: https://doc.dovecot.org/configuration_manual/service_configuration/#indexer-worker for more information
# Please visit: https://doc.dovecot.org/configuration_manual/service_configuration/#indexer-worker for more information
DerLinkman
over 1 year ago
31e001e
flatcurve: change default amount of processes to 1
- Full commit hash
31e001ebee861c227cf24df9a14ca00871426816- Author
- DerLinkman <[email protected]>
- Date
- over 1 year ago
- Selected line
- 346
FTS_PROCS=1
FTS_PROCS=1
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 347
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 348
# Allow admins to log into SOGo as email user (without any password)
# Allow admins to log into SOGo as email user (without any password)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 349
ALLOW_ADMIN_EMAIL_LOGIN=n
ALLOW_ADMIN_EMAIL_LOGIN=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 350
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 351
# Enable watchdog (watchdog-mailcow) to restart unhealthy containers
# Enable watchdog (watchdog-mailcow) to restart unhealthy containers
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 352
USE_WATCHDOG=y
USE_WATCHDOG=y
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 353
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 354
# Send watchdog notifications by mail (sent from watchdog@MAILCOW_HOSTNAME)
# Send watchdog notifications by mail (sent from watchdog@MAILCOW_HOSTNAME)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 355
# CAUTION:
# CAUTION:
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 356
# 1. You should use external recipients
# 1. You should use external recipients
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 357
# 2. Mails are sent unsigned (no DKIM)
# 2. Mails are sent unsigned (no DKIM)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 358
# 3. If you use DMARC, create a separate DMARC policy ("v=DMARC1; p=none;" in _dmarc.MAILCOW_HOSTNAME)
# 3. If you use DMARC, create a separate DMARC policy ("v=DMARC1; p=none;" in _dmarc.MAILCOW_HOSTNAME)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 359
# Multiple rcpts allowed, NO quotation marks, NO spaces
# Multiple rcpts allowed, NO quotation marks, NO spaces
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 360
#[email protected],[email protected],[email protected]
#[email protected],[email protected],[email protected]
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 361
#WATCHDOG_NOTIFY_EMAIL=
#WATCHDOG_NOTIFY_EMAIL=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 362
Felix Kleinekathöfer
over 3 years ago
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 363
# Send notifications to a webhook URL that receives a POST request with the content type "application/json".
# Send notifications to a webhook URL that receives a POST request with the content type "application/json".
same change
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 364
# You can use this to send notifications to services like Discord, Slack and others.
# You can use this to send notifications to services like Discord, Slack and others.
same change
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 365
#WATCHDOG_NOTIFY_WEBHOOK=https://discord.com/api/webhooks/XXXXXXXXXXXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#WATCHDOG_NOTIFY_WEBHOOK=https://discord.com/api/webhooks/XXXXXXXXXXXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
same change
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 366
# JSON body included in the webhook POST request. Needs to be in single quotes.
# JSON body included in the webhook POST request. Needs to be in single quotes.
same change
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 367
# Following variables are available: SUBJECT, BODY
# Following variables are available: SUBJECT, BODY
Felix Kleinekathöfer
over 3 years ago
e434779
mailcow should be llow
- Full commit hash
e4347792b87e6537b02e885c223f4e5b95957400- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 368
#WATCHDOG_NOTIFY_WEBHOOK_BODY='{"username": "mailcow Watchdog", "content": "**${SUBJECT}**\n${BODY}"}'
#WATCHDOG_NOTIFY_WEBHOOK_BODY='{"username": "mailcow Watchdog", "content": "**${SUBJECT}**\n${BODY}"}'
Felix Kleinekathöfer
over 3 years ago
38f5e29
Webhook variables in config generation
- Full commit hash
38f5e293b0770db1dcd86564a89357a46fb708d7- Author
- Felix Kleinekathöfer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 369
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 370
# Notify about banned IP (includes whois lookup)
# Notify about banned IP (includes whois lookup)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 371
WATCHDOG_NOTIFY_BAN=n
WATCHDOG_NOTIFY_BAN=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 372
Sebastian Marsching
almost 3 years ago
5425cca
Allow suppressing watchdog start notification.
- Full commit hash
5425cca47eba3a7f5700c52168c472954c612588- Author
- Sebastian Marsching <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 373
# Send a notification when the watchdog is started.
# Send a notification when the watchdog is started.
same change
5425cca
Allow suppressing watchdog start notification.
- Full commit hash
5425cca47eba3a7f5700c52168c472954c612588- Author
- Sebastian Marsching <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 374
WATCHDOG_NOTIFY_START=y
WATCHDOG_NOTIFY_START=y
same change
5425cca
Allow suppressing watchdog start notification.
- Full commit hash
5425cca47eba3a7f5700c52168c472954c612588- Author
- Sebastian Marsching <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 375
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 376
# Subject for watchdog mails. Defaults to "Watchdog ALERT" followed by the error message.
# Subject for watchdog mails. Defaults to "Watchdog ALERT" followed by the error message.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 377
#WATCHDOG_SUBJECT=
#WATCHDOG_SUBJECT=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 378
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 379
# Checks if mailcow is an open relay. Requires a SAL. More checks will follow.
# Checks if mailcow is an open relay. Requires a SAL. More checks will follow.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 380
# https://www.servercow.de/mailcow?lang=en
# https://www.servercow.de/mailcow?lang=en
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 381
# https://www.servercow.de/mailcow?lang=de
# https://www.servercow.de/mailcow?lang=de
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 382
# No data is collected. Opt-in and anonymous.
# No data is collected. Opt-in and anonymous.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 383
# Will only work with unmodified mailcow setups.
# Will only work with unmodified mailcow setups.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 384
WATCHDOG_EXTERNAL_CHECKS=n
WATCHDOG_EXTERNAL_CHECKS=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 385
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 386
# Enable watchdog verbose logging
# Enable watchdog verbose logging
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 387
WATCHDOG_VERBOSE=n
WATCHDOG_VERBOSE=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 388
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 389
# Max log lines per service to keep in Redis logs
# Max log lines per service to keep in Redis logs
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 390
LOG_LINES=9999
LOG_LINES=9999
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 391
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 392
# Internal IPv4 /24 subnet, format n.n.n (expands to n.n.n.0/24)
# Internal IPv4 /24 subnet, format n.n.n (expands to n.n.n.0/24)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 393
# Use private IPv4 addresses only, see https://en.wikipedia.org/wiki/Private_network#Private_IPv4_addresses
# Use private IPv4 addresses only, see https://en.wikipedia.org/wiki/Private_network#Private_IPv4_addresses
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 394
IPV4_NETWORK=172.22.1
IPV4_NETWORK=172.22.1
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 395
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 396
# Internal IPv6 subnet in fc00::/7
# Internal IPv6 subnet in fc00::/7
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 397
# Use private IPv6 addresses only, see https://en.wikipedia.org/wiki/Private_network#Private_IPv6_addresses
# Use private IPv6 addresses only, see https://en.wikipedia.org/wiki/Private_network#Private_IPv6_addresses
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 398
IPV6_NETWORK=fd4d:6169:6c63:6f77::/64
IPV6_NETWORK=fd4d:6169:6c63:6f77::/64
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 399
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 400
# Use this IPv4 for outgoing connections (SNAT)
# Use this IPv4 for outgoing connections (SNAT)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 401
#SNAT_TO_SOURCE=
#SNAT_TO_SOURCE=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 402
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 403
# Use this IPv6 for outgoing connections (SNAT)
# Use this IPv6 for outgoing connections (SNAT)
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 404
#SNAT6_TO_SOURCE=
#SNAT6_TO_SOURCE=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 405
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 406
# Create or override an API key for the web UI
# Create or override an API key for the web UI
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 407
# You _must_ define API_ALLOW_FROM, which is a comma separated list of IPs
# You _must_ define API_ALLOW_FROM, which is a comma separated list of IPs
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 408
# An API key defined as API_KEY has read-write access
# An API key defined as API_KEY has read-write access
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 409
# An API key defined as API_KEY_READ_ONLY has read-only access
# An API key defined as API_KEY_READ_ONLY has read-only access
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 410
# Allowed chars for API_KEY and API_KEY_READ_ONLY: a-z, A-Z, 0-9, -
# Allowed chars for API_KEY and API_KEY_READ_ONLY: a-z, A-Z, 0-9, -
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 411
# You can define API_KEY and/or API_KEY_READ_ONLY
# You can define API_KEY and/or API_KEY_READ_ONLY
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 412
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 413
#API_KEY=
#API_KEY=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 414
#API_KEY_READ_ONLY=
#API_KEY_READ_ONLY=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 415
#API_ALLOW_FROM=172.22.1.1,127.0.0.1
#API_ALLOW_FROM=172.22.1.1,127.0.0.1
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 416
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 417
# mail_home is ~/Maildir
# mail_home is ~/Maildir
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 418
MAILDIR_SUB=Maildir
MAILDIR_SUB=Maildir
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 419
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 420
# SOGo session timeout in minutes
# SOGo session timeout in minutes
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 421
SOGO_EXPIRE_SESSION=480
SOGO_EXPIRE_SESSION=480
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 422
FreddleSpl0it
10 months ago
6106093
[SOGo][Web] Set URL encryption key in mailcow.conf
- Full commit hash
610609378f2138aac35abd23db8063fdc63d7ef1- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 423
# SOGo URL encryption key (exactly 16 characters, limited to A–Z, a–z, 0–9)
# SOGo URL encryption key (exactly 16 characters, limited to A–Z, a–z, 0–9)
same change
6106093
[SOGo][Web] Set URL encryption key in mailcow.conf
- Full commit hash
610609378f2138aac35abd23db8063fdc63d7ef1- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 424
# This key is used to encrypt email addresses within SOGo URLs
# This key is used to encrypt email addresses within SOGo URLs
same change
6106093
[SOGo][Web] Set URL encryption key in mailcow.conf
- Full commit hash
610609378f2138aac35abd23db8063fdc63d7ef1- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 425
SOGO_URL_ENCRYPTION_KEY=$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c 16)
SOGO_URL_ENCRYPTION_KEY=$(LC_ALL=C </dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c 16)
same change
6106093
[SOGo][Web] Set URL encryption key in mailcow.conf
- Full commit hash
610609378f2138aac35abd23db8063fdc63d7ef1- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 426
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 427
# DOVECOT_MASTER_USER and DOVECOT_MASTER_PASS must both be provided. No special chars.
# DOVECOT_MASTER_USER and DOVECOT_MASTER_PASS must both be provided. No special chars.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 428
# Empty by default to auto-generate master user and password on start.
# Empty by default to auto-generate master user and password on start.
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 429
# User expands to [email protected]
# User expands to [email protected]
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 430
# LEAVE EMPTY IF UNSURE
# LEAVE EMPTY IF UNSURE
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 431
DOVECOT_MASTER_USER=
DOVECOT_MASTER_USER=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 432
# LEAVE EMPTY IF UNSURE
# LEAVE EMPTY IF UNSURE
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 433
DOVECOT_MASTER_PASS=
DOVECOT_MASTER_PASS=
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 434
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 435
# WebAuthn device manufacturer verification
# WebAuthn device manufacturer verification
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 436
# After setting WEBAUTHN_ONLY_TRUSTED_VENDORS=y only devices from trusted manufacturers are allowed
# After setting WEBAUTHN_ONLY_TRUSTED_VENDORS=y only devices from trusted manufacturers are allowed
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 437
# root certificates can be placed for validation under mailcow-dockerized/data/web/inc/lib/WebAuthn/rootCertificates
# root certificates can be placed for validation under mailcow-dockerized/data/web/inc/lib/WebAuthn/rootCertificates
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 438
WEBAUTHN_ONLY_TRUSTED_VENDORS=n
WEBAUTHN_ONLY_TRUSTED_VENDORS=n
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 439
DerLinkman
about 3 years ago
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 440
# Spamhaus Data Query Service Key
# Spamhaus Data Query Service Key
DerLinkman
about 3 years ago
bf6a61f
Small corrections to update/generate.sh
- Full commit hash
bf6a61fa2d05fa2229a8ff5856d55c4c5a025b9c- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 441
# Optional: Leave empty for none
# Optional: Leave empty for none
FreddleSpl0it
over 1 year ago
89fb132
Enable password protection for Redis
- Full commit hash
89fb1322c6f486a9883e6435a73537b13fbf3582- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 442
# Enter your key here if you are using a blocked ASN (OVH, AWS, Cloudflare e.g) for the unregistered Spamhaus Blocklist.
# Enter your key here if you are using a blocked ASN (OVH, AWS, Cloudflare e.g) for the unregistered Spamhaus Blocklist.
DerLinkman
about 3 years ago
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 443
# If empty, it will completely disable Spamhaus blocklists if it detects that you are running on a server using a blocked AS.
# If empty, it will completely disable Spamhaus blocklists if it detects that you are running on a server using a blocked AS.
same change
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 444
# Otherwise it will work normally.
# Otherwise it will work normally.
same change
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 445
SPAMHAUS_DQS_KEY=
SPAMHAUS_DQS_KEY=
same change
1de4707
Added DQS Values to update.sh/generate + check of variable
- Full commit hash
1de47072f8c4885eaa0d9f72e833fd7299cd4da8- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 446
DerLinkman
12 months ago
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 447
# IPv6 Controller Section
# IPv6 Controller Section
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 448
# This variable controls the usage of IPv6 within mailcow.
# This variable controls the usage of IPv6 within mailcow.
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 449
# Can either be true or false | Defaults to true
# Can either be true or false | Defaults to true
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 450
# WARNING: MAKE SURE TO PROPERLY CONFIGURE IPv6 ON YOUR HOST FIRST BEFORE ENABLING THIS AS FAULTY CONFIGURATIONS CAN LEAD TO OPEN RELAYS!
# WARNING: MAKE SURE TO PROPERLY CONFIGURE IPv6 ON YOUR HOST FIRST BEFORE ENABLING THIS AS FAULTY CONFIGURATIONS CAN LEAD TO OPEN RELAYS!
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 451
# A COMPLETE DOCKER STACK REBUILD (compose down && compose up -d) IS NEEDED TO APPLY THIS.
# A COMPLETE DOCKER STACK REBUILD (compose down && compose up -d) IS NEEDED TO APPLY THIS.
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 452
ENABLE_IPV6=${IPV6_BOOL}
ENABLE_IPV6=${IPV6_BOOL}
same change
88bf9b0
core: modules splitting + ipv6 nat rewrite (#6634)
- Full commit hash
88bf9b02e112bced1d37c69a885d8dbad4cd657a- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 453
FreddleSpl0it
over 2 years ago
b236fd3
[Netfilter] add mailcow isolation rule to MAILCOW chain
- Full commit hash
b236fd3ac683ea1434521807c5d118040b54882c- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 454
# Prevent netfilter from setting an iptables/nftables rule to isolate the mailcow docker network - y/n
# Prevent netfilter from setting an iptables/nftables rule to isolate the mailcow docker network - y/n
same change
b236fd3
[Netfilter] add mailcow isolation rule to MAILCOW chain
- Full commit hash
b236fd3ac683ea1434521807c5d118040b54882c- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 455
# CAUTION: Disabling this may expose container ports to other neighbors on the same subnet, even if the ports are bound to localhost
# CAUTION: Disabling this may expose container ports to other neighbors on the same subnet, even if the ports are bound to localhost
same change
b236fd3
[Netfilter] add mailcow isolation rule to MAILCOW chain
- Full commit hash
b236fd3ac683ea1434521807c5d118040b54882c- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 456
DISABLE_NETFILTER_ISOLATION_RULE=n
DISABLE_NETFILTER_ISOLATION_RULE=n
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 457
EOF
EOF
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 458
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 459
mkdir -p data/assets/ssl
mkdir -p data/assets/ssl
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 460
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 461
chmod 600 mailcow.conf
chmod 600 mailcow.conf
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 462
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 463
# copy but don't overwrite existing certificate
# copy but don't overwrite existing certificate
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 464
echo "Generating snake-oil certificate..."
echo "Generating snake-oil certificate..."
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 465
# Making Willich more popular
# Making Willich more popular
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 466
openssl req -x509 -newkey rsa:4096 -keyout data/assets/ssl-example/key.pem -out data/assets/ssl-example/cert.pem -days 365 -subj "/C=DE/ST=NRW/L=Willich/O=mailcow/OU=mailcow/CN=${MAILCOW_HOSTNAME}" -sha256 -nodes
openssl req -x509 -newkey rsa:4096 -keyout data/assets/ssl-example/key.pem -out data/assets/ssl-example/cert.pem -days 365 -subj "/C=DE/ST=NRW/L=Willich/O=mailcow/OU=mailcow/CN=${MAILCOW_HOSTNAME}" -sha256 -nodes
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 467
echo "Copying snake-oil certificate..."
echo "Copying snake-oil certificate..."
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 468
cp -n -d data/assets/ssl-example/*.pem data/assets/ssl/
cp -n -d data/assets/ssl-example/*.pem data/assets/ssl/
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 469
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 470
# Set app_info.inc.php
# Set app_info.inc.php
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 471
case ${git_branch} in
case ${git_branch} in
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 472
master)
master)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 473
mailcow_git_version=$(git describe --tags `git rev-list --tags --max-count=1`)
mailcow_git_version=$(git describe --tags `git rev-list --tags --max-count=1`)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 474
;;
;;
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 475
nightly)
nightly)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 476
mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 477
mailcow_last_git_version=""
mailcow_last_git_version=""
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 478
;;
;;
FreddleSpl0it
over 1 year ago
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 479
legacy)
legacy)
same change
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 480
mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
same change
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 481
mailcow_last_git_version=""
mailcow_last_git_version=""
same change
b77ff2f
Add switch to legacy version
- Full commit hash
b77ff2f51ce3491beb5aee30434619ddc79aba73- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 482
;;
;;
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 483
*)
*)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 484
mailcow_git_version=$(git rev-parse --short HEAD)
mailcow_git_version=$(git rev-parse --short HEAD)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 485
mailcow_last_git_version=""
mailcow_last_git_version=""
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 486
;;
;;
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 487
esac
esac
FreddleSpl0it
over 3 years ago
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 488
# if [ ${git_branch} == "master" ]; then
# if [ ${git_branch} == "master" ]; then
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 489
# mailcow_git_version=$(git describe --tags `git rev-list --tags --max-count=1`)
# mailcow_git_version=$(git describe --tags `git rev-list --tags --max-count=1`)
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 490
# elif [ ${git_branch} == "nightly" ]; then
# elif [ ${git_branch} == "nightly" ]; then
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 491
# mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
# mailcow_git_version=$(git rev-parse --short $(git rev-parse @{upstream}))
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 492
# mailcow_last_git_version=""
# mailcow_last_git_version=""
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 493
# else
# else
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 494
# mailcow_git_version=$(git rev-parse --short HEAD)
# mailcow_git_version=$(git rev-parse --short HEAD)
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 495
# mailcow_last_git_version=""
# mailcow_last_git_version=""
same change
2ebd834
Revert "[Generate] Refactor compose version detection using regex"
- Full commit hash
2ebd8345dfe4fe6ebb246be6de06f2f5fb0e4f8b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 496
# fi
# fi
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 497
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 498
if [[ $SKIP_BRANCH != "y" ]]; then
if [[ $SKIP_BRANCH != "y" ]]; then
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 499
mailcow_git_commit=$(git rev-parse origin/${git_branch})
mailcow_git_commit=$(git rev-parse origin/${git_branch})
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 500
mailcow_git_commit_date=$(git log -1 --format=%ci @{upstream} )
mailcow_git_commit_date=$(git log -1 --format=%ci @{upstream} )
DerLinkman
over 3 years ago
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 501
else
else
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 502
mailcow_git_commit=$(git rev-parse ${git_branch})
mailcow_git_commit=$(git rev-parse ${git_branch})
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 503
mailcow_git_commit_date=$(git log -1 --format=%ci @{upstream} )
mailcow_git_commit_date=$(git log -1 --format=%ci @{upstream} )
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 504
git_branch=$(git rev-parse --abbrev-ref HEAD)
git_branch=$(git rev-parse --abbrev-ref HEAD)
same change
b6799d9
Feature: Add developer mode option to generate_config.sh
- Full commit hash
b6799d9fcb2d1719cdf43a4938a2e1ad91871296- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 505
fi
fi
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 506
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 507
if [ $? -eq 0 ]; then
if [ $? -eq 0 ]; then
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 508
echo '<?php' > data/web/inc/app_info.inc.php
echo '<?php' > data/web/inc/app_info.inc.php
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 509
echo ' $MAILCOW_GIT_VERSION="'$mailcow_git_version'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_VERSION="'$mailcow_git_version'";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 510
echo ' $MAILCOW_LAST_GIT_VERSION="";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_LAST_GIT_VERSION="";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 511
echo ' $MAILCOW_GIT_OWNER="mailcow";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_OWNER="mailcow";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 512
echo ' $MAILCOW_GIT_REPO="mailcow-dockerized";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_REPO="mailcow-dockerized";' >> data/web/inc/app_info.inc.php
FreddleSpl0it
over 4 years ago
bdd8b4a
[Web] Footer fix (#4500)
- Full commit hash
bdd8b4a5abe4f142c0e2a6a3ba12e19730538884- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 513
echo ' $MAILCOW_GIT_URL="https://github.com/mailcow/mailcow-dockerized";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_URL="https://github.com/mailcow/mailcow-dockerized";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 514
echo ' $MAILCOW_GIT_COMMIT="'$mailcow_git_commit'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_COMMIT="'$mailcow_git_commit'";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 515
echo ' $MAILCOW_GIT_COMMIT_DATE="'$mailcow_git_commit_date'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_COMMIT_DATE="'$mailcow_git_commit_date'";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
3633766
Fixed missing branch variable in app info.php (gen-config)
- Full commit hash
3633766544d37ee74a96fc34d763885be5504f2e- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 516
echo ' $MAILCOW_BRANCH="'$git_branch'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_BRANCH="'$git_branch'";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 517
echo ' $MAILCOW_UPDATEDAT='$(date +%s)';' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_UPDATEDAT='$(date +%s)';' >> data/web/inc/app_info.inc.php
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 518
echo '?>' >> data/web/inc/app_info.inc.php
echo '?>' >> data/web/inc/app_info.inc.php
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 519
else
else
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 520
echo '<?php' > data/web/inc/app_info.inc.php
echo '<?php' > data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 521
echo ' $MAILCOW_GIT_VERSION="'$mailcow_git_version'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_VERSION="'$mailcow_git_version'";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 522
echo ' $MAILCOW_LAST_GIT_VERSION="";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_LAST_GIT_VERSION="";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 523
echo ' $MAILCOW_GIT_OWNER="mailcow";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_OWNER="mailcow";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 524
echo ' $MAILCOW_GIT_REPO="mailcow-dockerized";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_REPO="mailcow-dockerized";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 525
echo ' $MAILCOW_GIT_URL="https://github.com/mailcow/mailcow-dockerized";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_URL="https://github.com/mailcow/mailcow-dockerized";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 526
echo ' $MAILCOW_GIT_COMMIT="";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_COMMIT="";' >> data/web/inc/app_info.inc.php
same change
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 527
echo ' $MAILCOW_GIT_COMMIT_DATE="";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_GIT_COMMIT_DATE="";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
3633766
Fixed missing branch variable in app info.php (gen-config)
- Full commit hash
3633766544d37ee74a96fc34d763885be5504f2e- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 528
echo ' $MAILCOW_BRANCH="'$git_branch'";' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_BRANCH="'$git_branch'";' >> data/web/inc/app_info.inc.php
DerLinkman
almost 4 years ago
e98a984
Implemented correct app_info.php set in generate_config
- Full commit hash
e98a9844179e0808106d5a7f28c1eca800f2bf40- Author
- DerLinkman <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 529
echo ' $MAILCOW_UPDATEDAT='$(date +%s)';' >> data/web/inc/app_info.inc.php
echo ' $MAILCOW_UPDATEDAT='$(date +%s)';' >> data/web/inc/app_info.inc.php
FreddleSpl0it
over 4 years ago
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 530
echo '?>' >> data/web/inc/app_info.inc.php
echo '?>' >> data/web/inc/app_info.inc.php
same change
f3f6fb8
[Web] add github version tag error handling
- Full commit hash
f3f6fb890857f49a25dc675a9d327e33e8183b21- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 531
echo -e "\e[33mCannot determine current git repository version...\e[0m"
echo -e "\e[33mCannot determine current git repository version...\e[0m"
Patrik Kernstock
10 months ago
5f4a4fd
Removed new lines for consistency
- Full commit hash
5f4a4fd759b0ad3671e59b092cb2a2f571c4cb53- Author
- Patrik Kernstock <[email protected]>
- Date
- 10 months ago
- Selected line
- 532
fi
fi