diff --git a/ct/headers/mailpit b/ct/headers/mailpit new file mode 100644 index 000000000..e09e2442c --- /dev/null +++ b/ct/headers/mailpit @@ -0,0 +1,6 @@ + __ ___ _ __ _ __ + / |/ /___ _(_) /___ (_) /_ + / /|_/ / __ `/ / / __ \/ / __/ + / / / / /_/ / / / /_/ / / /_ +/_/ /_/\__,_/_/_/ .___/_/\__/ + /_/ diff --git a/ct/mailpit.sh b/ct/mailpit.sh new file mode 100644 index 000000000..54027878e --- /dev/null +++ b/ct/mailpit.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash +_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main" +_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func" +source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func") +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://mailpit.axllent.org/ + +APP="Mailpit" +var_tags="${var_tags:-smtp;email;testing;development}" +var_cpu="${var_cpu:-1}" +var_ram="${var_ram:-512}" +var_disk="${var_disk:-2}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +var_arm64="${var_arm64:-yes}" +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -f /opt/mailpit/mailpit ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "mailpit" "axllent/mailpit"; then + msg_info "Stopping Service" + systemctl stop mailpit + msg_ok "Stopped Service" + + create_backup /opt/mailpit/.env \ + /opt/mailpit/data + + fetch_and_deploy_gh_release "mailpit" "axllent/mailpit" "prebuild" "latest" "/opt/mailpit" "mailpit-linux-$(arch_resolve).tar.gz" + + restore_backup + + msg_info "Starting Service" + systemctl start mailpit + msg_ok "Started Service" + msg_ok "Updated successfully!" + fi + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW}Access it using the following URL:${CL}" +echo -e "${GATEWAY}${BGN}http://${IP}:8025${CL}" diff --git a/install/mailpit-install.sh b/install/mailpit-install.sh new file mode 100644 index 000000000..e4a95e2e5 --- /dev/null +++ b/install/mailpit-install.sh @@ -0,0 +1,51 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://mailpit.axllent.org/ + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +fetch_and_deploy_gh_release "mailpit" "axllent/mailpit" "prebuild" "latest" "/opt/mailpit" "mailpit-linux-$(arch_resolve).tar.gz" + +msg_info "Configuring Mailpit" +mkdir -p /opt/mailpit/data +cat </opt/mailpit/.env +MP_DATABASE=/opt/mailpit/data/mailpit.db +MP_UI_BIND_ADDR=0.0.0.0:8025 +MP_SMTP_BIND_ADDR=0.0.0.0:1025 +MP_DISABLE_VERSION_CHECK=true +EOF +msg_ok "Configured Mailpit" + +msg_info "Creating Service" +cat </etc/systemd/system/mailpit.service +[Unit] +Description=Mailpit Email Testing Server +After=network.target + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/mailpit +EnvironmentFile=/opt/mailpit/.env +ExecStart=/opt/mailpit/mailpit +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now mailpit +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc