NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
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
Open commit View diff
1 #!/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
Open commit View diff
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
Open commit View diff
3 # 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
Open commit View diff
4 # 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)"
Open commit View diff
5 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
Open commit View diff
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
Open commit View diff
7 # 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
Open commit View diff
8 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"
Open commit View diff
9 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"
Open commit View diff
10 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
Open commit View diff
11 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
Open commit View diff
12 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
Open commit View diff
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
Open commit View diff
14 # 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)"
Open commit View diff
15 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
Open commit View diff
16 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"
Open commit View diff
17 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"
Open commit View diff
18 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"
Open commit View diff
19 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"
Open commit View diff
20 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
Open commit View diff
21 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
Open commit View diff
22 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
Open commit View diff
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
Open commit View diff
24 # 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
Open commit View diff
25 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
Open commit View diff
26 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
Open commit View diff
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
Open commit View diff
28 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
Open commit View diff
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
Open commit View diff
30 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
Open commit View diff
31 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
Open commit View diff
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
Open commit View diff
33 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"
Open commit View diff
34 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"
Open commit View diff
35 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"
Open commit View diff
36 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
Open commit View diff
37 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
Open commit View diff
38 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
Open commit View diff
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
Open commit View diff
40 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
Open commit View diff
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
Open commit View diff
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
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
Open commit View diff
43 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
Open commit View diff
44 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
Open commit View diff
45 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
Open commit View diff
46 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
Open commit View diff
47 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
Open commit View diff
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
Open commit View diff
49 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
Open commit View diff
50 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
Open commit View diff
51 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])
Open commit View diff
52 [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
Open commit View diff
53 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
Open commit View diff
54 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
      ;;
Open commit View diff
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
    *)
Open commit View diff
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
Open commit View diff
57 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
    ;;
Open commit View diff
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
Open commit View diff
59 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
Open commit View diff
60 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
Open commit View diff
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."
Open commit View diff
62 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
Open commit View diff
63 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
Open commit View diff
64 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//[^.]};
Open commit View diff
65 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
Open commit View diff
66 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"
Open commit View diff
67 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
Open commit View diff
68 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"
Open commit View diff
69 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
Open commit View diff
70 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
Open commit View diff
71 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!"
Open commit View diff
72 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
Open commit View diff
73 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
Open commit View diff
74 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"
Open commit View diff
75 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"
Open commit View diff
76 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
Open commit View diff
77 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
Open commit View diff
78 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."
Open commit View diff
79 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
Open commit View diff
80 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."
Open commit View diff
81 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
Open commit View diff
82 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
Open commit View diff
83 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
Open commit View diff
84 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
Open commit View diff
85 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
Open commit View diff
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
Open commit View diff
87 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)
Open commit View diff
88 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
Open commit View diff
89 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')
Open commit View diff
90 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
Open commit View diff
91 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
Open commit View diff
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
Open commit View diff
93 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
Open commit View diff
94 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
Open commit View diff
95 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
Open commit View diff
96 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
Open commit View diff
97 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}
Open commit View diff
98 [ -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
Open commit View diff
99 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
Open commit View diff
100 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
Open commit View diff
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)
Open commit View diff
102 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
Open commit View diff
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
Open commit View diff
104 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
Open commit View diff
105 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."
Open commit View diff
106 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."
Open commit View diff
107 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
Open commit View diff
108 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
Open commit View diff
109 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])
Open commit View diff
110 [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
Open commit View diff
111 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
        ;;
Open commit View diff
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
      *)
Open commit View diff
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
Open commit View diff
114 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
      ;;
Open commit View diff
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
Open commit View diff
116 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
Open commit View diff
117 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
Open commit View diff
118 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
Open commit View diff
119 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
Open commit View diff
120 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
Open commit View diff
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
Open commit View diff
122 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?"
Open commit View diff
123 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 ""
Open commit View diff
124 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:"
Open commit View diff
125 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]"
Open commit View diff
126 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]"
Open commit View diff
127 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]"
Open commit View diff
128 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
Open commit View diff
129 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
Open commit View diff
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
Open commit View diff
131 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
Open commit View diff
132 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
Open commit View diff
133 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])
Open commit View diff
134 [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"
Open commit View diff
135 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
        ;;
Open commit View diff
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])
Open commit View diff
137 [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"
Open commit View diff
138 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
        ;;
Open commit View diff
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
      *)
