Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
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 ]
drwxr-xr-x
2026-06-04 06:35
protocols.d
[ DIR ]
drwxr-xr-x
2025-03-04 19:55
stopwords
[ DIR ]
drwxr-xr-x
2026-06-04 06:35
dh.pem
769
B
-rw-r--r--
2025-11-06 20:28
dovecot-dict-auth.conf.ext
1.47
KB
-rw-r--r--
2021-08-06 18:25
dovecot-dict-sql.conf.ext
522
B
-rw-r--r--
2021-08-06 18:25
dovecot-oauth2.conf.ext
2.13
KB
-rw-r--r--
2021-08-06 18:25
dovecot-openssl.cnf
542
B
-rw-r--r--
2025-11-06 20:28
dovecot-sql.conf.ext
5.69
KB
-rw-r--r--
2021-08-06 18:25
dovecot.conf
4.24
KB
-rw-r--r--
2026-05-29 06:49
mkcert.sh
862
B
-rwxr-xr-x
2026-05-29 06:49
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/ssl KEYDIR=/etc/dovecot/ssl CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.key if [ ! -d $CERTDIR ]; then echo "$CERTDIR directory doesn't exist" exit 1 fi if [ ! -d $KEYDIR ]; then echo "$KEYDIR 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