HEX
Server: Apache
System: Linux hn220.greenhost.nl 6.12.58 #3 SMP Wed Nov 19 09:04:59 UTC 2025 x86_64
User: webmaster (87278)
PHP: 8.4.5
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Upload Files
File: //.vs/var/lib/dpkg/info/msmtp.config
#!/bin/sh

set -e


if [ -e /usr/share/debconf/confmodule ] ; then
    . /usr/share/debconf/confmodule
fi

config_to_debconf () {
    if [ -f /etc/msmtprc ]; then
        var=$(grep ^$1 /etc/msmtprc | awk '{ print $2 }')
        if [ "$var" = "on" ]; then
            db_set msmtp/$1 true
        elif [ "$var" != "" ]; then
            db_set msmtp/$1 $var
        fi
    fi
    db_input $2 msmtp/$1 || true
    db_go
}

if [ -f /etc/msmtprc ]; then
    db_set msmtp/sysconfig true
else
    db_input medium msmtp/sysconfig || true
    db_go
fi

db_get msmtp/sysconfig
if [ "$RET" = "false" ]; then
    exit 0
else

    config_to_debconf host high

    config_to_debconf port low

    config_to_debconf auto_from medium

    db_get msmtp/auto_from
    if [ "$RET" = "true" ] ; then
        config_to_debconf maildomain medium
    fi

    config_to_debconf tls low
fi

db_stop