Open commit View diff
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"
Open commit View diff
141 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
      ;;
Open commit View diff
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
Open commit View diff
143 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
Open commit View diff
144 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
Open commit View diff
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
Open commit View diff
146 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"
Open commit View diff
147 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
Open commit View diff
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
Open commit View diff
149 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"
Open commit View diff
150 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"
Open commit View diff
151 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}))
Open commit View diff
152 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
Open commit View diff
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
Open commit View diff
154 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..."
Open commit View diff
155 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."
Open commit View diff
156 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
Open commit View diff
157 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
Open commit View diff
158 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
Open commit View diff
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
Open commit View diff
160 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}
Open commit View diff
161 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
Open commit View diff
162 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
Open commit View diff
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
Open commit View diff
164 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
Open commit View diff
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
Open commit View diff
166 [ ! -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
Open commit View diff
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
Open commit View diff
168 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
# ------------------------------
Open commit View diff
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
Open commit View diff
170 # 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
# ------------------------------
Open commit View diff
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.
Open commit View diff
172 # 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"
Open commit View diff
173 # 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"
Open commit View diff
174 # 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}
Open commit View diff
175 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
Open commit View diff
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
Open commit View diff
177 # 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,
Open commit View diff
178 # 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/
Open commit View diff
179 # 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
Open commit View diff
180 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
Open commit View diff
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
# ------------------------------
Open commit View diff
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
Open commit View diff
183 # 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
# ------------------------------
Open commit View diff
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
Open commit View diff
185 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
Open commit View diff
186 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
Open commit View diff
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)
Open commit View diff
188 # 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)}
Open commit View diff
189 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)}
Open commit View diff
190 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
Open commit View diff
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
# ------------------------------
Open commit View diff
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
Open commit View diff
193 # 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
# ------------------------------
Open commit View diff
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)}
Open commit View diff
195 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
Open commit View diff
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
# ------------------------------
Open commit View diff
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
Open commit View diff
198 # 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
# ------------------------------
Open commit View diff
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
Open commit View diff
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:
Open commit View diff
201 # 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.
Open commit View diff
202 # 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.
Open commit View diff
203 # 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
Open commit View diff
204 # 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!
Open commit View diff
205 # 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
Open commit View diff
206 # 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=
Open commit View diff
207 # 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/
Open commit View diff
208 # 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
Open commit View diff
209 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=
Open commit View diff
210 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
Open commit View diff
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
Open commit View diff
212 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=
Open commit View diff
213 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
Open commit View diff
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
Open commit View diff
215 # 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
Open commit View diff
216 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
Open commit View diff
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
# ------------------------------
Open commit View diff
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
Open commit View diff
219 # 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
# ------------------------------
Open commit View diff
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
Open commit View diff
221 # 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.
Open commit View diff
222 # 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
Open commit View diff
223 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
Open commit View diff
224 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
Open commit View diff
225 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
Open commit View diff
226 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
Open commit View diff
227 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
Open commit View diff
228 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
Open commit View diff
229 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
Open commit View diff
230 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
Open commit View diff
231 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
Open commit View diff
232 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
Open commit View diff
233 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
Open commit View diff
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
Open commit View diff
235 # 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
Open commit View diff
236 # 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'
Open commit View diff
237 # 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}
Open commit View diff
238 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
Open commit View diff
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
Open commit View diff
240 # 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
Open commit View diff
241 # 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
Open commit View diff
242 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
Open commit View diff
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
Open commit View diff
244 # 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
Open commit View diff
245 # 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.
Open commit View diff
246 # 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.
Open commit View diff
247 # 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.
Open commit View diff
248 # 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}
Open commit View diff
249 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
Open commit View diff
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.
Open commit View diff
251 # 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"
Open commit View diff
252 # 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.
Open commit View diff
253 # 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.
Open commit View diff
254 # 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
Open commit View diff
255 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
Open commit View diff
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
Open commit View diff
257 # 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
Open commit View diff
258 # 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)
Open commit View diff
259 # 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
Open commit View diff
260 # 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
Open commit View diff
261 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
Open commit View diff
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
Open commit View diff
263 # 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
#
Open commit View diff
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.
Open commit View diff
265 # 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:
Open commit View diff
266 # 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.*
Open commit View diff
267 #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"
Open commit View diff
268 # 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.
Open commit View diff
269 # 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
#
Open commit View diff
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...
Open commit View diff
271 # 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
Open commit View diff
272 #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:
Open commit View diff
273 # ...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
Open commit View diff
274 #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=
Open commit View diff
275 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
Open commit View diff
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.
Open commit View diff
277 # 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.
Open commit View diff
278 # 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
Open commit View diff
279 # 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
Open commit View diff
280 # 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.
Open commit View diff
281 # 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
Open commit View diff
282 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
Open commit View diff
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
Open commit View diff
284 # 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
#
Open commit View diff
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
Open commit View diff
286 # 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.
Open commit View diff
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.
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.
Open commit View diff
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.
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.
Open commit View diff
289 # 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
Open commit View diff
290 # 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=
Open commit View diff
291 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
Open commit View diff
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
Open commit View diff
293 # 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
Open commit View diff
294 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
Open commit View diff
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
Open commit View diff
296 # 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
Open commit View diff
297 # 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
Open commit View diff
298 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
Open commit View diff
299 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]
Open commit View diff
300 [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.
Open commit View diff
301 # 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.
Open commit View diff
302 # 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:
Open commit View diff
303 # 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
Open commit View diff
304 #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
Open commit View diff
305 #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
Open commit View diff
306 #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
Open commit View diff
307 #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"
Open commit View diff
308 #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"
Open commit View diff
309 #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
Open commit View diff
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
Open commit View diff
311 # 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
Open commit View diff
312 # 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
Open commit View diff
313 # 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
Open commit View diff
314 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
Open commit View diff
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
Open commit View diff
316 # 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
Open commit View diff
317 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
Open commit View diff
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
Open commit View diff
319 # 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
Open commit View diff
320 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
Open commit View diff
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
Open commit View diff
322 # 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
Open commit View diff
323 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
Open commit View diff
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
Open commit View diff
325 # 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}
Open commit View diff
326 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
Open commit View diff
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
Open commit View diff
328 # 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
Open commit View diff
329 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
Open commit View diff
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
Open commit View diff
331 # 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
Open commit View diff
332 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
Open commit View diff
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.
Open commit View diff
334 # 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.
Open commit View diff
335 # 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
Open commit View diff
336 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
Open commit View diff
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.
Open commit View diff
338 # 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.
Open commit View diff
339 # 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!
Open commit View diff
340 # 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
Open commit View diff
341 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
Open commit View diff
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.
Open commit View diff
343 # 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.
Open commit View diff
344 # 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
Open commit View diff
345 # 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
Open commit View diff
346 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
Open commit View diff
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)
Open commit View diff
348 # 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
Open commit View diff
349 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
Open commit View diff
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
Open commit View diff
351 # 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
Open commit View diff
352 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
Open commit View diff
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)
Open commit View diff
354 # 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:
Open commit View diff
355 # 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
Open commit View diff
356 # 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)
Open commit View diff
357 # 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)
Open commit View diff
358 # 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
Open commit View diff
359 # 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]
Open commit View diff
360 #[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=
Open commit View diff
361 #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
Open commit View diff
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".
Open commit View diff
363 # 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.
Open commit View diff
364 # 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
Open commit View diff
365 #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.
Open commit View diff
366 # 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
Open commit View diff
367 # 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}"}'
Open commit View diff
368 #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
Open commit View diff
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)
Open commit View diff
370 # 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
Open commit View diff
371 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
Open commit View diff
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.
Open commit View diff
373 # 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
Open commit View diff
374 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
Open commit View diff
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.
Open commit View diff
376 # 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=
Open commit View diff
377 #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
Open commit View diff
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.
Open commit View diff
379 # 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
Open commit View diff
380 # 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
Open commit View diff
381 # 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.
Open commit View diff
382 # 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.
Open commit View diff
383 # 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
Open commit View diff
384 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
Open commit View diff
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
Open commit View diff
386 # 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
Open commit View diff
387 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
Open commit View diff
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
Open commit View diff
389 # 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
Open commit View diff
390 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
Open commit View diff
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)
Open commit View diff
392 # 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
Open commit View diff
393 # 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
Open commit View diff
394 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
Open commit View diff
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
Open commit View diff
396 # 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
Open commit View diff
397 # 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
Open commit View diff
398 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
Open commit View diff
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)
Open commit View diff
400 # 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=
Open commit View diff
401 #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
Open commit View diff
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)
Open commit View diff
403 # 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=
Open commit View diff
404 #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
Open commit View diff
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
Open commit View diff
406 # 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
Open commit View diff
407 # 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
Open commit View diff
408 # 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
Open commit View diff
409 # 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, -
Open commit View diff
410 # 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
Open commit View diff
411 # 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
Open commit View diff
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=
Open commit View diff
413 #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=
Open commit View diff
414 #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
Open commit View diff
415 #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
Open commit View diff
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
Open commit View diff
417 # 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
Open commit View diff
418 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
Open commit View diff
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
Open commit View diff
420 # 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
Open commit View diff
421 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
Open commit View diff
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)
Open commit View diff
423 # 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
Open commit View diff
424 # 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)
Open commit View diff
425 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
Open commit View diff
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.
Open commit View diff
427 # 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.
Open commit View diff
428 # 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]
Open commit View diff
429 # 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
Open commit View diff
430 # 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=
Open commit View diff
431 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
Open commit View diff
432 # 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=
Open commit View diff
433 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
Open commit View diff
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
Open commit View diff
435 # 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
Open commit View diff
436 # 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
Open commit View diff
437 # 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
Open commit View diff
438 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
Open commit View diff
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
Open commit View diff
440 # 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
Open commit View diff
441 # 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.
Open commit View diff
442 # 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.
Open commit View diff
443 # 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.
Open commit View diff
444 # 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=
Open commit View diff
445 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
Open commit View diff
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
Open commit View diff
447 # 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.
Open commit View diff
448 # 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
Open commit View diff
449 # 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!
Open commit View diff
450 # 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.
Open commit View diff
451 # 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}
Open commit View diff
452 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
Open commit View diff
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
Open commit View diff
454 # 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
Open commit View diff
455 # 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
Open commit View diff
456 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
Open commit View diff
457 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
Open commit View diff
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
Open commit View diff
459 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
Open commit View diff
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
Open commit View diff
461 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
Open commit View diff
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
Open commit View diff
463 # 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..."
Open commit View diff
464 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
Open commit View diff
465 # 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
Open commit View diff
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
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..."
Open commit View diff
467 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/
Open commit View diff
468 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
Open commit View diff
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
Open commit View diff
470 # 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
Open commit View diff
471 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)
Open commit View diff
472 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`)
Open commit View diff
473 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
    ;;
Open commit View diff
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)
Open commit View diff
475 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}))
Open commit View diff
476 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=""
Open commit View diff
477 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
    ;;
Open commit View diff
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)
Open commit View diff
479 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}))
Open commit View diff
480 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=""
Open commit View diff
481 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
    ;;
Open commit View diff
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
  *)
Open commit View diff
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)
Open commit View diff
484 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=""
Open commit View diff
485 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
    ;;
Open commit View diff
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
Open commit View diff
487 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
Open commit View diff
488 # 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`)
Open commit View diff
489 # 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
Open commit View diff
490 # 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}))
Open commit View diff
491 # 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=""
Open commit View diff
492 # 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
Open commit View diff
493 # 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)
Open commit View diff
494 # 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=""
Open commit View diff
495 # 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
Open commit View diff
496 # 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
Open commit View diff
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
Open commit View diff
498 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})
Open commit View diff
499 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} )
Open commit View diff
500 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
Open commit View diff
501 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})
Open commit View diff
502 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} )
Open commit View diff
503 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)
Open commit View diff
504 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
Open commit View diff
505 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
Open commit View diff
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
Open commit View diff
507 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
Open commit View diff
508 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
Open commit View diff
509 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
Open commit View diff
510 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
Open commit View diff
511 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
Open commit View diff
512 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
Open commit View diff
513 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
Open commit View diff
514 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
Open commit View diff
515 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
Open commit View diff
516 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
Open commit View diff
517 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
Open commit View diff
518 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
Open commit View diff
519 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
Open commit View diff
520 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
Open commit View diff
521 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
Open commit View diff
522 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
Open commit View diff
523 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
Open commit View diff
524 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
Open commit View diff
525 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
Open commit View diff
526 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
Open commit View diff
527 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
Open commit View diff
528 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
Open commit View diff
529 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
Open commit View diff
530 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"
Open commit View diff
531 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
Open commit View diff
532 fi