????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.61 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,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, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info_silent/ |
Upload File : |
#!/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 [ "x$var" = "xon" ]; then
db_set msmtp/$1 true
elif [ "x$var" != "x" ]; 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