Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
dovecot /
Delete
Unzip
Name
Size
Permission
Date
Action
conf.d
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
protocols.d
[ DIR ]
drwxrwxrwx
2020-08-24 23:54
stopwords
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
dovecot-dict-auth.conf.ext
1.47
KB
-rw-r--r--
2016-12-03 18:13
dovecot-dict-sql.conf.ext
852
B
-rw-r--r--
2016-12-03 18:13
dovecot-openssl.cnf
542
B
-rw-r--r--
2021-01-05 13:19
dovecot-sql.conf.ext
5.48
KB
-rw-r--r--
2016-12-03 18:13
dovecot.conf
4.3
KB
-rw-r--r--
2021-01-05 13:17
mkcert.sh
875
B
-rwxr-xr-x
2021-01-05 13:19
Save
Rename
#!/bin/sh # Generates a self-signed certificate. # Edit dovecot-openssl.cnf before running this. umask 077 OPENSSL=${OPENSSL-openssl} SSLDIR=${SSLDIR-/etc/ssl} OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf} CERTDIR=/etc/dovecot KEYDIR=/etc/dovecot/private CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.pem if [ ! -d $CERTDIR ]; then echo "$SSLDIR/certs directory doesn't exist" exit 1 fi if [ ! -d $KEYDIR ]; then echo "$SSLDIR/private directory doesn't exist" exit 1 fi if [ -f $CERTFILE ]; then echo "$CERTFILE already exists, won't overwrite" exit 1 fi if [ -f $KEYFILE ]; then echo "$KEYFILE already exists, won't overwrite" exit 1 fi $OPENSSL req -new -x509 -nodes -config $OPENSSLCONFIG -out $CERTFILE -keyout $KEYFILE -days 365 || exit 2 chmod 0600 $KEYFILE echo $OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2